Skip to content

Commit

Permalink
tick version to 2.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ianpatt committed Dec 7, 2023
1 parent a4d0535 commit ad946ab
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cmake/versioning.cmake
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion scripts/modified/SKSE.psc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions skse64_common/skse_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion skse64_readme.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
3 changes: 3 additions & 0 deletions skse64_whatsnew.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit ad946ab

Please sign in to comment.