feat: Display build date to user, rather than current date

This commit is contained in:
Liam 2024-09-02 13:55:40 -07:00
parent ee03823cff
commit 664efcde9d
No known key found for this signature in database
3 changed files with 13 additions and 5 deletions

View File

@ -4,7 +4,6 @@ version = "0.1.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
chrono = "0.4.33"
clap = { version = "4.5.16", features = ["derive"] } clap = { version = "4.5.16", features = ["derive"] }
crossterm = "0.27.0" crossterm = "0.27.0"
ego-tree = "0.6.2" ego-tree = "0.6.2"
@ -18,6 +17,9 @@ serde = { version = "1.0.205", features = ["derive"] }
toml = "0.8.19" toml = "0.8.19"
which = "6.0.3" which = "6.0.3"
[build-dependencies]
chrono = "0.4.33"
[[bin]] [[bin]]
name = "linutil" name = "linutil"
path = "src/main.rs" path = "src/main.rs"

View File

@ -1,4 +1,9 @@
fn main() { fn main() {
// Rebuild program if any file in commands directory changes. // Rebuild program if any file in commands directory changes.
println!("cargo:rerun-if-changed=src/commands"); println!("cargo:rerun-if-changed=src/commands");
// Add current date as a variable to be displayed in the 'Linux Toolbox' text.
println!(
"cargo:rustc-env=BUILD_DATE={}",
chrono::Local::now().format("%Y-%m-%d")
);
} }

View File

@ -153,10 +153,11 @@ impl AppState {
} else { } else {
Style::new() Style::new()
}) })
.block(Block::default().borders(Borders::ALL).title(format!( .block(
"Linux Toolbox - {}", Block::default()
chrono::Local::now().format("%Y-%m-%d") .borders(Borders::ALL)
))) .title(format!("Linux Toolbox - {}", env!("BUILD_DATE"))),
)
.scroll_padding(1); .scroll_padding(1);
frame.render_stateful_widget(list, chunks[1], &mut self.selection); frame.render_stateful_widget(list, chunks[1], &mut self.selection);