diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-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, 18 insertions, 9 deletions
@@ -1,3 +1,12 @@ +2015-08-01 New release 1.5.8.1 +fix: update tmw address in tmw detection code. +fix: not allow broken nicks. show messages from this nicks with warnings. +add: enable fast atlases creation (except NVIDIA and Mesa 10.6) +add: update xcode files (socapex) +add: option to yellow bar for targetting type (travolta) +add: calculate heal radius (travolta) +add: badges for battle teams, parties, guilds, gms and personal player. + 2015-07-18 New release 1.5.7.18 fix: moving with mouse on tiles with height more than zero. fix: crash if warp to map with heights with smaller size. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.5.7.18 Date: 2015-07-18 + Version: 1.5.8.1 Date: 2015-08-01 Development team: - See AUTHORS file for a list @@ -2,7 +2,7 @@ ![The Mana World logo](data/icons/manaplus.png) -Version: 1.5.7.18 Date: 2015-07-18 +Version: 1.5.8.1 Date: 2015-08-01 ### Development team: - See [AUTHORS](AUTHORS) file for a list diff --git a/README.txt b/README.txt index d58649121..fc82afef5 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.5.7.18 Date: 2015-07-18
+ Version: 1.5.8.1 Date: 2015-08-01
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 59e6cca7f..7fa9e20e7 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.5.7.18" \ + -DPRODUCT_VERSION="1.5.8.1" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packtmw b/build/packtmw index e9a5d02f5..8959f0215 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.5.7.18" \ + -DPRODUCT_VERSION="1.5.8.1" \ -DEXESUFFIX=/src \ -DUPX=true \ tmw.nsi diff --git a/build/packwin b/build/packwin index 9f39d2611..c2ee8298d 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.5.7.18" \ + -DPRODUCT_VERSION="1.5.8.1" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index 0c0dcf85c..c7fc55f2c 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.5.7.18], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.5.8.1], [akaras@inbox.ru], [manaplus]) AM_INIT_AUTOMAKE([1.9]) AC_CONFIG_HEADERS([config.h:config.h.in]) AC_LANG_CPLUSPLUS diff --git a/src/main.h b/src/main.h index 680acf5a8..799ac488e 100644 --- a/src/main.h +++ b/src/main.h @@ -45,8 +45,8 @@ * different interfaces, which have different implementations for each server. */ -#define SMALL_VERSION "1.5.7.18" -#define CHECK_VERSION "01.05.07.18" +#define SMALL_VERSION "1.5.8.1" +#define CHECK_VERSION "01.05.08.01" #ifdef HAVE_CONFIG_H #include "../config.h" |