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 @@ +2012-06-24 New release 1.2.6.24 +fix: scrolling big text in texfields. +fix: npc selection by mouse. +fix: animated tiles animation speed. +add: profiler to manaplus for windows. +add: improved perfomance in manaplus for windows. +add: double click support to storage and inventory. +add: help seach commands (command ?text). +Example: ?download +add: help pages updated. +add: delayed image load for OpenGL modes. +add: delay to update image in software mode. + 2012-06-10 New release 1.2.6.10 fix: incorrect animation (hair bug). fix: keys conflict in login dialog. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.2.6.10 Date: 2012-06-10 + Version: 1.2.6.24 Date: 2012-06-24 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 1097bd936..e3f903662 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.2.6.10 Date: 2012-06-10
+ Version: 1.2.6.24 Date: 2012-06-24
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 91bde9423..500ffda82 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.2.6.10" \ + -DPRODUCT_VERSION="1.2.6.24" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packwin b/build/packwin index 1b671b7d6..205a15346 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.2.6.10" \ + -DPRODUCT_VERSION="1.2.6.24" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index e98d5ce9a..a68562cbb 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.2.6.10], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.2.6.24], [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 ffad96d38..583079875 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.2.6.10" -#define CHECK_VERSION "01.02.06.10" +#define SMALL_VERSION "1.2.6.24" +#define CHECK_VERSION "01.02.06.24" #ifdef HAVE_CONFIG_H #include "../config.h" |