Skip to content

Commit

Permalink
Prepare 1.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zenzombie committed Aug 31, 2024
1 parent dd6e0f1 commit 516bf81
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.14.1
======

- Fixed an issue with the RapidBrogue seed catalog which prevented altars from being listed.
- Fixed the build for the curses/terminal version.


1.14
====

Expand Down
4 changes: 2 additions & 2 deletions macos/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleVersion</key>
<string>1.14.0</string>
<string>1.14.1</string>
<key>CFBundleShortVersionString</key>
<string>1.14.0</string>
<string>1.14.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
Expand Down
2 changes: 1 addition & 1 deletion src/brogue/Rogue.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
// Brogue version number (for main engine)
#define BROGUE_MAJOR 1
#define BROGUE_MINOR 14
#define BROGUE_PATCH 0
#define BROGUE_PATCH 1

// Expanding a macro as a string constant requires two levels of macros
#define _str(x) #x
Expand Down
2 changes: 1 addition & 1 deletion src/variants/GlobalsRapidBrogue.c
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ const char *mainMenuTitle_RapidBrogue =

#define RAPID_BROGUE_MAJOR 1
#define RAPID_BROGUE_MINOR 6
#define RAPID_BROGUE_PATCH 0
#define RAPID_BROGUE_PATCH 1

// Brogue version: what the user sees in the menu and title
#define RAPID_BROGUE_VERSION_STRING "RB " STRINGIFY(RAPID_BROGUE_MAJOR) "." STRINGIFY(RAPID_BROGUE_MINOR) "." STRINGIFY(RAPID_BROGUE_PATCH) BROGUE_EXTRA_VERSION
Expand Down

0 comments on commit 516bf81

Please sign in to comment.