Skip to content

Commit b599588

Browse files
authored
Merge pull request #2223 from carstene1ns/version-0.6.2.1
Version 0.6.2.1
2 parents 6d3439f + 1f4d4c8 commit b599588

File tree

8 files changed

+23
-17
lines changed

8 files changed

+23
-17
lines changed

Diff for: CMakeLists.txt

+1-1
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.2 LANGUAGES CXX)
3+
project(EasyRPG_Player VERSION 0.6.2.1 LANGUAGES CXX)
44

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

Diff for: README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ Building requirements:
7070

7171
Step-by-step instructions:
7272

73-
tar xf easyrpg-player-0.6.2.tar.xz # unpack the tarball
74-
cd easyrpg-player-0.6.2 # enter in the package directory
75-
./configure # find libraries, set options
76-
make # compile the executable
73+
tar xf easyrpg-player-0.6.2.1.tar.xz # unpack the tarball
74+
cd easyrpg-player-0.6.2.1 # enter in the package directory
75+
./configure # find libraries, set options
76+
make # compile the executable
7777

7878
Additional building requirements when using the source tree (git):
7979

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

100100
Step-by-step instructions:
101101

102-
tar xf easyrpg-player-0.6.2.tar.xz # unpack the tarball
103-
cd easyrpg-player-0.6.2 # enter in the package directory
102+
tar xf easyrpg-player-0.6.2.1.tar.xz # unpack the tarball
103+
cd easyrpg-player-0.6.2.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

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
52+
APP_VERSION := 0.6.2.1
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</version>
6-
<release_date>20200426000000</release_date>
5+
<version>0.6.2.1</version>
6+
<release_date>20200522000000</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],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easyrpg.org])
5+
AC_INIT([easyrpg-player],[0.6.2.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])

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</string>
34+
<string>0.6.2.1</string>
3535

3636
</dict>
3737
</plist>

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,0
7-
PRODUCTVERSION 0,6,2,0
6+
FILEVERSION 0,6,2,1
7+
PRODUCTVERSION 0,6,2,1
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.0"
16+
VALUE "FileVersion", "0.6.2.1"
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.2.0"
22+
VALUE "ProductVersion", "0.6.2.1"
2323
}
2424
}
2525
BLOCK "VarFileInfo"

Diff for: src/version.h

+7-1
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,19 @@
2929
#define PLAYER_MAJOR 0
3030
#define PLAYER_MINOR 6
3131
#define PLAYER_PATCH 2
32+
#define PLAYER_TWEAK 1
3233
#define PLAYER_ADDTL ""
34+
35+
#if PLAYER_TWEAK > 0
36+
#define PLAYER_VERSION TO_STRING(PLAYER_MAJOR) "." TO_STRING(PLAYER_MINOR) "." TO_STRING(PLAYER_PATCH) "." TO_STRING(PLAYER_TWEAK)
37+
#else
3338
#define PLAYER_VERSION TO_STRING(PLAYER_MAJOR) "." TO_STRING(PLAYER_MINOR) "." TO_STRING(PLAYER_PATCH)
39+
#endif
3440

3541
/**
3642
* Version written to the easyrpg_data.version field in savegames.
3743
* Increment the last digit (0) only when having a good reason.
3844
*/
39-
#define PLAYER_SAVEGAME_VERSION (PLAYER_MAJOR * 1000 + PLAYER_MINOR * 100 + PLAYER_PATCH * 10 + 0)
45+
#define PLAYER_SAVEGAME_VERSION (PLAYER_MAJOR * 1000 + PLAYER_MINOR * 100 + PLAYER_PATCH * 10 + 1)
4046

4147
#endif /* EP_VERSION_H */

0 commit comments

Comments
 (0)