diff options
author | 2025-06-08 00:00:02 +0100 | |
---|---|---|
committer | 2025-06-08 00:00:02 +0100 | |
commit | d440b7a58cd3c435e712e94478d9a7c09bc1c3ba (patch) | |
tree | dbb3fe668f42d125e3b731bb70df2f174023da6e | |
parent | 84b518298c32f79ef5d4f056d6d8e8c251417b8a (diff) | |
download | sst-d440b7a58cd3c435e712e94478d9a7c09bc1c3ba.tar.gz sst-d440b7a58cd3c435e712e94478d9a7c09bc1c3ba.zip |
Prep 0.13 release... alreadyHEADv0.13-BETAmaster
-rw-r--r-- | src/sst.c | 8 | ||||
-rw-r--r-- | src/version.h | 4 | ||||
-rw-r--r-- | tools/mkbindist.bat | 4 |
3 files changed, 8 insertions, 8 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 != 12 +#if VERSION_MAJOR != 0 || VERSION_MINOR != 13 #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_12_beta, "", 0, CON_HIDDEN | CON_DEMO) +DEF_CVAR(__sst_0_13_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,8 +270,8 @@ static bool already_loaded = false, skip_unload = false; // auto-update message. see below in do_featureinit() static const char *updatenotes = "\ -* Fixed unsupported console variables not being hidden\n\ -* Fixed some other smaller regressions in feature initialisation logic\n\ +* Fixed yet another feature initialisation bug, hopefully the last for now\n\ +* Improved messages from hooked plugin_load/plugin_unload commands\n\ "; enum { // used in generated code, must line up with featmsgs arrays below diff --git a/src/version.h b/src/version.h index 2b84166..9e2ae71 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 12 -#define VERSION "0.12" +#define VERSION_MINOR 13 +#define VERSION "0.13" diff --git a/tools/mkbindist.bat b/tools/mkbindist.bat index 87bd24f..9a67e74 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, 6, 1, 0, 0, 0
-powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2025, 6, 1, 0, 0, 0
+powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2025, 6, 8, 0, 0, 0
+powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2025, 6, 8, 0, 0, 0
pushd TEMP-%name%
"%SEVENZIP%" a -mtc=off %name%.zip sst.dll LICENCE || goto :end
move %name%.zip ..\release\%name%.zip
|