summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyohei Uto <im@kyoheiu.dev>2023-10-24 04:46:24 +0900
committerKyohei Uto <im@kyoheiu.dev>2023-10-24 04:46:24 +0900
commit41819d9889a7e4c4bd1eeb1803e22c35d60f5f47 (patch)
treeaffcac0d37dcdcdad8ced115daafaa0dd8a8ee72
parentf80685ce17f2c6051f37d5442eb5291386f855a9 (diff)
parent7b9d7bed26d347816c19e859ea109e9c10666db6 (diff)
Merge branch 'main' into develop
-rw-r--r--src/help.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/help.rs b/src/help.rs
index 64e4846..7acc8ae 100644
--- a/src/help.rs
+++ b/src/help.rs
@@ -1,5 +1,8 @@
/// Help text.
-pub const HELP: &str = r###"# felix v2.9.0
+pub const HELP: &str = concat!(
+ "# felix v",
+ env!("CARGO_PKG_VERSION"),
+ r###"
A simple TUI file manager with vim-like keymapping.
## Usage
@@ -105,4 +108,5 @@ trash directory : $PROFILE\\AppData\\Local\\felix\\trash
log files : $PROFILE\\AppData\\Local\\felix\\log
For more details, visit https://github.com/kyoheiu/felix
-"###;
+"###
+);