From 43d5d2efb293035ace754e726d0f3977b97712e1 Mon Sep 17 00:00:00 2001 From: "Michael R. Cook" Date: Sun, 5 Nov 2017 14:20:57 +0100 Subject: [PATCH] Umoria 5.7.6 --- CHANGELOG.md | 13 +++++++++---- src/version.h | 2 +- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6da77594..4491e38f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,15 +2,20 @@ ## HEAD + +## 5.7.6 (2017-11-05) + ### Bug Fixes - When compiling on Windows/MinGW, the OS was not being detected correctly. -- Load Cave tiles correctly (lit status values). A previous refactoring broke - loading of pre-5.7 saves. +- Now load cave tiles correctly (the `lit` status values), as a previous + refactoring broke loading of pre-5.7 saves. ### Code -- _Pass by Value_ and _Pass by Reference_ refactoring. +- _Pass by Value_ and _Pass by Reference_ major refactoring. +- Replace "magic numbers" with ENUMs, in `staffs.cpp`. +- Use `Coord_t` instead of `y`/`x` values in various coordinated related functions. ## 5.7.5 (2017-09-05) @@ -145,4 +150,4 @@ and macOS. Umoria is released under a new GPL v2 license. More information is available on the [free-moria](http://free-moria.sourceforge.net/) website. -All previous changes can be found in the [historical/CHANGELOG](historical/CHANGELOG). \ No newline at end of file +All previous changes can be found in the [historical/CHANGELOG](historical/CHANGELOG). diff --git a/src/version.h b/src/version.h index dbcb1a2b..86ff9b0d 100644 --- a/src/version.h +++ b/src/version.h @@ -9,4 +9,4 @@ // then you must also update the CMakeLists.txt. constexpr uint8_t CURRENT_VERSION_MAJOR = 5; constexpr uint8_t CURRENT_VERSION_MINOR = 7; -constexpr uint8_t CURRENT_VERSION_PATCH = 5; +constexpr uint8_t CURRENT_VERSION_PATCH = 6;