Skip to content

Commit 4dd00a6

Browse files
authored
Merge pull request #2374 from Ghabry/0-6-2-3
Release 0.6.2.3
2 parents 536e4bf + 90a9cf3 commit 4dd00a6

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

Diff for: CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.7)
22
cmake_policy(SET CMP0091 NEW) # Support MSVC_RUNTIME_LIBRARY
33

4-
project(EasyRPG_Player VERSION 0.6.2.2 LANGUAGES CXX)
4+
project(EasyRPG_Player VERSION 0.6.2.3 LANGUAGES CXX)
55

66
# Extra CMake Module files
77
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/builds/cmake/Modules")

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ Building requirements:
7070

7171
Step-by-step instructions:
7272

73-
tar xf easyrpg-player-0.6.2.2.tar.xz # unpack the tarball
74-
cd easyrpg-player-0.6.2.2 # enter in the package directory
73+
tar xf easyrpg-player-0.6.2.3.tar.xz # unpack the tarball
74+
cd easyrpg-player-0.6.2.3 # enter in the package directory
7575
./configure # find libraries, set options
7676
make # compile the executable
7777

@@ -99,8 +99,8 @@ Building requirements:
9999

100100
Step-by-step instructions:
101101

102-
tar xf easyrpg-player-0.6.2.2.tar.xz # unpack the tarball
103-
cd easyrpg-player-0.6.2.2 # enter in the package directory
102+
tar xf easyrpg-player-0.6.2.3.tar.xz # unpack the tarball
103+
cd easyrpg-player-0.6.2.3 # enter in the package directory
104104
cmake . -DCMAKE_BUILD_TYPE=Release # configure project
105105
cmake --build . # compile the executable
106106
sudo cmake --build . --target install # install system-wide

Diff for: builds/switch/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ EXEFS_SRC := exefs_src
4949

5050
APP_TITLE := EasyRPG Player
5151
APP_AUTHOR := EasyRPG Team & Rinnegatamante
52-
APP_VERSION := 0.6.2.2
52+
APP_VERSION := 0.6.2.3
5353
ICON := icon.jpg
5454

5555
#---------------------------------------------------------------------------------

Diff for: builds/wii/meta.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<app version="1">
33
<name>EasyRPG Player</name>
44
<coder>EasyRPG Team</coder>
5-
<version>0.6.2.2</version>
6-
<release_date>20200908000000</release_date>
5+
<version>0.6.2.3</version>
6+
<release_date>20201003000000</release_date>
77
<short_description>RPG Maker 2000/2003 player</short_description>
88
<long_description>EasyRPG Player is a Role Playing Game interpreter for playing games created by RPG Maker 2000/2003.
99

Diff for: configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.69])
5-
AC_INIT([easyrpg-player],[0.6.2.2],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easyrpg.org])
5+
AC_INIT([easyrpg-player],[0.6.2.3],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easyrpg.org])
66

77
AC_CONFIG_AUX_DIR([builds/autoconf/aux])
88
AM_INIT_AUTOMAKE([1.11.4 foreign subdir-objects tar-ustar -Wall dist-xz])

Diff for: resources/osx/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<string>APPL</string>
3232

3333
<key>CFBundleShortVersionString</key>
34-
<string>0.6.2.2</string>
34+
<string>0.6.2.3</string>
3535

3636
<key>NSSupportsAutomaticGraphicsSwitching</key>
3737
<true/>

Diff for: resources/player.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
1 24 "player.xml"
44
#endif
55
1 VERSIONINFO
6-
FILEVERSION 0,6,2,2
7-
PRODUCTVERSION 0,6,2,2
6+
FILEVERSION 0,6,2,3
7+
PRODUCTVERSION 0,6,2,3
88
FILETYPE 0x00000001L
99
{
1010
BLOCK "StringFileInfo"
@@ -13,13 +13,13 @@ FILETYPE 0x00000001L
1313
{
1414
VALUE "Comments", "https://easyrpg.org"
1515
VALUE "CompanyName", "EasyRPG Project"
16-
VALUE "FileVersion", "0.6.2.2"
16+
VALUE "FileVersion", "0.6.2.3"
1717
VALUE "FileDescription", "EasyRPG Player"
1818
VALUE "InternalName", "easyrpg-player"
1919
VALUE "LegalCopyright", "2007-2020 EasyRPG Project"
2020
VALUE "OriginalFilename", "Player.exe"
2121
VALUE "ProductName", "EasyRPG Player"
22-
VALUE "ProductVersion", "0.6.2.2"
22+
VALUE "ProductVersion", "0.6.2.3"
2323
}
2424
}
2525
BLOCK "VarFileInfo"

Diff for: src/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define PLAYER_MAJOR 0
3030
#define PLAYER_MINOR 6
3131
#define PLAYER_PATCH 2
32-
#define PLAYER_TWEAK 2
32+
#define PLAYER_TWEAK 3
3333
#define PLAYER_ADDTL ""
3434

3535
#if PLAYER_TWEAK > 0

0 commit comments

Comments
 (0)