From 79f3f5968f5d97e2588bd9f3a08d9d5b8cbbaefc Mon Sep 17 00:00:00 2001 From: pythcoiner Date: Tue, 23 Jul 2024 04:57:59 +0200 Subject: [PATCH] gui: add the version in the window title bar --- gui/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/src/main.rs b/gui/src/main.rs index ba344fc5..4cf3176e 100644 --- a/gui/src/main.rs +++ b/gui/src/main.rs @@ -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), } }