From 94684299250617109f85c3f6765cd9b159dad72c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20de=20la=20Pe=C3=B1a?= Date: Wed, 23 Dec 2015 12:57:34 -0600 Subject: [PATCH] Version 0.4.0 --- CMakeLists.txt | 4 ++-- README | 4 ++-- builds/wii/meta.xml | 4 ++-- configure.ac | 2 +- resources/osx/Info.plist | 2 +- resources/player.rc | 8 ++++---- src/options.h | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b4bd9103a3..acd7c39e1a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -160,7 +160,7 @@ set(MAN_NAME easyrpg-player.6) find_program(A2X_EXECUTABLE NAMES a2x a2x.py) if(NOT A2X_EXECUTABLE STREQUAL "A2X_EXECUTABLE-NOTFOUND") add_custom_command(OUTPUT builds/${MAN_NAME} - COMMAND ${A2X_EXECUTABLE} -a player_version="0.3.2" -f manpage -D ${CMAKE_CURRENT_BINARY_DIR}/builds ${CMAKE_CURRENT_SOURCE_DIR}/builds/${MAN_NAME}.adoc + COMMAND ${A2X_EXECUTABLE} -a player_version="0.4.0" -f manpage -D ${CMAKE_CURRENT_BINARY_DIR}/builds ${CMAKE_CURRENT_SOURCE_DIR}/builds/${MAN_NAME}.adoc DEPENDS builds/${MAN_NAME}.adoc COMMENT "(Re-)building manpage ${MAN_NAME}" VERBATIM) @@ -197,7 +197,7 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") endif() set(CPACK_PACKAGE_NAME ${PROJECT_NAME}) -set(CPACK_PACKAGE_VERSION "0.3.2") +set(CPACK_PACKAGE_VERSION "0.4.0") set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/resources/player.ico") set(CPACK_RESOURCE_FILE_README ${CMAKE_CURRENT_SOURCE_DIR}/README) diff --git a/README b/README index 0a20266487..933d918641 100644 --- a/README +++ b/README @@ -62,11 +62,11 @@ Building 1. Unpack the tarball with: - tar xf easyrpg-player-0.3.2.tar.xz + tar xf easyrpg-player-0.4.0.tar.xz 2. Enter in the package directory with: - cd easyrpg-player-0.3.2 + cd easyrpg-player-0.4.0 3. Compile with: diff --git a/builds/wii/meta.xml b/builds/wii/meta.xml index b1aae7cac8..d4ce9f84a3 100644 --- a/builds/wii/meta.xml +++ b/builds/wii/meta.xml @@ -2,8 +2,8 @@ EasyRPG Player EasyRPG Team - 0.3.2 - 20150914000000 + 0.4.0 + 20151223000000 RPG Maker 2000/2003 player EasyRPG is a Role Playing Game interpreter for playing games created by the RPG Maker 2000/2003. diff --git a/configure.ac b/configure.ac index f400ed092b..97cc3aaa08 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([easyrpg-player],[0.3.2],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easy-rpg.org/]) +AC_INIT([easyrpg-player],[0.4.0],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easy-rpg.org/]) AC_CONFIG_AUX_DIR([builds/autoconf]) AM_INIT_AUTOMAKE([1.11.4 foreign subdir-objects -Wall -Werror]) diff --git a/resources/osx/Info.plist b/resources/osx/Info.plist index 71d23743da..0040bfd879 100644 --- a/resources/osx/Info.plist +++ b/resources/osx/Info.plist @@ -31,7 +31,7 @@ APPL CFBundleShortVersionString - 0.3.2 + 0.4.0 diff --git a/resources/player.rc b/resources/player.rc index 371f835dc1..e44597cfdc 100644 --- a/resources/player.rc +++ b/resources/player.rc @@ -3,8 +3,8 @@ 1 24 "player.xml" #endif 1 VERSIONINFO -FILEVERSION 0,3,2,0 -PRODUCTVERSION 0,3,2,0 +FILEVERSION 0,4,0,0 +PRODUCTVERSION 0,4,0,0 FILETYPE 0x00000001L { BLOCK "StringFileInfo" @@ -13,13 +13,13 @@ FILETYPE 0x00000001L { VALUE "Comments", "https://easy-rpg.org/" VALUE "CompanyName", "EasyRPG Project" - VALUE "FileVersion", "0.3.2.0" + VALUE "FileVersion", "0.4.0.0" VALUE "FileDescription", "EasyRPG Player" VALUE "InternalName", "easyrpg-player" VALUE "LegalCopyright", "2005-2015 EasyRPG Project" VALUE "OriginalFilename", "Player.exe" VALUE "ProductName", "EasyRPG Player" - VALUE "ProductVersion", "0.3.2.0" + VALUE "ProductVersion", "0.4.0.0" } } BLOCK "VarFileInfo" diff --git a/src/options.h b/src/options.h index 3a551281a9..ade5326511 100644 --- a/src/options.h +++ b/src/options.h @@ -95,7 +95,7 @@ /** Version of player. Should be redefined by build system. */ #ifndef PLAYER_VERSION -# define PLAYER_VERSION "0.3.2" +# define PLAYER_VERSION "0.4.0" #endif #endif