From 512ac0772555e0d55f3ab40755d567848472e0c7 Mon Sep 17 00:00:00 2001 From: xgui4 <134389196+xgui4@users.noreply.github.com> Date: Tue, 5 May 2026 17:41:47 -0400 Subject: [PATCH] make the nix version the sable version, and update the windows installer versions , and remove one uselss folder --- default.nix | 2 +- packages/windows/windows-setup-nigthly-preview.iss | 2 +- packages/windows/windows-setup-nigthly.iss | 2 +- src/lce_qt_launcher/managers/mod_manager.py | 1 - 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/default.nix b/default.nix index d557274..a57452f 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ pkgs.python3Packages.buildPythonApplication rec { pname = "lce-qt-launcher"; - version = "2026.5.4"; + version = "0.0.2.0"; format = "pyproject"; src = ./.; diff --git a/packages/windows/windows-setup-nigthly-preview.iss b/packages/windows/windows-setup-nigthly-preview.iss index 89757be..987ab1c 100644 --- a/packages/windows/windows-setup-nigthly-preview.iss +++ b/packages/windows/windows-setup-nigthly-preview.iss @@ -3,7 +3,7 @@ ; Non-commercial use only #define MyAppName "LCE Qt Launcher (Nightly Preview Inno Setup 7 Installer)" -#define MyAppVersion "2026.5.4" +#define MyAppVersion "2026.5.5" #define MyAppPublisher "Xgui4" #define MyAppURL "https://github.com/xgui4/lce-qt-launcher" #define MyAppExeName "main.exe" diff --git a/packages/windows/windows-setup-nigthly.iss b/packages/windows/windows-setup-nigthly.iss index 3d6c4c7..e41c80b 100644 --- a/packages/windows/windows-setup-nigthly.iss +++ b/packages/windows/windows-setup-nigthly.iss @@ -3,7 +3,7 @@ ; Non-commercial use only #define MyAppName "LCE Qt Launcher (Nightly)" -#define MyAppVersion "2026.5.4" +#define MyAppVersion "2026.5.5" #define MyAppPublisher "Xgui4" #define MyAppURL "https://github.com/xgui4/lce-qt-launcher" #define MyAppExeName "main.exe" diff --git a/src/lce_qt_launcher/managers/mod_manager.py b/src/lce_qt_launcher/managers/mod_manager.py index ebf8469..e86c875 100755 --- a/src/lce_qt_launcher/managers/mod_manager.py +++ b/src/lce_qt_launcher/managers/mod_manager.py @@ -80,7 +80,6 @@ def install_content(instance_path : str, contentType : ContentType, archive_fil try: zipFile = ZipFile(archive_file) content_path : str = os.path.join(instance_path, contentType.value) - os.makedirs(content_path, exist_ok=True) extract_zip(zipFile, content_path) except BadZipFile as e: print(f"Could not extract content to destination, zipfile was bad. More Info : {e}")