summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2024-08-26 01:52:43 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2024-08-26 01:52:43 +0100
commit33582641a9c01a6a3d62ae232f96c74299182885 (patch)
treee94bac4f028cf38d22e0bec1b3bd5827dffb0946
parent0ad204f21940745c35a665e3f367b9331322c3f4 (diff)
Add update notes and bump zip version for releasev0.7-BETA
-rw-r--r--src/sst.c4
-rw-r--r--tools/mkbindist.bat4
2 files changed, 5 insertions, 3 deletions
diff --git a/src/sst.c b/src/sst.c
index 3f42327..d0a5572 100644
--- a/src/sst.c
+++ b/src/sst.c
@@ -267,7 +267,9 @@ static bool already_loaded = false, skip_unload = false;
// auto-update message. see below in do_featureinit()
static const char *updatenotes = "\
-* Reorganised a bunch internal stuff, as always\n\
+* Added FOV change support to Portal 4104\n\
+* Added a patch to fix portal 4104 demo playback bugs\n\
+* Reworked a ton of behind-the-scenes code, laying groundwork for later stuff!\n\
";
#include <featureinit.gen.h> // generated by build/codegen.c
diff --git a/tools/mkbindist.bat b/tools/mkbindist.bat
index b9512cc..b492ec6 100644
--- a/tools/mkbindist.bat
+++ b/tools/mkbindist.bat
@@ -21,8 +21,8 @@ md TEMP-%name% || exit /B
copy sst.dll TEMP-%name%\sst.dll || exit /B
copy dist\LICENCE.windows TEMP-%name%\LICENCE || exit /B
:: using midnight on release day to make zip deterministic! change on next release!
-powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2024, 5, 28, 0, 0, 0
-powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2024, 5, 28, 0, 0, 0
+powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2024, 8, 26, 0, 0, 0
+powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2024, 8, 26, 0, 0, 0
pushd TEMP-%name%
"%SEVENZIP%" a -mtc=off %name%.zip sst.dll LICENCE || exit /B
move %name%.zip ..\release\%name%.zip