gui: add the version in the window title bar

This commit is contained in:
pythcoiner 2024-07-23 04:57:59 +02:00
parent d93e610b38
commit 79f3f5968f

View File

@ -119,8 +119,8 @@ impl Application for GUI {
fn title(&self) -> String {
match self.state {
State::Installer(_) => String::from("Liana Installer"),
_ => String::from("Liana"),
State::Installer(_) => format!("Liana v{} Installer", VERSION),
_ => format!("Liana v{}", VERSION),
}
}