Skip to content

Commit

Permalink
0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ianpatt committed Sep 14, 2023
1 parent e4e25ac commit bfb788e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 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(SFSE_VERSION_MAJOR 0)
set(SFSE_VERSION_MINOR 1)
set(SFSE_VERSION_PATCH 1)
set(SFSE_VERSION_PATCH 2)

set(RUNTIME_VERSION_MAJOR 1)
set(RUNTIME_VERSION_MINOR 7)
Expand Down
8 changes: 4 additions & 4 deletions sfse_common/sfse_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 SFSE_VERSION_INTEGER 0
#define SFSE_VERSION_INTEGER_MINOR 1
#define SFSE_VERSION_INTEGER_BETA 1
#define SFSE_VERSION_VERSTRING "0, 0, 1, 1"
#define SFSE_VERSION_INTEGER_BETA 2
#define SFSE_VERSION_VERSTRING "0, 0, 1, 2"
#define SFSE_VERSION_PADDEDSTRING "0001"
#define SFSE_VERSION_RELEASEIDX 2
#define SFSE_VERSION_RELEASEIDX 3

#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 All @@ -34,7 +34,7 @@
// information about the state of the game at the time of release
#define SFSE_TARGETING_BETA_VERSION 0
#define CURRENT_RELEASE_RUNTIME RUNTIME_VERSION_1_7_29
#define CURRENT_RELEASE_SFSE_STR "0.1.1"
#define CURRENT_RELEASE_SFSE_STR "0.1.2"

#if GET_EXE_VERSION_SUB(RUNTIME_VERSION) == RUNTIME_TYPE_BETHESDA
#define SAVE_FOLDER_NAME "Starfield"
Expand Down
2 changes: 1 addition & 1 deletion sfse_readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Starfield Script Extender v0.1.1 pre-alpha
Starfield Script Extender v0.1.2 pre-alpha
by Ian Patterson, Stephen Abel, and Expired

The Starfield Script Extender, or SFSE for short, is a modder's resource that expands the scripting capabilities of Starfield. As the game has literally just released, it's mostly a plugin loader for now. Depending on where modders show interest, this will expand to Scaleform and Papyrus (or other things) over time.
Expand Down
4 changes: 4 additions & 0 deletions sfse_whatsnew.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.1.2
- switch to DLL CRT so defender stops complaining
- internal class decoding

0.1.1
- GetSFSEVersion console command
- preliminary custom papyrus native function support
Expand Down

0 comments on commit bfb788e

Please sign in to comment.