From 2c7151208915779311a3794c9dc5f3b2a6d259ec Mon Sep 17 00:00:00 2001 From: "Michael R. Cook" Date: Sat, 30 Jul 2022 12:32:04 +0200 Subject: [PATCH] update CHANGELOG and README --- CHANGELOG.md | 1 + README.md | 11 ++++------- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c983e17f..a5a47387 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ Tracking all changes since the 5.6.0 release. ## HEAD +* Fix out-of-bounds compile error in `/src/game_save.cpp` (Line 810). ## 5.7.15 (2021-06-02) diff --git a/README.md b/README.md index ccfa2ad8..77b6de17 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,8 @@ this classic roguelike game. ## Notes on Compiling Umoria -At present Umoria has been tested against GCC `8.x`, and `9.3`, with -`ncurses 6.x`, although recent earlier versions should also work fine. +Umoria has been tested against GCC (`10` and `11`) and with `ncurses 6.x`, +although recent earlier versions should also work fine. You will need these as well as `CMake` and the C++ build tools for your system. @@ -57,15 +57,12 @@ You will need these as well as `CMake` and the C++ build tools for your system. Change to the `umoria` game directory and enter the following commands at the terminal: - $ cmake . - $ make - -To perform an out-of-source build, type the following: - $ mkdir build && cd build $ cmake .. $ make +NOTE: use `make -j $(nproc)` to speed up compilation on Linux. + An `umoria` directory will be created in the current directory containing the game binary and data files, which can then be moved to any other location, such as the `home` directory.