From ad946ab98a6181daa044a4c4a90d03ad553d12d4 Mon Sep 17 00:00:00 2001 From: ianpatt Date: Wed, 6 Dec 2023 21:06:22 -0800 Subject: [PATCH] tick version to 2.2.5 --- cmake/versioning.cmake | 2 +- scripts/modified/SKSE.psc | 2 +- skse64_common/skse_version.h | 8 ++++---- skse64_readme.txt | 2 +- skse64_whatsnew.txt | 3 +++ 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/cmake/versioning.cmake b/cmake/versioning.cmake index bf37687..126b17d 100644 --- a/cmake/versioning.cmake +++ b/cmake/versioning.cmake @@ -1,6 +1,6 @@ set(SKSE_VERSION_MAJOR 2) set(SKSE_VERSION_MINOR 2) -set(SKSE_VERSION_PATCH 4) +set(SKSE_VERSION_PATCH 5) set(RUNTIME_VERSION_MAJOR 1) set(RUNTIME_VERSION_MINOR 6) diff --git a/scripts/modified/SKSE.psc b/scripts/modified/SKSE.psc index ad1f836..caef180 100644 --- a/scripts/modified/SKSE.psc +++ b/scripts/modified/SKSE.psc @@ -13,7 +13,7 @@ int Function GetVersionRelease() global native ; get the release index of this script file. ; Can be used to detect a script/runtime version mismatch int Function GetScriptVersionRelease() global - return 70 + return 71 endFunction ; get a plugins version number, -1 if the plugin is not loaded diff --git a/skse64_common/skse_version.h b/skse64_common/skse_version.h index 1b239fa..efb9e9f 100644 --- a/skse64_common/skse_version.h +++ b/skse64_common/skse_version.h @@ -4,10 +4,10 @@ // these have to be macros so they can be used in the .rc #define SKSE_VERSION_INTEGER 2 #define SKSE_VERSION_INTEGER_MINOR 2 -#define SKSE_VERSION_INTEGER_BETA 4 -#define SKSE_VERSION_VERSTRING "0, 2, 2, 4" +#define SKSE_VERSION_INTEGER_BETA 5 +#define SKSE_VERSION_VERSTRING "0, 2, 2, 5" #define SKSE_VERSION_PADDEDSTRING "0001" -#define SKSE_VERSION_RELEASEIDX 70 +#define SKSE_VERSION_RELEASEIDX 71 #define MAKE_EXE_VERSION_EX(major, minor, build, sub) ((((major) & 0xFF) << 24) | (((minor) & 0xFF) << 16) | (((build) & 0xFFF) << 4) | ((sub) & 0xF)) #define MAKE_EXE_VERSION(major, minor, build) MAKE_EXE_VERSION_EX(major, minor, build, 0) @@ -56,7 +56,7 @@ // information about the state of the game at the time of release #define SKSE_TARGETING_BETA_VERSION 0 #define CURRENT_RELEASE_RUNTIME RUNTIME_VERSION_1_6_1130 -#define CURRENT_RELEASE_SKSE_STR "2.2.4" +#define CURRENT_RELEASE_SKSE_STR "2.2.5" #if GET_EXE_VERSION_SUB(RUNTIME_VERSION) == RUNTIME_TYPE_BETHESDA #define SAVE_FOLDER_NAME "Skyrim Special Edition" diff --git a/skse64_readme.txt b/skse64_readme.txt index 11ae669..46cf3b8 100644 --- a/skse64_readme.txt +++ b/skse64_readme.txt @@ -1,4 +1,4 @@ -Skyrim Script Extender 64 v2.2.4 beta +Skyrim Script Extender 64 v2.2.5 beta by Ian Patterson and Stephen Abel (ianpatt and behippo) Thanks to: Paul Connelly (scruggsywuggsy the ferret), gibbed, Purple Lunchbox, snakster Special thanks to eternity for the help getting this finished. Can't thank you enough. diff --git a/skse64_whatsnew.txt b/skse64_whatsnew.txt index 666aa6b..5408481 100644 --- a/skse64_whatsnew.txt +++ b/skse64_whatsnew.txt @@ -1,3 +1,6 @@ +2.2.5 +- update InputManager, fix custom text input controls + 2.2.4 - use -- to stop argument parsing in the loader. useful for %command% tricks - SoulGem::GetSoulSize now returns the correct value instead of the gem size (thanks for the bug report from Ingvion)