Skip to content

Commit

Permalink
Umoria 5.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael R. Cook committed Jan 20, 2018
1 parent c2d680c commit 1a4b149
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,29 @@
## HEAD


## 5.7.9 (2018-01-20)

- Add AUTHORS file containing all known author information.
This removes contributors section from `versions.txt`.

### Bug Fixes

- Kill experience points now calculated correctly.
When extracting a method the wrong `int` type was used when calculating the
`creature.kill_exp_value * creature.level`.
This bug was introduced in Umoria `5.7.3` with the commit: ccfa74783ad67eb3276ff3eca0f2509599012d33

### Code

Continuing the process of moving related functions to the same file.
Continuing the process of moving related functions to the same file, plus other
changes. Highlights:

- `types.h` now has just the two core `vtype_t` and `obj_desc_t` types.
- The numbered `misc` and `moria` files no longer exist!
- Moved `sets.cpp` functions elsewhere, allowing for most to become `static`.
- `externs.h` is now empty, so deleted!
- Add consistent `const` in various places.
- Use more `Coord_t` in Dungeon related functions.


## 5.7.8 (2017-12-24)
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,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 = 8;
constexpr uint8_t CURRENT_VERSION_PATCH = 9;

0 comments on commit 1a4b149

Please sign in to comment.