diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-13 14:16:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-13 14:24:31 +0300 |
commit | 94daf7aa79e61eb97a7f172c32d4738f5aaa05d1 (patch) | |
tree | b5271b6ecb9a8853aa7de2902cef9cbbdafa8cd4 | |
parent | 8835f4c82063520ad657439334bce29009fbbd6c (diff) | |
download | plus-94daf7aa79e61eb97a7f172c32d4738f5aaa05d1.tar.gz plus-94daf7aa79e61eb97a7f172c32d4738f5aaa05d1.tar.bz2 plus-94daf7aa79e61eb97a7f172c32d4738f5aaa05d1.tar.xz plus-94daf7aa79e61eb97a7f172c32d4738f5aaa05d1.zip |
Change version to 1.6.2.13.v1.6.2.13
-rw-r--r-- | ChangeLog | 20 | ||||
-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, 29 insertions, 9 deletions
@@ -1,3 +1,23 @@ +2016-02-13 New release 1.6.2.13 +fix: working with updated hercules without evol plugin. +fix: possible crash with broken map. +fix: stop cast animation after post delay effect. +fix: attacking after skill casting. +fix: ignore fuzzy translations in custom translation parser. +fix: crash on exit with onscreen buttons. +fix: drawing keyboard icon. +add: show chat messages from hidden gms (tmwa) +add: improve trade spam filter. Now it add message about moved text. +add: option for enable/disable trade spam filter. +add: logging mapping between account id and nicsk. +add: logging last seen players time. +add: chat command for last seen players. +Command: /lastseen NICK +add: cutins animations support (hercules) +add: allow images in npc dialogs. +add: allow skill units selection and attack. +add: allow assign shortcut key actions to onscreen buttons. + 2016-01-30 New release 1.6.1.30 fix: not allow add equipped items into craft. fix: /who command (hercules) @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.6.1.30 Date: 2016-01-30 + Version: 1.6.2.13 Date: 2016-02-13 Development team: - See AUTHORS file for a list @@ -2,7 +2,7 @@ ![The Mana World logo](data/icons/manaplus.png) -Version: 1.6.1.30 Date: 2016-01-30 +Version: 1.6.2.13 Date: 2016-02-13 ### Development team: - See [AUTHORS](AUTHORS) file for a list diff --git a/README.txt b/README.txt index 9b60fe644..b259a7a10 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.6.1.30 Date: 2016-01-30
+ Version: 1.6.2.13 Date: 2016-02-13
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index adc23a50d..ad6cfab40 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.6.1.30" \ + -DPRODUCT_VERSION="1.6.2.13" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packtmw b/build/packtmw index 348347212..ddef236c4 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.6.1.30" \ + -DPRODUCT_VERSION="1.6.2.13" \ -DEXESUFFIX=/src \ -DUPX=true \ tmw.nsi diff --git a/build/packwin b/build/packwin index 8a4f75cff..cfdbd4252 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.6.1.30" \ + -DPRODUCT_VERSION="1.6.2.13" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index 56446973f..738dfaa70 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.6.1.30], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.6.2.13], [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 990e2518e..ec0ee6598 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.6.1.30" -#define CHECK_VERSION "01.06.01.30" +#define SMALL_VERSION "1.6.2.13" +#define CHECK_VERSION "01.06.02.13" #ifdef HAVE_CONFIG_H #include "../config.h" |