summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-12-08 19:41:07 +0300
committerAndrei Karas <akaras@inbox.ru>2018-12-08 19:41:54 +0300
commit6d26efcbd7e4c60dd56a0309c624a2e6622b7886 (patch)
treec98b46982e14bce4cd3868029e802d1ac7c8fb57
parent10de12ec68ad90a68994a679af9d5158185e772d (diff)
downloadplus-6d26efcbd7e4c60dd56a0309c624a2e6622b7886.tar.gz
plus-6d26efcbd7e4c60dd56a0309c624a2e6622b7886.tar.bz2
plus-6d26efcbd7e4c60dd56a0309c624a2e6622b7886.tar.xz
plus-6d26efcbd7e4c60dd56a0309c624a2e6622b7886.zip
Change version to 1.8.12.8.
-rw-r--r--ChangeLog13
-rw-r--r--README2
-rw-r--r--README.md2
-rw-r--r--README.txt2
-rwxr-xr-xbuild/packevol2
-rwxr-xr-xbuild/packtmw2
-rwxr-xr-xbuild/packwin2
-rwxr-xr-xconfigure.ac2
-rw-r--r--src/main.h4
9 files changed, 22 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index b3cdf228f..651cbfeea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/README b/README
index 8a2966f73..a0a907f10 100644
--- a/README
+++ b/README
@@ -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
diff --git a/README.md b/README.md
index dd8659ca3..5698a9464 100644
--- a/README.md
+++ b/README.md
@@ -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"