Skip to content

Commit

Permalink
Update version to 0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnoAnsems committed Nov 27, 2024
1 parent a666171 commit aae385d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set(CMAKE_DISABLE_SOURCE_CHANGES ON)
set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)


project(CatacombGL LANGUAGES CXX C VERSION 0.5.5)
project(CatacombGL LANGUAGES CXX C VERSION 0.5.6)

# GoogleTests are by default not part of the build process, but can be added
# by selecting the option in CMake.
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.5:
Current limitations as of version 0.5.6:
* No support for game controllers.
* No backwards compatibility with saved games from the original DOS game.

Expand Down Expand Up @@ -95,6 +95,14 @@ Special thanks goes to:
* GoGoOtaku for porting CatacombGL to Linux and CMake.

# History
* Version 0.5.6 (2024-11-27) New in this release:
* Added an option to place the camera position slightly behind the player, as seen in the original DOS games. The default camera position is still centered on the player. Suggested by N00123, Blzut3 and WhiteMagicRaven.
* Added configuration variables WindowedScreenWidth and WindowedScreenHeight, which can be used to set the initial screen resolution in windowed mode. These variables have to be set via the configuration file, since they are not included in the menu. The default is 800 x 600. Suggested by The Kinsie.
* Integrated the latest audio backend from ReflectionHLE.
* Fix: prevent music playback from interfering with sound effects in the Catacomb Adventure series. Reported by NY00123.
* Fix: switch off the music when opening the menu via the F2, F3 or F4 keyboard keys in the Catacomb Adventure series. Reported by NY00123.
* Fix: allow for two default keyboard keys to be bound to a single action.

* Version 0.5.5 (2024-08-21) New in this release:
* Support for command line parameters was implemented by wcapes. See the readme file for a list of commands.
* The sticky walls in Catacomb 3-D are now configurable. Suggested by @ivfall@bitbang.social on Mastodon.
Expand Down
2 changes: 1 addition & 1 deletion src/Engine/EngineCore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace fs = std::filesystem;

constexpr uint8_t versionMajor = 0;
constexpr uint8_t versionMinor = 5;
constexpr uint8_t versionLevel = 5;
constexpr uint8_t versionLevel = 6;
const std::string versionPhase = "Beta";

constexpr uint8_t VictoryStatePlayGetBolt = 0;
Expand Down

0 comments on commit aae385d

Please sign in to comment.