Skip to content

Commit 516bf81

Browse files
committed
Prepare 1.14.1
1 parent dd6e0f1 commit 516bf81

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
1.14.1
2+
======
3+
4+
- Fixed an issue with the RapidBrogue seed catalog which prevented altars from being listed.
5+
- Fixed the build for the curses/terminal version.
6+
7+
18
1.14
29
====
310

macos/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.14.0</string>
22+
<string>1.14.1</string>
2323
<key>CFBundleShortVersionString</key>
24-
<string>1.14.0</string>
24+
<string>1.14.1</string>
2525
<key>CFBundleSignature</key>
2626
<string>????</string>
2727
<key>CFBundleSupportedPlatforms</key>

src/brogue/Rogue.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
// Brogue version number (for main engine)
3838
#define BROGUE_MAJOR 1
3939
#define BROGUE_MINOR 14
40-
#define BROGUE_PATCH 0
40+
#define BROGUE_PATCH 1
4141

4242
// Expanding a macro as a string constant requires two levels of macros
4343
#define _str(x) #x

src/variants/GlobalsRapidBrogue.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -978,7 +978,7 @@ const char *mainMenuTitle_RapidBrogue =
978978

979979
#define RAPID_BROGUE_MAJOR 1
980980
#define RAPID_BROGUE_MINOR 6
981-
#define RAPID_BROGUE_PATCH 0
981+
#define RAPID_BROGUE_PATCH 1
982982

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

0 commit comments

Comments
 (0)