From 90a9cf34d46633d37ca6d93eb4c1ae07efa115df Mon Sep 17 00:00:00 2001 From: Ghabry Date: Sat, 3 Oct 2020 13:41:34 +0200 Subject: [PATCH] Release 0.6.2.3 --- CMakeLists.txt | 2 +- README.md | 8 ++++---- builds/switch/Makefile | 2 +- builds/wii/meta.xml | 4 ++-- configure.ac | 2 +- resources/osx/Info.plist | 2 +- resources/player.rc | 8 ++++---- src/version.h | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3e9d27adf6..df55873e26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.7) cmake_policy(SET CMP0091 NEW) # Support MSVC_RUNTIME_LIBRARY -project(EasyRPG_Player VERSION 0.6.2.2 LANGUAGES CXX) +project(EasyRPG_Player VERSION 0.6.2.3 LANGUAGES CXX) # Extra CMake Module files list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/builds/cmake/Modules") diff --git a/README.md b/README.md index ddf6700324..c3a38b37bc 100644 --- a/README.md +++ b/README.md @@ -70,8 +70,8 @@ Building requirements: Step-by-step instructions: - tar xf easyrpg-player-0.6.2.2.tar.xz # unpack the tarball - cd easyrpg-player-0.6.2.2 # enter in the package directory + tar xf easyrpg-player-0.6.2.3.tar.xz # unpack the tarball + cd easyrpg-player-0.6.2.3 # enter in the package directory ./configure # find libraries, set options make # compile the executable @@ -99,8 +99,8 @@ Building requirements: Step-by-step instructions: - tar xf easyrpg-player-0.6.2.2.tar.xz # unpack the tarball - cd easyrpg-player-0.6.2.2 # enter in the package directory + tar xf easyrpg-player-0.6.2.3.tar.xz # unpack the tarball + cd easyrpg-player-0.6.2.3 # enter in the package directory cmake . -DCMAKE_BUILD_TYPE=Release # configure project cmake --build . # compile the executable sudo cmake --build . --target install # install system-wide diff --git a/builds/switch/Makefile b/builds/switch/Makefile index 85750066bb..f269e3ba11 100644 --- a/builds/switch/Makefile +++ b/builds/switch/Makefile @@ -49,7 +49,7 @@ EXEFS_SRC := exefs_src APP_TITLE := EasyRPG Player APP_AUTHOR := EasyRPG Team & Rinnegatamante -APP_VERSION := 0.6.2.2 +APP_VERSION := 0.6.2.3 ICON := icon.jpg #--------------------------------------------------------------------------------- diff --git a/builds/wii/meta.xml b/builds/wii/meta.xml index 98d91db5a5..e629d1f636 100644 --- a/builds/wii/meta.xml +++ b/builds/wii/meta.xml @@ -2,8 +2,8 @@ EasyRPG Player EasyRPG Team - 0.6.2.2 - 20200908000000 + 0.6.2.3 + 20201003000000 RPG Maker 2000/2003 player EasyRPG Player is a Role Playing Game interpreter for playing games created by RPG Maker 2000/2003. diff --git a/configure.ac b/configure.ac index dc52fbfada..c410255a7e 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([easyrpg-player],[0.6.2.2],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easyrpg.org]) +AC_INIT([easyrpg-player],[0.6.2.3],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easyrpg.org]) AC_CONFIG_AUX_DIR([builds/autoconf/aux]) AM_INIT_AUTOMAKE([1.11.4 foreign subdir-objects tar-ustar -Wall dist-xz]) diff --git a/resources/osx/Info.plist b/resources/osx/Info.plist index 1f88b909d9..b7bd43d523 100644 --- a/resources/osx/Info.plist +++ b/resources/osx/Info.plist @@ -31,7 +31,7 @@ APPL CFBundleShortVersionString - 0.6.2.2 + 0.6.2.3 NSSupportsAutomaticGraphicsSwitching diff --git a/resources/player.rc b/resources/player.rc index f5d3db471c..1d00a4b4e2 100644 --- a/resources/player.rc +++ b/resources/player.rc @@ -3,8 +3,8 @@ 1 24 "player.xml" #endif 1 VERSIONINFO -FILEVERSION 0,6,2,2 -PRODUCTVERSION 0,6,2,2 +FILEVERSION 0,6,2,3 +PRODUCTVERSION 0,6,2,3 FILETYPE 0x00000001L { BLOCK "StringFileInfo" @@ -13,13 +13,13 @@ FILETYPE 0x00000001L { VALUE "Comments", "https://easyrpg.org" VALUE "CompanyName", "EasyRPG Project" - VALUE "FileVersion", "0.6.2.2" + VALUE "FileVersion", "0.6.2.3" VALUE "FileDescription", "EasyRPG Player" VALUE "InternalName", "easyrpg-player" VALUE "LegalCopyright", "2007-2020 EasyRPG Project" VALUE "OriginalFilename", "Player.exe" VALUE "ProductName", "EasyRPG Player" - VALUE "ProductVersion", "0.6.2.2" + VALUE "ProductVersion", "0.6.2.3" } } BLOCK "VarFileInfo" diff --git a/src/version.h b/src/version.h index 15d4e510ba..360e340f26 100644 --- a/src/version.h +++ b/src/version.h @@ -29,7 +29,7 @@ #define PLAYER_MAJOR 0 #define PLAYER_MINOR 6 #define PLAYER_PATCH 2 -#define PLAYER_TWEAK 2 +#define PLAYER_TWEAK 3 #define PLAYER_ADDTL "" #if PLAYER_TWEAK > 0