diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-12-08 19:41:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-12-08 19:41:54 +0300 |
commit | 6d26efcbd7e4c60dd56a0309c624a2e6622b7886 (patch) | |
tree | c98b46982e14bce4cd3868029e802d1ac7c8fb57 | |
parent | 10de12ec68ad90a68994a679af9d5158185e772d (diff) | |
download | manaverse-6d26efcbd7e4c60dd56a0309c624a2e6622b7886.tar.gz manaverse-6d26efcbd7e4c60dd56a0309c624a2e6622b7886.tar.bz2 manaverse-6d26efcbd7e4c60dd56a0309c624a2e6622b7886.tar.xz manaverse-6d26efcbd7e4c60dd56a0309c624a2e6622b7886.zip |
Change version to 1.8.12.8.
-rw-r--r-- | ChangeLog | 13 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | README.txt | 2 | ||||
-rwxr-xr-x | build/packevol | 2 | ||||
-rwxr-xr-x | build/packtmw | 2 | ||||
-rwxr-xr-x | build/packwin | 2 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rw-r--r-- | src/main.h | 4 |
9 files changed, 22 insertions, 9 deletions
@@ -1,3 +1,16 @@ +2018-12-08 New release 1.8.12.8 +fix: dyecmd crash in A and S dye. +fix: out of bound access in dye code if run with AVX support. +fix: display stats with negative values. +fix: avoid shop spam in legacy server. +add: basic stat counters into debug window. +add: new hercules packets. +add: over weight flag from server side. +add: server side online list on legacy server. +change: protocol version changed to 25. +remove: support for evol plugin version 19 or older. +remove: some debug messages about cache usage. + 2018-09-01 New release 1.8.9.1 fix: visual issue with used tiles from empty atlases. fix: hiding deleted temporary skills. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.8.9.1 Date: 2018-09-01 + Version: 1.8.12.8 Date: 2018-12-08 Build status: Gitlab CI: https://gitlab.com/manaplus/manaplus/badges/master/build.svg @@ -2,7 +2,7 @@ ![ManaPlus logo](data/icons/manaplus.png) -Version: 1.8.9.1 Date: 2018-09-01 +Version: 1.8.12.8 Date: 2018-12-08 ### Build status diff --git a/README.txt b/README.txt index 2af06e4d3..49a863bc8 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.8.9.1 Date: 2018-09-01
+ Version: 1.8.12.8 Date: 2018-12-08
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index e30745234..556b301cc 100755 --- a/build/packevol +++ b/build/packevol @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../libs/dll/ \ - -DPRODUCT_VERSION="1.8.9.1" \ + -DPRODUCT_VERSION="1.8.12.8" \ -DEXESUFFIX=/src \ -DUPX=true \ -DBITS=${BITS} \ diff --git a/build/packtmw b/build/packtmw index db595db4b..fb747fdb1 100755 --- a/build/packtmw +++ b/build/packtmw @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../libs/dll/ \ - -DPRODUCT_VERSION="1.8.9.1" \ + -DPRODUCT_VERSION="1.8.12.8" \ -DEXESUFFIX=/src \ -DUPX=true \ -DBITS=${BITS} \ diff --git a/build/packwin b/build/packwin index fc345b45a..b8966f351 100755 --- a/build/packwin +++ b/build/packwin @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../libs/dll/ \ - -DPRODUCT_VERSION="1.8.9.1" \ + -DPRODUCT_VERSION="1.8.12.8" \ -DEXESUFFIX=/src \ -DUPX=true \ -DBITS=${BITS} \ diff --git a/configure.ac b/configure.ac index 6c07cfb0b..85515747d 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.8.9.1], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.8.12.8], [akaras@inbox.ru], [manaplus]) AM_INIT_AUTOMAKE([1.9]) AC_LANG_CPLUSPLUS diff --git a/src/main.h b/src/main.h index 59b34c174..8908d870d 100644 --- a/src/main.h +++ b/src/main.h @@ -40,8 +40,8 @@ * by the map, interleaved with the tiles in the fringe layer. */ -#define SMALL_VERSION "1.8.9.1" -#define CHECK_VERSION "01.08.09.01" +#define SMALL_VERSION "1.8.12.8" +#define CHECK_VERSION "01.08.12.08" #ifdef HAVE_CONFIG_H #include "../config.h" |