Skip to content

Commit 9df8129

Browse files
committed
Update internal version to 2.0.0-rc1.
Update menu to display version in uppercase.
1 parent 1df8e65 commit 9df8129

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Diff for: src/EmulationStation.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
// These numbers and strings need to be manually updated for a new version.
44
// Do this version number update as the very last commit for the new release version.
5-
#define PROGRAM_VERSION_MAJOR 1
5+
#define PROGRAM_VERSION_MAJOR 2
66
#define PROGRAM_VERSION_MINOR 0
7-
#define PROGRAM_VERSION_MAINTENANCE 2
8-
#define PROGRAM_VERSION_REVISION 0
9-
#define PROGRAM_VERSION_STRING "1.0.2.0"
7+
#define PROGRAM_VERSION_MAINTENANCE 0
8+
#define PROGRAM_VERSION_STRING "2.0.0-rc1"
9+
1010
#define PROGRAM_BUILT_STRING __DATE__ " - " __TIME__
11-
#define RESOURCE_VERSION_STRING "1,0,2,0\0"
1211

13-
#define RESOURCE_VERSION PROGRAM_VERSION_MAJOR,PROGRAM_VERSION_MINOR,PROGRAM_VERSION_MAINTENANCE,PROGRAM_VERSION_REVISION
12+
#define RESOURCE_VERSION_STRING "2,0,0\0"
13+
#define RESOURCE_VERSION PROGRAM_VERSION_MAJOR,PROGRAM_VERSION_MINOR,PROGRAM_VERSION_MAINTENANCE

Diff for: src/guis/GuiMenu.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ GuiMenu::GuiMenu(Window* window) : GuiComponent(window), mMenu(window, "MAIN MEN
218218

219219
mVersion.setFont(Font::get(FONT_SIZE_SMALL));
220220
mVersion.setColor(0xC6C6C6FF);
221-
mVersion.setText("EMULATIONSTATION V" PROGRAM_VERSION_STRING);
221+
mVersion.setText("EMULATIONSTATION V" + strToUpper(PROGRAM_VERSION_STRING));
222222
mVersion.setAlignment(ALIGN_CENTER);
223223

224224
addChild(&mMenu);

0 commit comments

Comments
 (0)