Skip to content

Commit

Permalink
Change version to 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghabry committed Apr 29, 2023
1 parent 717fbad commit 0849920
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
cmake_minimum_required(VERSION 3.13...3.24 FATAL_ERROR)

project(EasyRPG_Player
VERSION 0.7
project(EasyRPG_Player VERSION 0.8
DESCRIPTION "Interpreter for RPG Maker 2000/2003 games"
HOMEPAGE_URL "https://easyrpg.org"
LANGUAGES CXX)
Expand Down
4 changes: 2 additions & 2 deletions builds/android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
# To use them simply prefix them with "ORG_GRADLE_PROJECT_", e.g. ORG_GRADLE_PROJECT_toolchainDirs

# Human readable version name
VERSION_NAME=0.7
VERSION_NAME=0.8

# Internal version number
# Must be increased before publishing a new APK
VERSION_CODE=8073
VERSION_CODE=8827

# Architectures to build for when developing (debug)
ABI_FILTERS_DEBUG=armeabi-v7a
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ AC_PREREQ([2.69])

# version magic
m4_define([ep_version_major], [0])
m4_define([ep_version_minor], [7])
m4_define([ep_version_minor], [8])
m4_define([ep_version_patch], [0])
m4_define([ep_version_tweak], [0])
m4_define([ep_version], [ep_version_major.ep_version_minor])
Expand Down
12 changes: 6 additions & 6 deletions docs/BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Building requirements:

Step-by-step instructions:

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

Expand All @@ -43,8 +43,8 @@ Building requirements:

Step-by-step instructions:

tar xf easyrpg-player-0.7.tar.xz # unpack the tarball
cd easyrpg-player-0.7 # enter in the package directory
tar xf easyrpg-player-0.8.tar.xz # unpack the tarball
cd easyrpg-player-0.8 # enter in the package directory
cmake . -DCMAKE_BUILD_TYPE=Release # configure project
cmake --build . # compile the executable
sudo cmake --build . --target install # install system-wide
Expand Down Expand Up @@ -78,8 +78,8 @@ Building requirements:

Step-by-step instructions:

tar xf easyrpg-player-0.7.tar.xz # unpack the tarball
cd easyrpg-player-0.7/builds/android # enter in the android directory
tar xf easyrpg-player-0.8.tar.xz # unpack the tarball
cd easyrpg-player-0.8/builds/android # enter in the android directory
./gradlew -PtoolchainDirs="DIR1;DIR2" assembleRelease # create the APK

Replace ``DIR1`` etc. with the path to the player dependencies. You can use
Expand Down
2 changes: 1 addition & 1 deletion src/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

// Set by release-helper.sh
#define EP_VERSION_MAJOR 0
#define EP_VERSION_MINOR 7
#define EP_VERSION_MINOR 8
#define EP_VERSION_PATCH 0
#define EP_VERSION_TWEAK 0

Expand Down

0 comments on commit 0849920

Please sign in to comment.