Skip to content

Commit

Permalink
EasyRPG Player Version 0.5.4 - Antidote
Browse files Browse the repository at this point in the history
  • Loading branch information
carstene1ns committed Oct 26, 2018
1 parent 0998409 commit 9439c0e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.7)

project(EasyRPG_Player VERSION 0.5.3 LANGUAGES CXX)
project(EasyRPG_Player VERSION 0.5.4 LANGUAGES CXX)

# Source Files
add_library(${PROJECT_NAME}
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ Building requirements:

Step-by-step instructions:

tar xf easyrpg-player-0.5.3.tar.xz # unpack the tarball
cd easyrpg-player-0.5.3 # enter in the package directory
tar xf easyrpg-player-0.5.4.tar.xz # unpack the tarball
cd easyrpg-player-0.5.4 # enter in the package directory
./configure # find libraries, set options
make # compile the executable

Expand Down Expand Up @@ -99,8 +99,8 @@ Building requirements:

Step-by-step instructions:

tar xf easyrpg-player-0.5.3.tar.xz # unpack the tarball
cd easyrpg-player-0.5.3 # enter in the package directory
tar xf easyrpg-player-0.5.4.tar.xz # unpack the tarball
cd easyrpg-player-0.5.4 # enter in the package directory
cmake . # generate Makefile
make # compile the executable

Expand Down
1 change: 1 addition & 0 deletions builds/switch/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ EXEFS_SRC := exefs_src

APP_TITLE := EasyRPG Player
APP_AUTHOR := EasyRPG Team & Rinnegatamante
APP_VERSION := 0.5.4
ICON := icon.jpg

#---------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions builds/wii/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<app version="1">
<name>EasyRPG Player</name>
<coder>EasyRPG Team</coder>
<version>0.5.3</version>
<release_date>20171022000000</release_date>
<version>0.5.4</version>
<release_date>20181026000000</release_date>
<short_description>RPG Maker 2000/2003 player</short_description>
<long_description>EasyRPG Player is a Role Playing Game interpreter for playing games created by RPG Maker 2000/2003.

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([easyrpg-player],[0.5.3],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easyrpg.org])
AC_INIT([easyrpg-player],[0.5.4],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easyrpg.org])

AC_CONFIG_AUX_DIR([builds/autoconf])
AM_INIT_AUTOMAKE([1.11.4 foreign subdir-objects tar-ustar -Wall -Werror])
Expand Down
2 changes: 1 addition & 1 deletion resources/osx/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<string>APPL</string>

<key>CFBundleShortVersionString</key>
<string>0.5.3</string>
<string>0.5.4</string>

</dict>
</plist>
10 changes: 5 additions & 5 deletions resources/player.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
1 24 "player.xml"
#endif
1 VERSIONINFO
FILEVERSION 0,5,3,0
PRODUCTVERSION 0,5,3,0
FILEVERSION 0,5,4,0
PRODUCTVERSION 0,5,4,0
FILETYPE 0x00000001L
{
BLOCK "StringFileInfo"
Expand All @@ -13,13 +13,13 @@ FILETYPE 0x00000001L
{
VALUE "Comments", "https://easyrpg.org"
VALUE "CompanyName", "EasyRPG Project"
VALUE "FileVersion", "0.5.3.0"
VALUE "FileVersion", "0.5.4.0"
VALUE "FileDescription", "EasyRPG Player"
VALUE "InternalName", "easyrpg-player"
VALUE "LegalCopyright", "2007-2017 EasyRPG Project"
VALUE "LegalCopyright", "2007-2018 EasyRPG Project"
VALUE "OriginalFilename", "Player.exe"
VALUE "ProductName", "EasyRPG Player"
VALUE "ProductVersion", "0.5.3.0"
VALUE "ProductVersion", "0.5.4.0"
}
}
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*/
#define PLAYER_MAJOR 0
#define PLAYER_MINOR 5
#define PLAYER_PATCH 3
#define PLAYER_PATCH 4
#define PLAYER_ADDTL ""
#define PLAYER_VERSION TO_STRING(PLAYER_MAJOR) "." TO_STRING(PLAYER_MINOR) "." TO_STRING(PLAYER_PATCH)

Expand Down

0 comments on commit 9439c0e

Please sign in to comment.