Bumped the version to 2.1.2

This commit is contained in:
Leon Styhre 2023-07-20 15:58:06 +02:00
parent 5aa2be5676
commit 81ac2fd2a6
5 changed files with 9 additions and 9 deletions

View file

@ -19,7 +19,7 @@ endif()
project(emulationstation-de) project(emulationstation-de)
# Application version, update this when making a new release. # Application version, update this when making a new release.
set(ES_VERSION 2.1.1) set(ES_VERSION 2.1.2)
# Set this to ON to show verbose compiler output (e.g. compiler flags, include directories etc.) # Set this to ON to show verbose compiler output (e.g. compiler flags, include directories etc.)
set(CMAKE_VERBOSE_MAKEFILE OFF CACHE BOOL "Show verbose compiler output" FORCE) set(CMAKE_VERBOSE_MAKEFILE OFF CACHE BOOL "Show verbose compiler output" FORCE)

View file

@ -11,7 +11,7 @@
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>EmulationStation</string> <string>EmulationStation</string>
<key>CFBundleGetInfoString</key> <key>CFBundleGetInfoString</key>
<string>EmulationStation Desktop Edition 2.1.1</string> <string>EmulationStation Desktop Edition 2.1.2</string>
<key>CFBundleIconFile</key> <key>CFBundleIconFile</key>
<string>EmulationStation-DE.icns</string> <string>EmulationStation-DE.icns</string>
<key>CFBundleName</key> <key>CFBundleName</key>
@ -21,9 +21,9 @@
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>ESDE</string> <string>ESDE</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>2.1.1</string> <string>2.1.2</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>2.1.1</string> <string>2.1.2</string>
<key>CFBundleInfoDictionaryVersion</key> <key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string> <string>6.0</string>
<key>LSApplicationCategoryType</key> <key>LSApplicationCategoryType</key>

View file

@ -2,7 +2,7 @@ EmulationStation Desktop Edition (ES-DE) - Portable installation on Windows
--------------------------------------------------------------------------- ---------------------------------------------------------------------------
ES-DE release: ES-DE release:
2.1.1 2.1.2
Instructions: Instructions:

Binary file not shown.

View file

@ -13,14 +13,14 @@
// clang-format off // clang-format off
#define PROGRAM_VERSION_MAJOR 2 #define PROGRAM_VERSION_MAJOR 2
#define PROGRAM_VERSION_MINOR 1 #define PROGRAM_VERSION_MINOR 1
#define PROGRAM_VERSION_MAINTENANCE 1 #define PROGRAM_VERSION_MAINTENANCE 2
#define PROGRAM_RELEASE_NUMBER 36 #define PROGRAM_RELEASE_NUMBER 37
// clang-format on // clang-format on
#define PROGRAM_VERSION_STRING "2.1.1" #define PROGRAM_VERSION_STRING "2.1.2"
#define PROGRAM_BUILT_STRING __DATE__ " - " __TIME__ #define PROGRAM_BUILT_STRING __DATE__ " - " __TIME__
#define RESOURCE_VERSION_STRING "2,1,1\0" #define RESOURCE_VERSION_STRING "2,1,2\0"
#define RESOURCE_VERSION PROGRAM_VERSION_MAJOR, PROGRAM_VERSION_MINOR, PROGRAM_VERSION_MAINTENANCE #define RESOURCE_VERSION PROGRAM_VERSION_MAJOR, PROGRAM_VERSION_MINOR, PROGRAM_VERSION_MAINTENANCE
#endif // ES_APP_EMULATION_STATION_H #endif // ES_APP_EMULATION_STATION_H