Skip to content

Commit 2b909be

Browse files
authored
Merge pull request #3389 from Ghabry/release/0.8.1
Release 0.8.1 "Stun"
2 parents 1204a58 + a91d80d commit 2b909be

File tree

7 files changed

+132
-17
lines changed

7 files changed

+132
-17
lines changed

Diff for: CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.16...3.31 FATAL_ERROR)
22

3-
project(EasyRPG_Player VERSION 0.8
3+
project(EasyRPG_Player VERSION 0.8.1
44
DESCRIPTION "Interpreter for RPG Maker 2000/2003 games"
55
HOMEPAGE_URL "https://easyrpg.org"
66
LANGUAGES CXX)
@@ -920,7 +920,7 @@ if(PLAYER_BUILD_LIBLCF)
920920
target_link_libraries(${PROJECT_NAME} lcf)
921921
else()
922922
# Use system package
923-
player_find_package(NAME liblcf VERSION 0.8
923+
player_find_package(NAME liblcf VERSION 0.8.1
924924
TARGET liblcf::liblcf
925925
REQUIRED)
926926
endif()

Diff for: builds/android/gradle.properties

+2-2
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
6+
VERSION_NAME=0.8.1
77

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

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

Diff for: configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ AC_PREREQ([2.69])
66
# version magic
77
m4_define([ep_version_major], [0])
88
m4_define([ep_version_minor], [8])
9-
m4_define([ep_version_patch], [0])
9+
m4_define([ep_version_patch], [1])
1010
m4_define([ep_version_tweak], [0])
1111
m4_define([ep_version], [ep_version_major.ep_version_minor])
1212
m4_append([ep_version], m4_if(ep_version_tweak, 0,
@@ -68,7 +68,7 @@ AC_DEFUN([EP_PKG_CHECK],[ dnl VARIABLE-PREFIX, MODULES, [DESCRIPTION], [DEFAULT=
6868
])
6969
])
7070

71-
PKG_CHECK_MODULES([LCF],[liblcf >= 0.8])
71+
PKG_CHECK_MODULES([LCF],[liblcf >= 0.8.1])
7272
PKG_CHECK_MODULES([PIXMAN],[pixman-1])
7373
PKG_CHECK_MODULES([ZLIB],[zlib])
7474
PKG_CHECK_MODULES([PNG],[libpng])

Diff for: docs/AUTHORS.md

+26-2
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,44 @@ EasyRPG Player authors
44
* Alberto Leon Meaños (albeleon)
55
* Alejandro Marzini (vgvgf)
66
* Alessio Tosto (Rinnegatamante)
7+
* BSzili
78
* Carsten Teibes (carstene1ns)
89
* Christian Breitwieser (ChrisBreiti)
10+
* DBLobster
11+
* Desdaemon
912
* Diego Pedraza (zegeri)
10-
* Erich Newey (enewey)
13+
* Dino Suvalic (MakoInfused)
1114
* Dmytro Kushnariov (rohkea)
15+
* Dr.XGB (drxgb)
16+
* Ellie (ell1e on GitHub and Codeberg.org)
17+
* Enzo "EN.I" Barbaguelatta (elsemieni)
18+
* Erich Newey (enewey)
19+
* Florian Ignaz "Spatzenfärber" Eßl (florianessl)
1220
* Francisco de la Peña (fdelapena)
1321
* Gabriel Kind (Ghabry)
22+
* gameblabla
1423
* Glynn Clements (glynnc)
24+
* Johann Schopplich (johannschopplich)
25+
* Jorge "Maker" Feitosa (JorgeMaker8000)
1526
* Khelifi Mehdi (BlisterB)
27+
* lumiscosity
28+
* lychees
29+
* MackValentine
1630
* Mariano Javier Suligoy (MarianoGNU)
17-
* Matthew Fioravante (fmatthew5876)
31+
* Masanori Kakura (kakurasan)
32+
* Matthew Fioravante (mateofio)
33+
* Mauro Junior (jetrotal)
34+
* MikuChan03
1835
* Patrick Müssig (Tondorian)
1936
* Paulo "Zhek" Vizcaino (paulo_v)
37+
* Primekick
38+
* rikku
2039
* rueter37
2140
* scurest
2241
* Shin-NiL
42+
* sorlok
43+
* t20kdc (20kdc)
2344
* Takeshi Watanabe (takecheeze)
45+
* ToolMan2k
46+
* Tora (aidatorajiro)
47+
* Tyrone Trevorrow (tyrone-sudeium)

Diff for: docs/BUILDING.md

+8-8
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.tar.xz # unpack the tarball
22-
cd easyrpg-player-0.8 # enter in the package directory
23-
./configure # find libraries, set options
24-
make # compile the executable
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
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.tar.xz # unpack the tarball
47-
cd easyrpg-player-0.8 # enter in the package directory
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
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.tar.xz # unpack the tarball
82-
cd easyrpg-player-0.8/builds/android # enter in the android directory
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
8383
./gradlew -PtoolchainDirs="DIR1;DIR2" assembleRelease # create the APK
8484

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

Diff for: docs/TRANSLATORS.md

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# EasyRPG Player translators
2+
3+
## Catalan
4+
5+
* Francisco de la Peña (fdelapena)
6+
7+
## Chinese (Simplified Han script)
8+
9+
* hhhhczh
10+
* Jesse5800
11+
* XWX1
12+
13+
## Chinese (Traditional Han script)
14+
15+
* Jesse5800
16+
* kisaragi-hiu
17+
18+
## Czech
19+
20+
* Sadver
21+
22+
## Dutch
23+
24+
* lemtom
25+
26+
## French
27+
28+
* Carbonara (Mimigris)
29+
* youli
30+
31+
## German
32+
33+
* Carsten Teibes (carstene1ns)
34+
* Gabriel Kind (Ghabry)
35+
36+
## Hungarian
37+
38+
* vargaviktor
39+
40+
## Indonesian
41+
42+
* Azhar241
43+
44+
## Italian
45+
46+
* Michele "mokodeoz" Gentile
47+
* Pit
48+
49+
## Japanese
50+
51+
* baya8
52+
* otya
53+
54+
## Korean
55+
56+
* BinRecycle
57+
58+
## Lithuanian
59+
60+
* AidasKar15
61+
62+
## Malay
63+
64+
* WavierFil5731
65+
66+
## Polish
67+
68+
* lumiscosity
69+
* The_godbanned
70+
* Primekick
71+
72+
## Portuguese
73+
74+
* Daniel Paim de Mattos (danzpaim)
75+
* pissolato
76+
77+
## Portuguese (Brazil)
78+
79+
* crazep
80+
* Callback
81+
* Daniel Paim de Mattos (danzpaim)
82+
* krascovict
83+
84+
## Spanish
85+
86+
* DRAKEN4516
87+
* Francisco de la Peña (fdelapena)
88+
89+
## Turkish
90+
91+
* inserthome1029

Diff for: src/version.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
// Set by release-helper.sh
2929
#define EP_VERSION_MAJOR 0
3030
#define EP_VERSION_MINOR 8
31-
#define EP_VERSION_PATCH 0
31+
#define EP_VERSION_PATCH 1
3232
#define EP_VERSION_TWEAK 0
3333

3434
// concatenate short version string

0 commit comments

Comments
 (0)