diff --git a/Cargo.lock b/Cargo.lock index 64d4041..e9bc3e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -400,7 +400,7 @@ dependencies = [ [[package]] name = "jrny-save" -version = "0.1.0" +version = "0.3.0" dependencies = [ "binrw", "chrono", @@ -826,7 +826,7 @@ checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" [[package]] name = "wayfarer" -version = "0.1.0" +version = "0.3.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index a574691..11f7019 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ [workspace.package] -version = "0.1.0" +version = "0.3.0" edition = "2021" license-file = "LICENSE" diff --git a/README.md b/README.md index bae85ad..0e24f75 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,9 @@ wayfarer show ## TUI Keybindings -| Key | Description | -|:---:| --------------------------------------------------- | -| ESC | Return to "normal mode" | -| q | Quits the application | -| o | Open a new file | -| w | Toggle file watcher mode (requires "watch" feature) | +| Key | Mode | Description | +|:---:|:------:| --------------------------------------------------- | +| ESC | Any | Return to "normal mode" | +| q | Normal | Quits the application | +| o | Normal | Open a new file | +| w | Normal | Toggle file watcher mode (requires "watch" feature) | diff --git a/crates/wayfarer/Cargo.toml b/crates/wayfarer/Cargo.toml index b97a5ae..0a1bd9d 100644 --- a/crates/wayfarer/Cargo.toml +++ b/crates/wayfarer/Cargo.toml @@ -13,7 +13,7 @@ version = "4.3" features = ["derive"] [dependencies.jrny-save] -version = "0.1" +version = "0.3" path = "../save" [dependencies.notify]