Skip to content

Commit 7249113

Browse files
committed
EasyRPG Player 0.5.3
1 parent 3dd2b7d commit 7249113

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED on)
55
include(CMakeDependentOption)
66

77
project(EasyRPG_Player CXX C)
8-
set(PACKAGE_VERSION "0.5.2")
8+
set(PACKAGE_VERSION "0.5.3")
99

1010
# Source Files
1111
set(PLAYER_SRCS

README.md

Lines changed: 4 additions & 4 deletions
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.5.2.tar.xz # unpack the tarball
74-
cd easyrpg-player-0.5.2 # enter in the package directory
73+
tar xf easyrpg-player-0.5.3.tar.xz # unpack the tarball
74+
cd easyrpg-player-0.5.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.5.2.tar.xz # unpack the tarball
103-
cd easyrpg-player-0.5.2 # enter in the package directory
102+
tar xf easyrpg-player-0.5.3.tar.xz # unpack the tarball
103+
cd easyrpg-player-0.5.3 # enter in the package directory
104104
cmake . # generate Makefile
105105
make # compile the executable
106106

builds/wii/meta.xml

Lines changed: 2 additions & 2 deletions
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.5.2</version>
6-
<release_date>20170628000000</release_date>
5+
<version>0.5.3</version>
6+
<release_date>20171022000000</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

configure.ac

Lines changed: 1 addition & 1 deletion
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.5.2],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easyrpg.org])
5+
AC_INIT([easyrpg-player],[0.5.3],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easyrpg.org])
66

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

resources/osx/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<string>APPL</string>
3232

3333
<key>CFBundleShortVersionString</key>
34-
<string>0.5.2</string>
34+
<string>0.5.3</string>
3535

3636
</dict>
3737
</plist>

resources/player.rc

Lines changed: 4 additions & 4 deletions
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,5,2,0
7-
PRODUCTVERSION 0,5,2,0
6+
FILEVERSION 0,5,3,0
7+
PRODUCTVERSION 0,5,3,0
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.5.2.0"
16+
VALUE "FileVersion", "0.5.3.0"
1717
VALUE "FileDescription", "EasyRPG Player"
1818
VALUE "InternalName", "easyrpg-player"
1919
VALUE "LegalCopyright", "2007-2017 EasyRPG Project"
2020
VALUE "OriginalFilename", "Player.exe"
2121
VALUE "ProductName", "EasyRPG Player"
22-
VALUE "ProductVersion", "0.5.2.0"
22+
VALUE "ProductVersion", "0.5.3.0"
2323
}
2424
}
2525
BLOCK "VarFileInfo"

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*/
2929
#define PLAYER_MAJOR 0
3030
#define PLAYER_MINOR 5
31-
#define PLAYER_PATCH 2
31+
#define PLAYER_PATCH 3
3232
#define PLAYER_ADDTL ""
3333
#define PLAYER_VERSION TO_STRING(PLAYER_MAJOR) "." TO_STRING(PLAYER_MINOR) "." TO_STRING(PLAYER_PATCH)
3434

0 commit comments

Comments
 (0)