diff --git a/CHANGELOG.md b/CHANGELOG.md index 51bbdc8..2ea84d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ Procedure when bumping the version number: ## Unreleased +## v0.8.1 - 2024-01-11 + ### Added - Support for setting window title - More information to room list heading diff --git a/CONFIG.md b/CONFIG.md index fca0589..af50003 100644 --- a/CONFIG.md +++ b/CONFIG.md @@ -321,14 +321,6 @@ Download more messages. Change nick. -### `keys.room.action.present` - -**Required:** yes -**Type:** key binding -**Default:** `"ctrl+p"` - -Open room's plugh.de/present page. - ### `keys.rooms.action.change_sort_order` **Required:** yes @@ -457,6 +449,14 @@ Scroll up half a screen. Scroll up one line. +### `keys.tree.action.decrease_caesar` + +**Required:** yes +**Type:** key binding +**Default:** `"C"` + +Decrease caesar cipher rotation. + ### `keys.tree.action.fold_tree` **Required:** yes @@ -465,6 +465,14 @@ Scroll up one line. Fold current message's subtree. +### `keys.tree.action.increase_caesar` + +**Required:** yes +**Type:** key binding +**Default:** `"c"` + +Increase caesar cipher rotation. + ### `keys.tree.action.inspect` **Required:** yes diff --git a/Cargo.lock b/Cargo.lock index fd1c572..9be7313 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -280,7 +280,7 @@ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" [[package]] name = "cove" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "async-trait", @@ -311,7 +311,7 @@ dependencies = [ [[package]] name = "cove-config" -version = "0.8.0" +version = "0.8.1" dependencies = [ "cove-input", "cove-macro", @@ -322,7 +322,7 @@ dependencies = [ [[package]] name = "cove-input" -version = "0.8.0" +version = "0.8.1" dependencies = [ "cove-macro", "crossterm", @@ -336,7 +336,7 @@ dependencies = [ [[package]] name = "cove-macro" -version = "0.8.0" +version = "0.8.1" dependencies = [ "case", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 8d469eb..9117885 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "2" members = ["cove", "cove-*"] [workspace.package] -version = "0.8.0" +version = "0.8.1" edition = "2021" [workspace.dependencies]