diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-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, 21 insertions, 9 deletions
@@ -1,3 +1,15 @@ +2017-07-22 New release 1.7.7.22 +fix: memory leak if player not totally visible while moving. +fix: character select dialog size if slots more than two rows. +fix: show own group level if group hidden from public. +fix: show tinyxml2 in client name if it was used. +fix: possible crash on exit if compiled with SDL 2. +add: command line flag for validate client data. +add: show group name in being popups. +add: load group name, badge, commands, permissions from xml file. +add: mse lib with secure vector (for debug). +add: show gm commands based on allowed commands for local player. + 2017-07-08 New release 1.7.7.8 fix: flushing background logs. fix: stats in item popups. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.7.7.8 Date: 2017-07-08 + Version: 1.7.7.22 Date: 2017-07-22 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.7.7.8 Date: 2017-07-08 +Version: 1.7.7.22 Date: 2017-07-22 ### Build status diff --git a/README.txt b/README.txt index 9eed9b477..a770bd9a9 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.7.7.8 Date: 2017-07-08
+ Version: 1.7.7.22 Date: 2017-07-22
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 09a1887d5..fa6dbb415 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.7.7.8" \ + -DPRODUCT_VERSION="1.7.7.22" \ -DEXESUFFIX=/src \ -DUPX=true \ -DBITS=${BITS} \ diff --git a/build/packtmw b/build/packtmw index b99543ba0..94c0aeec9 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.7.7.8" \ + -DPRODUCT_VERSION="1.7.7.22" \ -DEXESUFFIX=/src \ -DUPX=true \ -DBITS=${BITS} \ diff --git a/build/packwin b/build/packwin index 5d10ba29c..bb75e14aa 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.7.7.8" \ + -DPRODUCT_VERSION="1.7.7.22" \ -DEXESUFFIX=/src \ -DUPX=true \ -DBITS=${BITS} \ diff --git a/configure.ac b/configure.ac index 8da4ee8d0..d2742dc63 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.7.7.8], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.7.7.22], [akaras@inbox.ru], [manaplus]) AM_INIT_AUTOMAKE([1.9]) AC_LANG_CPLUSPLUS diff --git a/src/main.h b/src/main.h index 10e8fd69d..726fa9d8f 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.7.7.8" -#define CHECK_VERSION "01.07.07.08" +#define SMALL_VERSION "1.7.7.22" +#define CHECK_VERSION "01.07.07.22" #ifdef HAVE_CONFIG_H #include "../config.h" |