From 2354adb34975ac9e1244e7f59fac209694508c87 Mon Sep 17 00:00:00 2001 From: KeksNino Date: Mon, 20 Oct 2025 19:10:49 +0200 Subject: [PATCH] update updater download url --- core/interface/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/interface/gui.py b/core/interface/gui.py index 19cab46..8822028 100644 --- a/core/interface/gui.py +++ b/core/interface/gui.py @@ -43,7 +43,7 @@ print(os.path.abspath(__file__)) def download_update(latest_version): old_filename = f"SoftwareManager-dev-{state.version.replace('-dev', '')}-windows.exe" new_filename = f"SoftwareManager-dev-{latest_version.replace('-dev', '')}-windows.exe" - url = f"https://github.com/KeksPirates/SoftwareManager/releases/latest/download/SoftwareManager-dev-{latest_version}-windows.exe" + url = f"https://github.com/KeksPirates/SoftwareManager/releases/latest/download/SoftwareManager-dev-{latest_version.replace('-dev', '')}-windows.exe" print("Downloading update...") if os.path.exists(old_filename):