diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2023-06-10 20:09:27 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2023-06-10 20:09:27 +0100 |
commit | 02c48fa32f0065ec853958a1d7ee49f485241095 (patch) | |
tree | 674c1be786a4ec8a02aa2b4bdf1a9e84291aebff | |
parent | f84d44d2a9139f3c5b58d7875bc5ef0d94881008 (diff) |
Add update changelog and bump zip date
The zip date is tomorrow as that's the expected release date pending
some testing and hearing back from Portal people re official approval
for use in runs. With any luck it won't need to be bumped further.
-rw-r--r-- | src/sst.c | 12 | ||||
-rw-r--r-- | tools/mkbindist.bat | 4 |
2 files changed, 13 insertions, 3 deletions
@@ -167,7 +167,17 @@ static bool already_loaded = false, skip_unload = false; // auto-update message. see below in do_featureinit() static const char *updatenotes = "\ -* various internal cleanup\n\ +* Added the ability to display this update information, hi there!\n\ +* Fixed loading if the game is under a Unicode/foreign-language file path\n\ +* Added sst_alias_remove and sst_alias_clear commands\n\ +* Autojump in Portal now requires sv_cheats 1, to keep the moderators happy\n\ +* The plugin can be loaded under Portal 2 again, although it might not do much\n\ +* cl_showdemooverlay is now unhidden for use as a recording indicator\n\ +* Added rapid resetting of L4D1/2 runs via the sst_l4d_quickreset command\n\ +* Added sst_mouse_factor, which can scale down raw input for view-snap tricks\n\ +* Reimplemented snd_mute_losefocus for games that don't have it\n\ +* Improved error messages across the board, so it's easier to report issues\n\ +* Fixed a bunch of other minor bugs and cleaned up tons of code\n\ "; #include <featureinit.gen.h> // generated by build/codegen.c diff --git a/tools/mkbindist.bat b/tools/mkbindist.bat index 20cca90..a00e44d 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 2022, 5, 31, 0, 0, 0
-powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2022, 5, 31, 0, 0, 0
+powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2023, 6, 11, 0, 0, 0
+powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2023, 6, 11, 0, 0, 0
pushd TEMP-%name%
"%SEVENZIP%" a -mtc=off %name%.zip sst.dll LICENCE || exit /B
move %name%.zip ..\release\%name%.zip
|