diff options
author | 2025-06-27 22:54:03 +0100 | |
---|---|---|
committer | 2025-06-27 22:58:54 +0100 | |
commit | 22e0cb9fdae2cf5f857054dbfb8e01efa31fb54a (patch) | |
tree | ac530b9b606f5369d985a184be8924d3154e528b | |
parent | 35a3e0871c5a98110847765f10a3c2c604323ee6 (diff) | |
download | sst-22e0cb9fdae2cf5f857054dbfb8e01efa31fb54a.tar.gz sst-22e0cb9fdae2cf5f857054dbfb8e01efa31fb54a.zip |
Prepare update string and set zip date for 0.14HEADv0.14-BETAmaster
-rw-r--r-- | src/sst.c | 3 | ||||
-rw-r--r-- | tools/mkbindist.bat | 4 |
2 files changed, 3 insertions, 4 deletions
@@ -270,8 +270,7 @@ static bool already_loaded = false, skip_unload = false; // auto-update message. see below in do_featureinit() static const char *updatenotes = "\ -* Fixed yet another feature initialisation bug, hopefully the last for now\n\ -* Improved messages from hooked plugin_load/plugin_unload commands\n\ +* Added sst_portal_resetisg as as stopgap solution for Portal runners\n\ "; enum { // used in generated code, must line up with featmsgs arrays below diff --git a/tools/mkbindist.bat b/tools/mkbindist.bat index 9a67e74..924430b 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, 8, 0, 0, 0
-powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2025, 6, 8, 0, 0, 0
+powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2025, 6, 27, 0, 0, 0
+powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2025, 6, 27, 0, 0, 0
pushd TEMP-%name%
"%SEVENZIP%" a -mtc=off %name%.zip sst.dll LICENCE || goto :end
move %name%.zip ..\release\%name%.zip
|