diff options
-rw-r--r-- | ChangeLog | 13 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | README.txt | 2 | ||||
-rwxr-xr-x | build/packevol | 2 | ||||
-rwxr-xr-x | build/packwin | 2 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rw-r--r-- | src/main.h | 4 |
7 files changed, 20 insertions, 7 deletions
@@ -1,3 +1,16 @@ +2013-03-17 New release 1.3.3.17 +fix: key repeat time calculation. +fix: incorrect map loading on server switching. +fix: sefault on exit with help switch. +fix: status icons draw posiiton. +add: chat command /cleangraphics to clean graphics cache. +add: chat command /cleanfonts to clean fonts cache. +add: chat command /execute to execute external programs. +add: in debug window field "target type". +add: different npc effects depend on quest statuses (evol only). +add: rate button in quit dialog in android version. +add: option to enable/disable weight notifications. + 2013-03-03 New release 1.3.3.3 fix: guild tab update in guild bot integration. fix: http links in windows. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.3.3.3 Date: 2013-03-03 + Version: 1.3.3.17 Date: 2013-03-17 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index e4d3e37fd..f5f1511a4 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.3.3.3 Date: 2013-03-03
+ Version: 1.3.3.17 Date: 2013-03-17
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 32a98dd1e..3f51128d3 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.3.3.3" \ + -DPRODUCT_VERSION="1.3.3.17" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packwin b/build/packwin index c72cd2b55..d5dcd1fad 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.3.3.3" \ + -DPRODUCT_VERSION="1.3.3.17" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index d6bb814aa..6d14b29dd 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.3.3.3], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.3.3.17], [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 be587338c..7ad6e6379 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.3.3.3" -#define CHECK_VERSION "01.03.03.03" +#define SMALL_VERSION "1.3.3.17" +#define CHECK_VERSION "01.03.03.17" #ifdef HAVE_CONFIG_H #include "../config.h" |