Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Commit

Permalink
Up 3.52
Browse files Browse the repository at this point in the history
  • Loading branch information
user-grinch committed Jan 8, 2023
1 parent dc192cb commit 2b36f36
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Binary file modified installer/Installer.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion installer/installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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 "."
Expand Down
2 changes: 1 addition & 1 deletion src/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 4 additions & 2 deletions tools/PackAll.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 ------------------------------------------------------

0 comments on commit 2b36f36

Please sign in to comment.