Skip to content

Commit 11e0ad9

Browse files
committed
Release 0.8.1.1 (Stun Patch 1)
1 parent 780739f commit 11e0ad9

File tree

6 files changed

+23
-13
lines changed

6 files changed

+23
-13
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.18...3.31 FATAL_ERROR)
22

3-
project(EasyRPG_Player VERSION 0.8.1
3+
project(EasyRPG_Player VERSION 0.8.1.1
44
DESCRIPTION "Interpreter for RPG Maker 2000/2003 games"
55
HOMEPAGE_URL "https://easyrpg.org"
66
LANGUAGES CXX)

builds/android/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
# To use them simply prefix them with "ORG_GRADLE_PROJECT_", e.g. ORG_GRADLE_PROJECT_toolchainDirs
44

55
# Human readable version name
6-
VERSION_NAME=0.8.1
6+
VERSION_NAME=0.8.1.1
77

88
# Internal version number
99
# Must be increased before publishing a new APK
10-
VERSION_CODE=9699
10+
VERSION_CODE=9778
1111

1212
# Architectures to build for when developing (debug)
1313
ABI_FILTERS_DEBUG=arm64-v8a

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ AC_PREREQ([2.69])
77
m4_define([ep_version_major], [0])
88
m4_define([ep_version_minor], [8])
99
m4_define([ep_version_patch], [1])
10-
m4_define([ep_version_tweak], [0])
10+
m4_define([ep_version_tweak], [1])
1111
m4_define([ep_version], [ep_version_major.ep_version_minor])
1212
m4_append([ep_version], m4_if(ep_version_tweak, 0,
1313
m4_if(ep_version_patch, 0,, [.ep_version_patch]),

docs/BUILDING.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ Building requirements:
1818

1919
Step-by-step instructions:
2020

21-
tar xf easyrpg-player-0.8.1.tar.xz # unpack the tarball
22-
cd easyrpg-player-0.8.1 # enter in the package directory
23-
./configure # find libraries, set options
24-
make # compile the executable
21+
tar xf easyrpg-player-0.8.1.1.tar.xz # unpack the tarball
22+
cd easyrpg-player-0.8.1.1 # enter in the package directory
23+
./configure # find libraries, set options
24+
make # compile the executable
2525

2626
Additional building requirements when using the source tree (git):
2727

@@ -43,8 +43,8 @@ Building requirements:
4343

4444
Step-by-step instructions:
4545

46-
tar xf easyrpg-player-0.8.1.tar.xz # unpack the tarball
47-
cd easyrpg-player-0.8.1 # enter in the package directory
46+
tar xf easyrpg-player-0.8.1.1.tar.xz # unpack the tarball
47+
cd easyrpg-player-0.8.1.1 # enter in the package directory
4848
cmake . -DCMAKE_BUILD_TYPE=Release # configure project
4949
cmake --build . # compile the executable
5050
sudo cmake --build . --target install # install system-wide
@@ -78,8 +78,8 @@ Building requirements:
7878

7979
Step-by-step instructions:
8080

81-
tar xf easyrpg-player-0.8.1.tar.xz # unpack the tarball
82-
cd easyrpg-player-0.8.1/builds/android # enter in the android directory
81+
tar xf easyrpg-player-0.8.1.1.tar.xz # unpack the tarball
82+
cd easyrpg-player-0.8.1.1/builds/android # enter in the android directory
8383
./gradlew -PtoolchainDirs="DIR1;DIR2" assembleRelease # create the APK
8484

8585
Replace ``DIR1`` etc. with the path to the player dependencies. You can use

resources/unix/easyrpg-player.metainfo.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,16 @@
6767
</content_rating>
6868

6969
<releases>
70+
<release version="0.8.1.1" date="2025-06-01">
71+
<description>
72+
<p>
73+
"Stun - Patch 1"
74+
</p>
75+
<p>
76+
https://blog.easyrpg.org/2025/06/easyrpg-player-0-8-1-1-stun-patch-1/
77+
</p>
78+
</description>
79+
</release>
7080
<release version="0.8.1" date="2025-04-07">
7181
<description>
7282
<p>

src/version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define EP_VERSION_MAJOR 0
3030
#define EP_VERSION_MINOR 8
3131
#define EP_VERSION_PATCH 1
32-
#define EP_VERSION_TWEAK 0
32+
#define EP_VERSION_TWEAK 1
3333

3434
// concatenate short version string
3535
#define _VER1 TO_STRING(EP_VERSION_MAJOR) "." TO_STRING(EP_VERSION_MINOR)

0 commit comments

Comments
 (0)