diff options
author | 2025-07-31 20:05:40 +0100 | |
---|---|---|
committer | 2025-07-31 20:06:59 +0100 | |
commit | f2f9f18a893527ee80260a2d57bca3023f8fd44f (patch) | |
tree | b3378823c12b0fbfbed7d5a2a9af453ebe860305 | |
parent | 22e0cb9fdae2cf5f857054dbfb8e01efa31fb54a (diff) | |
download | sst-f2f9f18a893527ee80260a2d57bca3023f8fd44f.tar.gz sst-f2f9f18a893527ee80260a2d57bca3023f8fd44f.zip |
Set up for 0.15
Don't worry about the fact I typed l4 instead 14 for the last release
btw. No idea how that happened but I guess it doesn't matter anyway.
-rw-r--r-- | src/sst.c | 6 | ||||
-rw-r--r-- | src/version.h | 4 |
2 files changed, 5 insertions, 5 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 != 14 +#if VERSION_MAJOR != 0 || VERSION_MINOR != 15 #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_l4_beta, "", 0, CON_HIDDEN | CON_DEMO) +DEF_CVAR(__sst_0_15_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,7 +270,7 @@ static bool already_loaded = false, skip_unload = false; // auto-update message. see below in do_featureinit() static const char *updatenotes = "\ -* Added sst_portal_resetisg as as stopgap solution for Portal runners\n\ +* Various internal tweaks and cleanup\n\ "; enum { // used in generated code, must line up with featmsgs arrays below diff --git a/src/version.h b/src/version.h index 6e60474..998e139 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 14 -#define VERSION "0.14" +#define VERSION_MINOR 15 +#define VERSION "0.15" |