Skip to content

Commit 1b56051

Browse files
committed
Release Nugget Doom 3.0.0
1 parent 08fe950 commit 1b56051

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ set(X_VCPKG_APPLOCAL_DEPS_INSTALL ON)
1212
cmake_minimum_required(VERSION 3.9)
1313

1414
project("Nugget Doom"
15-
VERSION 2.3.1
16-
DESCRIPTION "Nugget Doom 2.3.1"
15+
VERSION 3.0.0
16+
DESCRIPTION "Nugget Doom 3.0.0"
1717
HOMEPAGE_URL "https://github.com/MrAlaux/Nugget-Doom"
1818
LANGUAGES C)
1919

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,14 @@ A complete history of changes and releases can be found on the [Releases](https:
200200

201201
Nugget Doom follows a fairly simple (albeit arbitrary) **X.Y.Z** versioning system:
202202

203-
- **X** is increased in the event of at least one major implementation, such as a new spec like _UMAPINFO_;
204-
- **Y** is increased in the event of at least one minor implementation, such as a new cheat;
205-
- **Z** is increased in the event of at least one bug fix, text/code reformatting, or merging of _Woof!_ updates, even if the changes to the latter are considered minor or major.
203+
- **X** is increased in the event of major implementations, as were arbitrary/dynamic resolution and voxel support;
204+
- **Y** is increased in the event of minor implementations, such as a new cheat;
205+
- **Z** is increased in the event of bug fixes or text/code reformatting.
206206

207207
Incrementing any of the first values will reset the latter (i.e. a major change to 1.1.2 would shift it to 2.0.0).
208208

209+
The merging of changes from Woof! releases may affect any of the version values, but not necessarily in the same way as Woof!'s own version (i.e. `Woof! 11.Y.Z -> 12.Y.Z` doesn't necessarily mean `Nugget 2.Y.Z -> 3.Y.Z`).
210+
209211
# Compiling
210212

211213
As a Woof! fork, its build instructions should also apply here:

src/g_game.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2500,6 +2500,7 @@ static void G_DoLoadGame(void)
25002500
CheckSaveVersion("Woof 6.0.0", saveg_woof600);
25012501
CheckSaveVersion("Nugget 2.0.0", saveg_nugget200);
25022502
CheckSaveVersion("Nugget 2.1.0", saveg_nugget210);
2503+
CheckSaveVersion("Nugget 2.4.0", saveg_current); // To be removed
25032504
CheckSaveVersion(CURRENT_SAVE_VERSION, saveg_current);
25042505

25052506
// killough 2/22/98: Friendly savegame version difference message

src/p_saveg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ typedef enum saveg_compat_e
6868
// [Nugget]
6969
saveg_nugget200,
7070
saveg_nugget210,
71-
saveg_current, // saveg_nugget240
71+
saveg_current, // saveg_nugget300
7272
} saveg_compat_t;
7373

7474
extern saveg_compat_t saveg_compat;

0 commit comments

Comments
 (0)