Skip to content

Commit f98f01c

Browse files
committed
Merge pull request #828 from fdelapena/0.4.1
0.4.1
2 parents 8f849cb + 9a8524e commit f98f01c

13 files changed

+21
-21
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ set(MAN_NAME easyrpg-player.6)
165165
find_program(A2X_EXECUTABLE NAMES a2x a2x.py)
166166
if(NOT A2X_EXECUTABLE STREQUAL "A2X_EXECUTABLE-NOTFOUND")
167167
add_custom_command(OUTPUT resources/${MAN_NAME}
168-
COMMAND ${A2X_EXECUTABLE} -a player_version="0.4.0" -f manpage -D ${CMAKE_CURRENT_BINARY_DIR}/resources ${CMAKE_CURRENT_SOURCE_DIR}/resources/${MAN_NAME}.adoc
168+
COMMAND ${A2X_EXECUTABLE} -a player_version="0.4.1" -f manpage -D ${CMAKE_CURRENT_BINARY_DIR}/resources ${CMAKE_CURRENT_SOURCE_DIR}/resources/${MAN_NAME}.adoc
169169
DEPENDS resources/${MAN_NAME}.adoc
170170
COMMENT "(Re-)building manpage ${MAN_NAME}"
171171
VERBATIM)
@@ -189,7 +189,7 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
189189
endif()
190190

191191
set(CPACK_PACKAGE_NAME ${PROJECT_NAME})
192-
set(CPACK_PACKAGE_VERSION "0.4.0")
192+
set(CPACK_PACKAGE_VERSION "0.4.1")
193193
set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/resources/player.ico")
194194
set(CPACK_RESOURCE_FILE_README ${CMAKE_CURRENT_SOURCE_DIR}/README)
195195

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.4.0.tar.xz
65+
tar xf easyrpg-player-0.4.1.tar.xz
6666

6767
2. Enter in the package directory with:
6868

69-
cd easyrpg-player-0.4.0
69+
cd easyrpg-player-0.4.1
7070

7171
3. Compile with:
7272

builds/android/jni/src/org_easyrpg_player_player_EasyRpgPlayerActivity.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EasyRPG Player
33
*
4-
* Copyright (c) 2013 EasyRPG Project. All rights reserved.
4+
* Copyright (c) 2016 EasyRPG Project. All rights reserved.
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a
77
* copy of this software and associated documentation files (the "Software"),

builds/android/src/org/easyrpg/player/game_browser/GameBrowserActivity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EasyRPG Player
33
*
4-
* Copyright (c) 2013 EasyRPG Project. All rights reserved.
4+
* Copyright (c) 2016 EasyRPG Project. All rights reserved.
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a
77
* copy of this software and associated documentation files (the "Software"),

builds/android/src/org/easyrpg/player/game_browser/IniEncodingReader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EasyRPG Player
33
*
4-
* Copyright (c) 2013 EasyRPG Project. All rights reserved.
4+
* Copyright (c) 2016 EasyRPG Project. All rights reserved.
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a
77
* copy of this software and associated documentation files (the "Software"),

builds/android/src/org/easyrpg/player/game_browser/LegacyGameBrowserActivity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EasyRPG Player
33
*
4-
* Copyright (c) 2013 EasyRPG Project. All rights reserved.
4+
* Copyright (c) 2016 EasyRPG Project. All rights reserved.
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a
77
* copy of this software and associated documentation files (the "Software"),

builds/android/src/org/easyrpg/player/player/AssetUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EasyRPG Player
33
*
4-
* Copyright (c) 2013 EasyRPG Project. All rights reserved.
4+
* Copyright (c) 2016 EasyRPG Project. All rights reserved.
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a
77
* copy of this software and associated documentation files (the "Software"),

builds/android/src/org/easyrpg/player/player/EasyRpgPlayerActivity.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EasyRPG Player
33
*
4-
* Copyright (c) 2013 EasyRPG Project. All rights reserved.
4+
* Copyright (c) 2016 EasyRPG Project. All rights reserved.
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a
77
* copy of this software and associated documentation files (the "Software"),
@@ -369,4 +369,4 @@ public void onRestart(){
369369
updateButtonsPosition();
370370
}
371371

372-
}
372+
}

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.4.0</version>
6-
<release_date>20151223000000</release_date>
5+
<version>0.4.1</version>
6+
<release_date>20160319000000</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.4.0],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easy-rpg.org/])
5+
AC_INIT([easyrpg-player],[0.4.1],[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 tar-ustar -Wall -Werror])

resources/easyrpg-player.6.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ https://github.com/EasyRPG/Player/issues
146146

147147

148148
== COPYRIGHT / AUTHORS
149-
EasyRPG Player is Copyright (C) 2007-2015 the EasyRPG authors, see file AUTHORS
149+
EasyRPG Player is Copyright (C) 2007-2016 the EasyRPG authors, see file AUTHORS
150150
for details.
151151

152152
This program is free software; you can redistribute it and/or modify it under

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.4.0</string>
34+
<string>0.4.1</string>
3535

3636
</dict>
3737
</plist>

resources/player.rc

+5-5
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,4,0,0
7-
PRODUCTVERSION 0,4,0,0
6+
FILEVERSION 0,4,1,0
7+
PRODUCTVERSION 0,4,1,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.4.0.0"
16+
VALUE "FileVersion", "0.4.1.0"
1717
VALUE "FileDescription", "EasyRPG Player"
1818
VALUE "InternalName", "easyrpg-player"
19-
VALUE "LegalCopyright", "2005-2015 EasyRPG Project"
19+
VALUE "LegalCopyright", "2005-2016 EasyRPG Project"
2020
VALUE "OriginalFilename", "Player.exe"
2121
VALUE "ProductName", "EasyRPG Player"
22-
VALUE "ProductVersion", "0.4.0.0"
22+
VALUE "ProductVersion", "0.4.1.0"
2323
}
2424
}
2525
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)