Skip to content

Commit

Permalink
2.2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
ninesphere committed May 16, 2023
1 parent e086d57 commit 2c689ba
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.2.10.{branch}-{build}
version: 2.2.11.{branch}-{build}
os: MinGW

environment:
Expand Down
1 change: 1 addition & 0 deletions assets/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ set(SRB2_ASSETS_GAME
"srb2.pk3"
"player.dta"
"zones.pk3"
"patch.pk3"
"music.dta"
"models.dat"
)
Expand Down
5 changes: 3 additions & 2 deletions src/config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@
* Last updated 2020 / 10 / 02 - v2.2.8 - patch.pk3
* Last updated 2021 / 05 / 06 - v2.2.9 - patch.pk3 & zones.pk3
* Last updated 2022 / 03 / 06 - v2.2.10 - main assets
* Last updated 2023 / 05 / 02 - v2.2.11 - patch.pk3 & zones.pk3
*/
#define ASSET_HASH_SRB2_PK3 "ad911f29a28a18968ee5b2d11c2acb39"
#define ASSET_HASH_ZONES_PK3 "188a2bfd552196609323fc91ec1cdb22"
#define ASSET_HASH_ZONES_PK3 "1c8adf8d079ecb87d00081f158acf3c7"
#define ASSET_HASH_PLAYER_DTA "2e7aaae8a6b1b77d90ffe7606ceadb6c"
#ifdef USE_PATCH_DTA
#define ASSET_HASH_PATCH_PK3 "7d467a883f7887b3c311798ee2f56b6a"
#define ASSET_HASH_PATCH_PK3 "2e69558bce3b9610624549a75e29e19b"
#endif

#endif
2 changes: 1 addition & 1 deletion src/doomdef.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ extern char logfilename[1024];

// Does this version require an added patch file?
// Comment or uncomment this as necessary.
// #define USE_PATCH_DTA
#define USE_PATCH_DTA

// Enforce a limit of loaded WAD files.
//#define ENFORCE_WAD_LIMIT
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
#define MODVERSION 52

// Define this as a prerelease version suffix (pre#, RC#)
#define BETAVERSION "pre3"
//#define BETAVERSION "pre1"
4 changes: 2 additions & 2 deletions src/win32/Srb2win.rc
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ END
#include "../doomdef.h" // Needed for version string

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,2,10,0
PRODUCTVERSION 2,2,10,0
FILEVERSION 2,2,11,0
PRODUCTVERSION 2,2,11,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand Down

0 comments on commit 2c689ba

Please sign in to comment.