summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-03-26 14:16:24 +0300
committerAndrei Karas <akaras@inbox.ru>2016-03-26 14:16:24 +0300
commit53e0578322818441802a424ee6401971ee289508 (patch)
tree56462cbdd73a11936ef49d90e4ad3844ab5b68b3
parent16297ef32b8680dd219ea0063f7e83c3b41c6581 (diff)
downloadplus-1.6.3.26.tar.gz
plus-1.6.3.26.tar.bz2
plus-1.6.3.26.tar.xz
plus-1.6.3.26.zip
Change version to 1.6.3.26.v1.6.3.26
-rw-r--r--ChangeLog20
-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, 29 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index c3ce9f412..3b436a534 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,23 @@
+2016-03-26 New release 1.6.3.26
+fix: wrong moving to target by mouse attack.
+fix: not allow close warp dialog until target selected (hercule).
+fix: crash in skill cooldowns.
+fix: compilation with recent clang versions (clang bug).
+fix: remove duplicated weight fields from items popups.
+add: extend debug logging about wrong packet sizes.
+add: rename server type EAthena into Hercules.
+add: improve particles update performance.
+add: improve performance in getting random numbers.
+add: add family packets support (hercules).
+add: raw status effects attributes in status-effects.xml.
+add: deprecate block-id attribute in status-effects.xml.
+add: status effect names in debug window.
+add: show skill unit created and id in context menu.
+add: packet version selection in servers list (hercules).
+add: not allow moving from sit state (hercules without evol plugin).
+add: drop support for evol plugin versions 1 - 3.
+add: open chat window by double click.
+
2016-03-12 New release 1.6.3.12
fix: search command triggering for text like "??" or "?!"
fix: pet popup. now it show info only for own pet (hercules).
diff --git a/README b/README
index a74309e59..0d1147617 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
THE MANA PLUS CLIENT
===============
- Version: 1.6.3.12 Date: 2016-03-12
+ Version: 1.6.3.26 Date: 2016-03-26
Development team:
- See AUTHORS file for a list
diff --git a/README.md b/README.md
index ebbce73bd..20b3c3c13 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
![The Mana World logo](data/icons/manaplus.png)
-Version: 1.6.3.12 Date: 2016-03-12
+Version: 1.6.3.26 Date: 2016-03-26
### Development team:
- See [AUTHORS](AUTHORS) file for a list
diff --git a/README.txt b/README.txt
index 6a6bd5bd1..733514f9e 100644
--- a/README.txt
+++ b/README.txt
@@ -1,7 +1,7 @@
THE MANA PLUS CLIENT
===============
- Version: 1.6.3.12 Date: 2016-03-12
+ Version: 1.6.3.26 Date: 2016-03-26
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol
index 9da47d7f8..66a068c01 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.3.12" \
+ -DPRODUCT_VERSION="1.6.3.26" \
-DEXESUFFIX=/src \
-DUPX=true \
evol.nsi
diff --git a/build/packtmw b/build/packtmw
index 60f97adae..362da6933 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.3.12" \
+ -DPRODUCT_VERSION="1.6.3.26" \
-DEXESUFFIX=/src \
-DUPX=true \
tmw.nsi
diff --git a/build/packwin b/build/packwin
index 5a50c7779..da37da8af 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.3.12" \
+ -DPRODUCT_VERSION="1.6.3.26" \
-DEXESUFFIX=/src \
-DUPX=true \
setup.nsi
diff --git a/configure.ac b/configure.ac
index 22f9cded8..a220a2195 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ(2.60)
-AC_INIT([ManaPlus], [1.6.3.12], [akaras@inbox.ru], [manaplus])
+AC_INIT([ManaPlus], [1.6.3.26], [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 ec31b4f4b..26c58bcf6 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.3.12"
-#define CHECK_VERSION "01.06.03.12"
+#define SMALL_VERSION "1.6.3.26"
+#define CHECK_VERSION "01.06.03.26"
#ifdef HAVE_CONFIG_H
#include "../config.h"