OpenTTD JGR: bump version

This commit is contained in:
Sergii Pylypenko
2021-03-08 22:22:26 +02:00
parent 3ceb3c73ff
commit f84b9c5406
6 changed files with 9 additions and 9 deletions

View File

@@ -7,10 +7,10 @@ AppName="OpenTTD JGR"
AppFullName=org.openttd.jgrpp
# Application version code (integer)
AppVersionCode=040211
AppVersionCode=040411
# Application user-visible version name (string)
AppVersionName="0.40.2"
AppVersionName="0.40.4"
# Specify path to download application data in zip archive in the form 'Description|URL|MirrorURL^Description2|URL2|MirrorURL2^...'
# If you'll start Description with '!' symbol it will be enabled by default, '!!' will also hide the entry from the menu, so it cannot be disabled
@@ -20,7 +20,7 @@ AppVersionName="0.40.2"
# You can specify Google Play expansion files in the form 'obb:main.12345' or 'obb:patch.12345' where 12345 is the app version for obb file
# You can use .zip.xz archives for better compression, but you need to add 'lzma' to CompiledLibraries
# Generate .zip.xz files like this: zip -0 -r data.zip your-data/* ; xz -8 data.zip
AppDataDownloadUrl="!!Data files|openttd-data-0.40.2-0.zip.xz^!!Config file|:.openttd/openttd.cfg:openttd-jgr-0.32.4.cfg^!!MIDI music support (18 Mb)|timidity.zip.xz^!!Internationalization files|icudt62l.zip.xz"
AppDataDownloadUrl="!!Data files|openttd-data-0.40.4-0.zip.xz^!!Config file|:.openttd/openttd.cfg:openttd-jgr-0.32.4.cfg^!!MIDI music support (18 Mb)|timidity.zip.xz^!!Internationalization files|icudt62l.zip.xz"
# Reset SDL config when updating application to the new version (y) / (n)
ResetSdlConfigForThisVersion=y

View File

@@ -1,6 +1,6 @@
#!/bin/sh
VER=0.40.2-0
VER=0.40.4-0
cd data
rm -f ../AndroidData/openttd-data-*.zip.xz ../AndroidData/openttd-data-*.zip

View File

@@ -1,5 +1,5 @@
#!/bin/sh
mkdir -p build-tools
[ -e build-tools/Makefile ] || cmake -DOPTION_TOOLS_ONLY=ON -B build-tools src || exit 1
[ -e build-tools/Makefile ] || cmake -DOPTION_TOOLS_ONLY=ON -B build-tools src
make -C build-tools -j8 VERBOSE=1 || exit 1

View File

@@ -17,12 +17,12 @@ cd bin
cp -f ../baseset/opntitle.dat opntitle.sav
if [ -z "$1" ]; then
../openttd -d 2 -m null -g opntitle.sav -r 854x480
../openttd -d 2 -m null -r 854x480 # -g opntitle.sav
elif [ -n "$2" ]; then
valgrind --track-fds=yes --log-file=../../valgrind.log --leak-check=full \
../openttd -d 0 -m null # -g opntitle.sav
else
#valgrind --track-fds=yes --log-file=valgrind.log --leak-check=full \
gdb -ex run --args \
../openttd -d 0 -m null -g opntitle.sav -r 854x480
../openttd -d 0 -m null -r 854x480 # -g opntitle.sav
fi