From 1c961e60f3970d9d90d52c069de67f230b28ef4f Mon Sep 17 00:00:00 2001 From: toaster Date: Sun, 17 Jul 2022 21:15:27 +0100 Subject: [PATCH] Primary 1.4 prep. * New version number. * New MODVERSION. * New asset hashes. * Disable patch.kart requirement. * Remove the request to modify CMakeLists.txt, because that got revamped and grabs the version number from elsewhere now. --- src/config.h.in | 9 +++++---- src/doomdef.h | 11 +++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/config.h.in b/src/config.h.in index b529121e..7211e8dd 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -38,6 +38,7 @@ * Last updated 2018 / 12 / 23 - SRB2 v2.1.22 - patch.dta * Last updated 2019 / 01 / 18 - Kart v1.0.2 - Main assets * Last updated 2020 / 08 / 30 - Kart v1.3 - patch.kart + * Last updated 2022 / 07 / 17 - Kart v1.4 - Main assets */ // Base SRB2 hashes @@ -47,12 +48,12 @@ #endif // SRB2Kart-specific hashes -#define ASSET_HASH_GFX_KART "99c39f223d84ebc78e67ab68f3bead95" -#define ASSET_HASH_TEXTURES_KART "ec8e9b7535cf585afe72ef277b08f490" +#define ASSET_HASH_GFX_KART "d25790c21cfcb6c3c02c05ba3eb7f820" +#define ASSET_HASH_TEXTURES_KART "abb53d56aba47c3a8cb0f764da1c8b80" #define ASSET_HASH_CHARS_KART "e2c428347dde52858a3dacd29fc5b964" -#define ASSET_HASH_MAPS_KART "1335cd064656aedca359cfbb5233ac4a" +#define ASSET_HASH_MAPS_KART "ba4e25503a34dca3cf6142e031691ceb" #ifdef USE_PATCH_KART -#define ASSET_HASH_PATCH_KART "f7b68076f8abc54e1a78963d97f69ab2" +#define ASSET_HASH_PATCH_KART "00000000000000000000000000000000" #endif #endif diff --git a/src/doomdef.h b/src/doomdef.h index 79ab2e13..ffbdd8c4 100644 --- a/src/doomdef.h +++ b/src/doomdef.h @@ -148,11 +148,10 @@ extern char logfilename[1024]; // we use comprevision and compbranch instead. #else #define VERSION 1 // Game version -#define SUBVERSION 3 // more precise version number -#define VERSIONSTRING "v1.3" -#define VERSIONSTRINGW L"v1.3" +#define SUBVERSION 4 // more precise version number +#define VERSIONSTRING "v1.4" +#define VERSIONSTRINGW L"v1.4" // Hey! If you change this, add 1 to the MODVERSION below! Otherwise we can't force updates! -// And change CMakeLists.txt, for CMake users! // AND appveyor.yml, for the build bots! #endif @@ -164,7 +163,7 @@ extern char logfilename[1024]; //#define USE_PATCH_DTA // Kart has it's own, as well. -#define USE_PATCH_KART +//#define USE_PATCH_KART // Use .kart extension addons #define USE_KART @@ -204,7 +203,7 @@ extern char logfilename[1024]; // it's only for detection of the version the player is using so the MS can alert them of an update. // Only set it higher, not lower, obviously. // Note that we use this to help keep internal testing in check; this is why v2.1.0 is not version "1". -#define MODVERSION 7 +#define MODVERSION 8 // Filter consvars by version // To version config.cfg, MAJOREXECVERSION is set equal to MODVERSION automatically.