add checkbox to debug to spoof new version of the app beign available

This commit is contained in:
2025-04-18 20:32:39 +01:00
parent 64e94bf790
commit 0257834d04
+7
View File
@@ -297,6 +297,13 @@ impl App {
if ui.button("open storage path").clicked() { if ui.button("open storage path").clicked() {
open::that_detached(APP_STORAGE_PATH.as_path()).unwrap(); open::that_detached(APP_STORAGE_PATH.as_path()).unwrap();
} }
ui.collapsing("version", |ui| {
ui.checkbox(
&mut self.meta.newer_version_available,
"spoof new version available",
)
.on_hover_text("(this could already be checked if\nthere actually IS a new version)");
});
ui.collapsing("anti afk", |ui| { ui.collapsing("anti afk", |ui| {
ui.label(format!( ui.label(format!(
"timer: {}", "timer: {}",