diff --git a/installer/Installer.exe b/installer/Installer.exe index c64be1d..77c5730 100644 Binary files a/installer/Installer.exe and b/installer/Installer.exe differ diff --git a/installer/installer.iss b/installer/installer.iss index bfd3604..4f5235c 100644 --- a/installer/installer.iss +++ b/installer/installer.iss @@ -2,7 +2,7 @@ ; https://github.com/cleolibrary/CLEO-Redux #define AppName "Cheat Menu" -#define AppVersion "3.51" +#define AppVersion "3.52" #define AppPublisher "Grinch_" #define AppURL "https://github.com/user-grinch/Cheat-Menu" #define OutputDir "." diff --git a/src/defines.h b/src/defines.h index d65b0f2..19c070a 100644 --- a/src/defines.h +++ b/src/defines.h @@ -8,7 +8,7 @@ #define IMGUI_DEFINE_MATH_OPERATORS #define MENU_NAME "Cheat Menu" -#define MENU_VERSION_NUMBER "3.51" +#define MENU_VERSION_NUMBER "3.52" #define MENU_VERSION MENU_VERSION_NUMBER #define MENU_TITLE MENU_NAME " v" MENU_VERSION diff --git a/tools/PackAll.bat b/tools/PackAll.bat index 87e8df3..187e7ec 100644 --- a/tools/PackAll.bat +++ b/tools/PackAll.bat @@ -26,7 +26,7 @@ exit :copyFiles set "asiPath="..\build\bin\%~1.asi"" set "folderpath="..\resource\%~1"" -set "archivePath="..\archive\%~1.7z"" +set "archivePath="..\archive\%~1.zip"" @REM Remove existing files rd /S /Q "pack" /Q @@ -39,6 +39,8 @@ xcopy /s %folderpath% "pack\%~1\" /K /D /H /Y xcopy /s "..\resource\common\" "pack\%~1\" /K /D /H /Y @REM Guessing we have 7zip installed already, well I have -"C:\Program Files\7-Zip\7z.exe" a -t7z %archivePath% ".\pack\*" -mx=9 +@REM "C:\Program Files\7-Zip\7z.exe" a -t7z %archivePath% ".\pack\*" -mx=9 +"C:\Program Files\7-Zip\7z.exe" a -tzip %archivePath% ".\pack\*" -mx=9 + @REM ------------------------------------------------------