Skip to content

Commit c1a3e83

Browse files
committed
Version 0.2.2
1 parent 72c0406 commit c1a3e83

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
170170
endif()
171171

172172
set(CPACK_PACKAGE_NAME ${PROJECT_NAME})
173-
set(CPACK_PACKAGE_VERSION "0.2.1")
173+
set(CPACK_PACKAGE_VERSION "0.2.2")
174174
set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/resources/player.ico")
175175
set(CPACK_RESOURCE_FILE_README ${CMAKE_CURRENT_SOURCE_DIR}/README)
176176

README

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ Building
6262

6363
1. Unpack the tarball with:
6464

65-
tar xf easyrpg-player-0.2.1.tar.xz
65+
tar xf easyrpg-player-0.2.2.tar.xz
6666

6767
2. Enter in the package directory with:
6868

69-
cd easyrpg-player-0.2.1
69+
cd easyrpg-player-0.2.2
7070

7171
3. Compile with:
7272

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.2.1</version>
6-
<release_date>20140701000000</release_date>
5+
<version>0.2.2</version>
6+
<release_date>20141127000000</release_date>
77
<short_description>RPG Maker 2000/2003 player</short_description>
88
<long_description>EasyRPG is a Role Playing Game interpreter for playing games created by the RPG Maker 2000/2003.
99

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.2.1],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easy-rpg.org/])
5+
AC_INIT([easyrpg-player],[0.2.2],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easy-rpg.org/])
66

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

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.2.1</string>
34+
<string>0.2.2</string>
3535

3636
</dict>
3737
</plist>

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,2,1,0
7-
PRODUCTVERSION 0,2,1,0
6+
FILEVERSION 0,2,2,0
7+
PRODUCTVERSION 0,2,2,0
88
FILETYPE 0x00000001L
99
{
1010
BLOCK "StringFileInfo"
@@ -13,13 +13,13 @@ FILETYPE 0x00000001L
1313
{
1414
VALUE "Comments", "https://easy-rpg.org/"
1515
VALUE "CompanyName", "EasyRPG Project"
16-
VALUE "FileVersion", "0.2.1.0"
16+
VALUE "FileVersion", "0.2.2.0"
1717
VALUE "FileDescription", "EasyRPG Player"
1818
VALUE "InternalName", "easyrpg-player"
1919
VALUE "LegalCopyright", "2005-2014 EasyRPG Project"
2020
VALUE "OriginalFilename", "Player.exe"
2121
VALUE "ProductName", "EasyRPG Player"
22-
VALUE "ProductVersion", "0.2.1.0"
22+
VALUE "ProductVersion", "0.2.2.0"
2323
}
2424
}
2525
BLOCK "VarFileInfo"

src/options.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595

9696
/** Version of player. Should be redefined by build system. */
9797
#ifndef PLAYER_VERSION
98-
# define PLAYER_VERSION "0.2.1"
98+
# define PLAYER_VERSION "0.2.2"
9999
#endif
100100

101101
#endif

0 commit comments

Comments
 (0)