This commit is contained in:
Grinch_ 2023-01-08 16:06:28 +06:00
parent dc192cb214
commit 2b36f3656e
4 changed files with 6 additions and 4 deletions

Binary file not shown.

View File

@ -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 "."

View File

@ -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

View File

@ -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 ------------------------------------------------------