diff options
-rw-r--r-- | ChangeLog | 15 | ||||
-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, 24 insertions, 9 deletions
@@ -1,3 +1,18 @@ +2015-09-12 New release 1.5.9.12 +fix: closing mail edit window. +fix: buttons position in npc dialog with visible avatar and input field. +add: received packet name in debug log. +add: inhirit attribute in items.xml. +add: manamarket bot integration for support /sendmail command. +add: /sendmail for quick messages (hercules). +add: badges for shop, away, inactive modes. +add: packet SMSG_MAP_MASK (tmwa). +add: option for creting screenshots on complete trade. +add: by default init all possible quests to 0. +add: driver AMD HD 15.x to ignore list. +add: read packet version from server (hercules). +add: named items (hercules). + 2015-08-29 New release 1.5.8.29 add: support for item colors (hercules) add: separate item icon palette. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.5.8.29 Date: 2015-08-29 + Version: 1.5.9.12 Date: 2015-09-12 Development team: - See AUTHORS file for a list @@ -2,7 +2,7 @@ ![The Mana World logo](data/icons/manaplus.png) -Version: 1.5.8.29 Date: 2015-08-29 +Version: 1.5.9.12 Date: 2015-09-12 ### Development team: - See [AUTHORS](AUTHORS) file for a list diff --git a/README.txt b/README.txt index c3989716d..5f9dca767 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.5.8.29 Date: 2015-08-29
+ Version: 1.5.9.12 Date: 2015-09-12
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 9ebbf391f..c600bab61 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.8.29" \ + -DPRODUCT_VERSION="1.5.9.12" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packtmw b/build/packtmw index a151169c0..2c9bdd884 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.8.29" \ + -DPRODUCT_VERSION="1.5.9.12" \ -DEXESUFFIX=/src \ -DUPX=true \ tmw.nsi diff --git a/build/packwin b/build/packwin index 4fa460b58..35f6d48b6 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.8.29" \ + -DPRODUCT_VERSION="1.5.9.12" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index d1bf4cd8a..e10a43d2a 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.5.8.29], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.5.9.12], [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 8fb8c8a0e..eb67ac1bc 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.8.29" -#define CHECK_VERSION "01.05.08.29" +#define SMALL_VERSION "1.5.9.12" +#define CHECK_VERSION "01.05.09.12" #ifdef HAVE_CONFIG_H #include "../config.h" |