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)