From 8534641597b65307f0b767b523e9d3545ad9f8c9 Mon Sep 17 00:00:00 2001 From: SpaceNerd0717 Date: Fri, 14 Nov 2025 11:17:53 -0500 Subject: [PATCH] Cache refresh potential fix --- main.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/main.py b/main.py index f7247f3..1d3de91 100644 --- a/main.py +++ b/main.py @@ -27,7 +27,7 @@ COUNTDOWN_HTML = os.path.join(app_folder, "countdown.html") GONOGO_HTML = os.path.join(app_folder, "gonogo.html") SHEET_LINK = "" session = requests.Session() -appVersion = "0.6.0" +appVersion = "0.6.1" SETTINGS_FILE = os.path.join(app_folder, "settings.json") # Default settings @@ -237,7 +237,9 @@ body {{ #timer {{ font-size: {timer_px}px; margin-bottom: 40px; }} @@ -303,7 +305,9 @@ body {{ .nogo {{ color: {gn_nogo}; }} @@ -642,8 +646,6 @@ class CountdownApp: ) self.settings_btn.grid(row=0, column=4, padx=6) - # Note: gonogo mode switching remains in Settings; manual buttons appear when mode == 'buttons' - # Manual Go/No-Go buttons will go next to control buttons self.manual_frame = tk.Frame(root, bg="black") self.manual_frame.pack(pady=6)