Skip to content

Commit bd59396

Browse files
committed
Bump up to v1.1.1 + add decomp version to dev menu
Remove unnecessary info like platform and compiler name. Also RMGRich --> stxtic
1 parent 74f273d commit bd59396

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed

CMakeLists.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10)
22

33
project(RetroEngine)
44

5-
set(DECOMP_VERSION 1.1.0-a)
5+
set(DECOMP_VERSION 1.1.1)
66

77
set(RETRO_REVISION 3 CACHE STRING "What revision to compile for. Defaults to v5U = 3")
88
option(RETRO_DISABLE_PLUS "Disable plus. Should be set on for any public releases." OFF)
@@ -162,8 +162,7 @@ target_compile_definitions(RetroEngine PRIVATE
162162
RSDK_AUTOBUILD=$<BOOL:${RETRO_DISABLE_PLUS}>
163163
RETRO_DISABLE_LOG=$<BOOL:${RETRO_DISABLE_LOG}>
164164

165-
RETRO_DEV_EXTRA="${PLATFORM} - ${RETRO_SUBSYSTEM} - ${CMAKE_CXX_COMPILER_ID}"
166-
DECOMP_VERSION="${DECOMP_VERSION}"
165+
RETRO_DEV_EXTRA="${RETRO_SUBSYSTEM} - ${DECOMP_VERSION}"
167166
)
168167

169168
if(WITH_RSDK)

RSDKv5.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@
843843
"$(inherited)",
844844
"@executable_path/../Frameworks",
845845
);
846-
MARKETING_VERSION = 1.1.0;
846+
MARKETING_VERSION = 1.1.1;
847847
PRODUCT_BUNDLE_IDENTIFIER = RSDK.RSDKv5;
848848
PRODUCT_NAME = "$(TARGET_NAME)";
849849
USER_HEADER_SEARCH_PATHS = "";
@@ -878,7 +878,7 @@
878878
"$(inherited)",
879879
"@executable_path/../Frameworks",
880880
);
881-
MARKETING_VERSION = 1.1.0;
881+
MARKETING_VERSION = 1.1.1;
882882
PRODUCT_BUNDLE_IDENTIFIER = RSDK.RSDKv5;
883883
PRODUCT_NAME = "$(TARGET_NAME)";
884884
USER_HEADER_SEARCH_PATHS = "";

RSDKv5/RSDKv5.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ BEGIN
7777
BEGIN
7878
BLOCK "0c0904b0"
7979
BEGIN
80-
VALUE "CompanyName", "RSDKv5 By Christian 'The Taxman' Whitehead, Decompilation By Rubberduckycooly/RMGRich"
80+
VALUE "CompanyName", "RSDKv5 By Christian 'The Taxman' Whitehead, Decompilation By Rubberduckycooly/stxtic"
8181
VALUE "FileDescription", "RSDKv5"
82-
VALUE "FileVersion", "1.1.0"
82+
VALUE "FileVersion", "1.1.1"
8383
VALUE "InternalName", "RSDKv5.exe"
8484
VALUE "OriginalFilename", "RSDKv5.exe"
8585
VALUE "ProductName", "RSDKv5"
86-
VALUE "ProductVersion", "1.1.0"
86+
VALUE "ProductVersion", "1.1.1"
8787
END
8888
END
8989
BLOCK "VarFileInfo"

RSDKv5U.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@
843843
"$(inherited)",
844844
"@executable_path/../Frameworks",
845845
);
846-
MARKETING_VERSION = 1.1.0;
846+
MARKETING_VERSION = 1.1.1;
847847
PRODUCT_BUNDLE_IDENTIFIER = RSDK.RSDKv5U;
848848
PRODUCT_NAME = "$(TARGET_NAME)";
849849
USER_HEADER_SEARCH_PATHS = "";
@@ -878,7 +878,7 @@
878878
"$(inherited)",
879879
"@executable_path/../Frameworks",
880880
);
881-
MARKETING_VERSION = 1.1.0;
881+
MARKETING_VERSION = 1.1.1;
882882
PRODUCT_BUNDLE_IDENTIFIER = RSDK.RSDKv5U;
883883
PRODUCT_NAME = "$(TARGET_NAME)";
884884
USER_HEADER_SEARCH_PATHS = "";

RSDKv5U/RSDKv5U.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ BEGIN
7777
BEGIN
7878
BLOCK "0c0904b0"
7979
BEGIN
80-
VALUE "CompanyName", "RSDKv5U By Evening Star, Decompilation By Rubberduckycooly/RMGRich"
80+
VALUE "CompanyName", "RSDKv5U By Evening Star, Decompilation By Rubberduckycooly/stxtic"
8181
VALUE "FileDescription", "RSDKv5U"
82-
VALUE "FileVersion", "1.1.0"
82+
VALUE "FileVersion", "1.1.1"
8383
VALUE "InternalName", "RSDKv5U.exe"
8484
VALUE "OriginalFilename", "RSDKv5U.exe"
8585
VALUE "ProductName", "RSDKv5U"
86-
VALUE "ProductVersion", "1.1.0"
86+
VALUE "ProductVersion", "1.1.1"
8787
END
8888
END
8989
BLOCK "VarFileInfo"

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ android {
1414
minSdkVersion 21
1515
targetSdkVersion 33
1616
versionCode 100
17-
versionName "1.1.0"
17+
versionName "1.1.1"
1818
if(project.hasProperty("RETRO_DISABLE_PLUS"))
1919
autobuildFlag = true
2020
if(project.hasProperty("RETRO_REVISION"))

0 commit comments

Comments
 (0)