diff --git a/CMakeLists.txt b/CMakeLists.txt index cd7de722c..495eaa801 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ endif() project(es-de) # Application version, update this when making a new release. -set(ES_VERSION 3.0.1) +set(ES_VERSION 3.0.2) # 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) diff --git a/es-app/assets/ES-DE_Info.plist b/es-app/assets/ES-DE_Info.plist index c92e1e0c3..76c9e710c 100644 --- a/es-app/assets/ES-DE_Info.plist +++ b/es-app/assets/ES-DE_Info.plist @@ -3,7 +3,7 @@ CFBundleIdentifier - 3.0.1 + 3.0.2 CFBundleDevelopmentRegion English CFBundleDisplayName @@ -11,7 +11,7 @@ CFBundleExecutable ES-DE CFBundleGetInfoString - ES-DE 3.0.1 + ES-DE 3.0.2 CFBundleIconFile ES-DE.icns CFBundleName @@ -21,9 +21,9 @@ CFBundleSignature ESDE CFBundleShortVersionString - 3.0.1 + 3.0.2 CFBundleVersion - 3.0.1 + 3.0.2 CFBundleInfoDictionaryVersion 6.0 LSApplicationCategoryType diff --git a/es-app/assets/es-de.6.gz b/es-app/assets/es-de.6.gz index 2bd149e4a..6826ac391 100644 Binary files a/es-app/assets/es-de.6.gz and b/es-app/assets/es-de.6.gz differ diff --git a/es-core/src/ApplicationVersion.h b/es-core/src/ApplicationVersion.h index edc678005..d8b2106bd 100644 --- a/es-core/src/ApplicationVersion.h +++ b/es-core/src/ApplicationVersion.h @@ -12,14 +12,14 @@ // clang-format off #define PROGRAM_VERSION_MAJOR 3 #define PROGRAM_VERSION_MINOR 0 -#define PROGRAM_VERSION_MAINTENANCE 1 -#define PROGRAM_RELEASE_NUMBER 42 +#define PROGRAM_VERSION_MAINTENANCE 2 +#define PROGRAM_RELEASE_NUMBER 43 // clang-format on -#define PROGRAM_VERSION_STRING "3.0.1" +#define PROGRAM_VERSION_STRING "3.0.2" #define PROGRAM_BUILT_STRING __DATE__ " - " __TIME__ -#define RESOURCE_VERSION_STRING "3,0,1\0" +#define RESOURCE_VERSION_STRING "3,0,2\0" #define RESOURCE_VERSION PROGRAM_VERSION_MAJOR, PROGRAM_VERSION_MINOR, PROGRAM_VERSION_MAINTENANCE #endif // ES_CORE_APPLICATION_VERSION_H