Version 99.2 (Build 382)

This commit is contained in:
jacob1
2025-02-01 17:00:17 -05:00
parent 22a68d257f
commit 1b900031f6
3 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
The Powder Toy - January 2025
The Powder Toy - February 2025
==========================
Get the latest version [from the Powder Toy website](https://powdertoy.co.uk/Download.html).

View File

@@ -59,14 +59,14 @@ option(
'display_version_minor',
type: 'integer',
min: 0,
value: 1,
value: 2,
description: 'Minor component of the display version, should more or less map to the PATCH version in semantic versioning'
)
option(
'build_num',
type: 'integer',
min: 0,
value: 381,
value: 382,
description: 'Build number, should be strictly monotonously increasing across public releases'
)
option(
@@ -80,14 +80,14 @@ option(
'upstream_version_minor',
type: 'integer',
min: 0,
value: 1,
value: 2,
description: 'Minor component of the upstream display version, mod owners should not change this but merge upstream changes to it'
)
option(
'upstream_build_num',
type: 'integer',
min: 0,
value: 381,
value: 382,
description: 'Upstream build number, mod owners should not change this but merge upstream changes to it'
)
option(

View File

@@ -17,7 +17,7 @@
#include <algorithm>
constexpr auto currentVersion = UPSTREAM_VERSION.displayVersion;
constexpr auto nextVersion = Version(99, 1);
constexpr auto nextVersion = Version(99, 2);
static_assert(!ALLOW_FAKE_NEWER_VERSION || nextVersion >= currentVersion);
constexpr auto effectiveVersion = ALLOW_FAKE_NEWER_VERSION ? nextVersion : currentVersion;