diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2024-08-26 14:15:11 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2024-08-26 14:15:11 +0100 |
commit | a35365c3e8e291aa870d580cd64e8de807319c3e (patch) | |
tree | 9450e54c1147208c531972c7a93391ebb21babb6 /src/sst.c | |
parent | 33582641a9c01a6a3d62ae232f96c74299182885 (diff) |
Bump version to 0.8 for next release
Diffstat (limited to 'src/sst.c')
-rw-r--r-- | src/sst.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -237,11 +237,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 != 7 +#if VERSION_MAJOR != 0 || VERSION_MINOR != 8 #error Need to change this manually, since codegen requires it to be spelled \ out in DEF_CVAR - better yet, can we get rid of this yet? #endif -DEF_CVAR(__sst_0_7_beta, "", 0, CON_HIDDEN | CON_DEMO) +DEF_CVAR(__sst_0_8_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) {} @@ -267,9 +267,7 @@ static bool already_loaded = false, skip_unload = false; // auto-update message. see below in do_featureinit() static const char *updatenotes = "\ -* 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\ +* More behind-the-scenes code changes, as always\n\ "; #include <featureinit.gen.h> // generated by build/codegen.c |