From 99390d52e1da36642f46368f2028924b1e0e695b Mon Sep 17 00:00:00 2001 From: Simon Gellis Date: Sun, 15 Dec 2024 15:52:15 -0500 Subject: [PATCH] Forgot to add version --- src/window/about.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/window/about.rs b/src/window/about.rs index 43bd18b..d33ac7d 100644 --- a/src/window/about.rs +++ b/src/window/about.rs @@ -19,6 +19,7 @@ impl AppWindow for AboutWindow { CentralPanel::default().show(ctx, |ui| { ui.vertical_centered(|ui| { ui.label("Lemur Virtual Boy Emulator"); + ui.label(format!("Version {}", env!("CARGO_PKG_VERSION"))); ui.hyperlink("https://git.virtual-boy.com/PVB/lemur"); let logo = Image::new(egui::include_image!("../../assets/lemur-256x256.png")) .max_width(256.0)