From 8930ef90505fd8e82bf7bebd2f8e9a45c4438c8f Mon Sep 17 00:00:00 2001 From: ArnoAnsems <43150430+ArnoAnsems@users.noreply.github.com> Date: Mon, 26 Apr 2021 23:06:03 +0200 Subject: [PATCH] Update version to 0.5.2 --- README.md | 5 ++++- src/Engine/EngineCore.cpp | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c717ba6..1f23512 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Main features: * Supports all four Catacomb 3D games as included in the Catacombs Pack from GOG.com. * Supports The Catacomb Abyss version 1.13 (shareware). -Current limitations as of version 0.5.1: +Current limitations as of version 0.5.2: * No support for game controllers. * No backwards compatibility with saved games from the original DOS game. @@ -59,6 +59,9 @@ Special thanks goes to: * NY00123 for developing the Reflection Keen source port. The part of Reflection Keen that handles music and sound effects is reused in CatacombGL. # History +* Version 0.5.2 (2021-04-26) New in this release: + * Fix: prevent empty save and load menu when no saved games available. Reported by Azuris. + * Version 0.5.1 (2021-04-24) New in this release: * Added the "Demo" to the Catacomb Abyss shareware. The demo is a slideshow that originally served as a preview of the Catacomb Adventure series. It can be accessed via the menu or by pressing F10 in the opening screen. * Added the "Hints & Solutions" to the Catacomb Adventure series. The Hints & Solutions is a slideshow with top down maps of each level. It is only available in the GOG Catacombs Pack, so not in the shareware version. It can be accessed via the menu. diff --git a/src/Engine/EngineCore.cpp b/src/Engine/EngineCore.cpp index 12d3c97..edb55b9 100644 --- a/src/Engine/EngineCore.cpp +++ b/src/Engine/EngineCore.cpp @@ -24,7 +24,7 @@ const uint8_t versionMajor = 0; const uint8_t versionMinor = 5; -const uint8_t versionLevel = 1; +const uint8_t versionLevel = 2; const std::string versionPhase = "Beta"; const uint8_t VictoryStatePlayGetBolt = 0;