feat: show pwsp-gui version in settings

This commit is contained in:
2026-02-14 15:46:56 +03:00
parent b816d2aa88
commit 8bfa5daf78
+4
View File
@@ -81,6 +81,10 @@ impl SoundpadGui {
self.config.save_to_file().ok(); self.config.save_to_file().ok();
} }
// -------------------------------- // --------------------------------
ui.with_layout(Layout::bottom_up(Align::Min), |ui| {
ui.label(format!("GUI version: {}", env!("CARGO_PKG_VERSION")));
});
}); });
} }