diff options
-rw-r--r-- | ChangeLog | 17 | ||||
-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, 24 insertions, 7 deletions
@@ -1,3 +1,20 @@ +2012-06-10 New release 1.2.6.10 +fix: incorrect animation (hair bug). +fix: keys conflict in login dialog. +fix: kill stats on levelup. +fix: stay animation in beings without dead animation. +add: player relations to whisper chat context menu. +add: per hair style own palete (evol). +add: sittop animation (evol). +add: ground top collision flag (evol). +add: hide botchecker button by default. +add: improve image loading in OpenGL renderers. +add: improve dye speed. +add: footer to help window. +add: per server news in help window. +add: use actual desktop dir for screenshots in linux. +add: to npc option to disallow select npc. + 2012-05-27 New release 1.2.5.27 fix: tips translations. fix: joystick repeat key presses. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.2.5.27 Date: 2012-05-27 + Version: 1.2.6.10 Date: 2012-06-10 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 302834f35..1097bd936 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.2.5.27 Date: 2012-05-27
+ Version: 1.2.6.10 Date: 2012-06-10
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 598f272e6..53ee258c2 100755 --- a/build/packevol +++ b/build/packevol @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../mana_win/libs/dll/ \ - -DPRODUCT_VERSION="1.2.5.27" \ + -DPRODUCT_VERSION="1.2.6.10" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packwin b/build/packwin index 98be9bddf..16d92a32c 100755 --- a/build/packwin +++ b/build/packwin @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../mana_win/libs/dll/ \ - -DPRODUCT_VERSION="1.2.5.27" \ + -DPRODUCT_VERSION="1.2.6.10" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index f92819b6e..e98d5ce9a 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.2.5.27], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.2.6.10], [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 6cdfd88c8..ffad96d38 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.5.27" -#define CHECK_VERSION "01.02.05.27" +#define SMALL_VERSION "1.2.6.10" +#define CHECK_VERSION "01.02.06.10" #ifdef HAVE_CONFIG_H #include "../config.h" |