Skip to content

Commit 65d905a

Browse files
committed
Fix cleanup scripts post-MC removal.
1 parent 6d1772a commit 65d905a

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

Cleanup.cmd

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11

22
rd /s /q "..\build-SerialPrograms*"
33

4-
::cd %~dp0\ClientProject
5-
::@call Cleanup.cmd
6-
7-
cd %~dp0\NativePrograms
8-
@call Cleanup.cmd
9-
10-
cd %~dp0\HexGenerator
11-
@call Cleanup.cmd
12-
13-
cd %~dp0\HexGeneratorLauncher
14-
@call Cleanup.cmd
4+
del 3rdPartyBinaries\opencv_world460d.dll
155

166
cd %~dp0\SerialPrograms
177
@call Cleanup.cmd
@@ -28,3 +18,7 @@ rd /s /q "..\build-SerialPrograms-Desktop_Qt_6_3_2_MSVC2019_64bit-Debug"
2818
rd /s /q "..\build-SerialPrograms-Desktop_Qt_6_3_2_MSVC2019_64bit-RelWithDebInfo"
2919
rd /s /q "..\build-SerialPrograms-Desktop_Qt_6_4_0_MSVC2019_64bit-Debug"
3020
rd /s /q "..\build-SerialPrograms-Desktop_Qt_6_4_0_MSVC2019_64bit-RelWithDebInfo"
21+
rd /s /q "..\build-SerialPrograms-Desktop_Qt_6_5_2_MSVC2019_64bit-Debug"
22+
rd /s /q "..\build-SerialPrograms-Desktop_Qt_6_5_2_MSVC2019_64bit-RelWithDebInfo"
23+
rd /s /q "..\build-SerialPrograms-Desktop_Qt_6_5_3_MSVC2019_64bit-Debug"
24+
rd /s /q "..\build-SerialPrograms-Desktop_Qt_6_5_3_MSVC2019_64bit-RelWithDebInfo"

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ namespace PokemonAutomation{
2525

2626
const bool IS_BETA_VERSION = true;
2727
const int PROGRAM_VERSION_MAJOR = 0;
28-
const int PROGRAM_VERSION_MINOR = 52;
29-
const int PROGRAM_VERSION_PATCH = 15;
28+
const int PROGRAM_VERSION_MINOR = 53;
29+
const int PROGRAM_VERSION_PATCH = 1;
3030

3131
const std::string PROGRAM_VERSION_BASE =
3232
"v" + std::to_string(PROGRAM_VERSION_MAJOR) +

0 commit comments

Comments
 (0)