rip out update checking (too unreliable)

This commit is contained in:
2025-09-09 03:15:01 +01:00
parent 05ce68cb47
commit 5348a1d6ee
7 changed files with 5 additions and 361 deletions
+2 -15
View File
@@ -1,7 +1,7 @@
use crate::{
features,
gui::{colours, settings::Settings, tools, ui_ext::UiExt},
util::{consts::game::WINDOW_TITLE, meta::Meta, persistent_state::PersistentState, win},
util::{consts::game::WINDOW_TITLE, persistent_state::PersistentState, win},
};
use eframe::egui;
use std::time::{Duration, Instant};
@@ -36,7 +36,6 @@ impl Default for Flags {
#[derive(Debug, Default)]
pub struct App {
pub meta: Meta,
pub settings: Settings,
stage: Stage,
pub flags: Flags,
@@ -232,21 +231,9 @@ impl App {
ui.with_layout(egui::Layout::right_to_left(egui::Align::Center), |ui| {
ui.label(format!(
"v{} {}",
self.meta.current_version,
env!("CARGO_PKG_VERSION"),
if cfg!(debug_assertions) { "(dev)" } else { "" }
));
let button = ui.add_enabled_ui(self.meta.newer_version_available, |ui| {
ui.style_mut().spacing.button_padding = egui::Vec2::new(3.0, 0.0);
ui.button("")
.on_disabled_hover_text("Already up to date.")
.on_hover_text(format!(
"New version available! ({})",
self.meta.latest_release.version
))
});
if button.inner.clicked() {
open::that(&self.meta.latest_release.download_url).unwrap();
}
});
});
ui.add(egui::Image::new(egui::include_image!(
+1 -9
View File
@@ -17,11 +17,6 @@ impl App {
if ui.button("open storage path").clicked() {
open::that_detached(path::APP_STORAGE.as_path()).unwrap();
}
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.scope(|ui| {
use windows::Win32::UI::WindowsAndMessaging::{
GetForegroundWindow, GetWindowTextW,
@@ -42,10 +37,7 @@ impl App {
ui.build_menu(&mut self.game_networking.blocked_status);
});
});
if ui
.add(egui::Button::new("force refresh theme"))
.clicked()
{
if ui.add(egui::Button::new("force refresh theme")).clicked() {
catppuccin_egui::set_theme(ui.ctx(), self.settings.theme.into());
}
});