diff options
author | 2025-05-11 14:54:43 +0100 | |
---|---|---|
committer | 2025-05-11 14:55:55 +0100 | |
commit | 4593422e3b9dc8c1451b2457d1296f9c8e4fc063 (patch) | |
tree | c4997194be8b1d5d00cc83f7cfd86df540847706 | |
parent | 397a3fe8863e740456f1a61dda4d9d48b7456147 (diff) | |
download | sst-4593422e3b9dc8c1451b2457d1296f9c8e4fc063.tar.gz sst-4593422e3b9dc8c1451b2457d1296f9c8e4fc063.zip |
Bump versions and dates yet again
On the plus side, SST's release cadence has never been so lively!
-rw-r--r-- | src/sst.c | 6 | ||||
-rw-r--r-- | src/version.h | 4 | ||||
-rw-r--r-- | tools/mkbindist.bat | 4 |
3 files changed, 7 insertions, 7 deletions
@@ -240,11 +240,11 @@ DEF_CCMD_HERE(sst_printversion, "Display plugin version information", 0) { // interested parties identify the version of SST used by just writing a dummy // cvar to the top of the demo. this will be removed later, once there's a less // stupid way of achieving the same goal. -#if VERSION_MAJOR != 0 || VERSION_MINOR != 10 +#if VERSION_MAJOR != 0 || VERSION_MINOR != 11 #error Need to change this manually, since gluegen requires it to be spelled \ out in DEF_CVAR - better yet, can we get rid of this yet? #endif -DEF_CVAR(__sst_0_10_beta, "", 0, CON_HIDDEN | CON_DEMO) +DEF_CVAR(__sst_0_11_beta, "", 0, CON_HIDDEN | CON_DEMO) // most plugin callbacks are unused - define dummy functions for each signature static void VCALLCONV nop_v_v(void *this) {} @@ -270,7 +270,7 @@ static bool already_loaded = false, skip_unload = false; // auto-update message. see below in do_featureinit() static const char *updatenotes = "\ -* Fixed crashing on L4D1\n\ +* Fixed buggy addon fix behaviour in some L4D2 versions\n\ "; enum { // used in generated code, must line up with featmsgs arrays below diff --git a/src/version.h b/src/version.h index 9f7e769..893acc1 100644 --- a/src/version.h +++ b/src/version.h @@ -1,5 +1,5 @@ #define NAME "SST" #define LONGNAME "Source Speedrun Tools Beta" #define VERSION_MAJOR 0 -#define VERSION_MINOR 10 -#define VERSION "0.10" +#define VERSION_MINOR 11 +#define VERSION "0.11" diff --git a/tools/mkbindist.bat b/tools/mkbindist.bat index cf90dc9..ce1e8b1 100644 --- a/tools/mkbindist.bat +++ b/tools/mkbindist.bat @@ -21,8 +21,8 @@ md TEMP-%name% || goto :end copy sst.dll TEMP-%name%\sst.dll || goto :end
copy dist\LICENCE.windows TEMP-%name%\LICENCE || goto :end
:: using midnight on release day to make zip deterministic! change on next release!
-powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2025, 5, 9, 0, 0, 0
-powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2025, 5, 9, 0, 0, 0
+powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2025, 5, 11, 0, 0, 0
+powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2025, 5, 11, 0, 0, 0
pushd TEMP-%name%
"%SEVENZIP%" a -mtc=off %name%.zip sst.dll LICENCE || goto :end
move %name%.zip ..\release\%name%.zip
|