Skip to content

Commit 89b9620

Browse files
committed
EasyRPG Player 0.6.1 - Surprise Attack
1 parent 6b49e54 commit 89b9620

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.7)
22

3-
project(EasyRPG_Player VERSION 0.6.0 LANGUAGES CXX)
3+
project(EasyRPG_Player VERSION 0.6.1 LANGUAGES CXX)
44

55
# C++11 is required
66
set(CMAKE_CXX_STANDARD 11)

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.6.0.tar.xz # unpack the tarball
74-
cd easyrpg-player-0.6.0 # enter in the package directory
73+
tar xf easyrpg-player-0.6.1.tar.xz # unpack the tarball
74+
cd easyrpg-player-0.6.1 # 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.0.tar.xz # unpack the tarball
103-
cd easyrpg-player-0.6.0 # enter in the package directory
102+
tar xf easyrpg-player-0.6.1.tar.xz # unpack the tarball
103+
cd easyrpg-player-0.6.1 # 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

builds/switch/Makefile

Lines changed: 1 addition & 1 deletion
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.0
52+
APP_VERSION := 0.6.1
5353
ICON := icon.jpg
5454

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

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.6.0</version>
6-
<release_date>20190303000000</release_date>
5+
<version>0.6.1</version>
6+
<release_date>20190725000000</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.6.0],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easyrpg.org])
5+
AC_INIT([easyrpg-player],[0.6.1],[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])

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.6.0</string>
34+
<string>0.6.1</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,6,0,0
7-
PRODUCTVERSION 0,6,0,0
6+
FILEVERSION 0,6,1,0
7+
PRODUCTVERSION 0,6,1,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.6.0.0"
16+
VALUE "FileVersion", "0.6.1.0"
1717
VALUE "FileDescription", "EasyRPG Player"
1818
VALUE "InternalName", "easyrpg-player"
1919
VALUE "LegalCopyright", "2007-2019 EasyRPG Project"
2020
VALUE "OriginalFilename", "Player.exe"
2121
VALUE "ProductName", "EasyRPG Player"
22-
VALUE "ProductVersion", "0.6.0.0"
22+
VALUE "ProductVersion", "0.6.1.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 6
31-
#define PLAYER_PATCH 0
31+
#define PLAYER_PATCH 1
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)