diff options
-rw-r--r-- | ChangeLog | 17 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | README.txt | 2 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rwxr-xr-x | packwin | 2 | ||||
-rw-r--r-- | src/main.h | 4 |
6 files changed, 22 insertions, 7 deletions
@@ -1,5 +1,20 @@ +2011-10-02 New release 1.1.10.2 +ManaPlus: +fix: inactive state. +fix: hide inventory filter if window too small. +fix: mouse selection. +fix: speed in targeting monsters. +fix: move to target in attack range. +add: comment for spells/commands. +add: split keyboard keys to groups. +add: chat or other windows scrolling with dragging mouse. +add: limits for stop attack packet. +add: show current experience after max level (for tmw after 99 level). +add: untarget key. it not stop attack but remove selection from current target. +add: amount field in buy dialog. + 2011-09-18 New release 1.1.9.18 -Manaplus: +ManaPlus: fix: restore windows visible state after restart. fix: players sorting in relation and party tab. fix: configuration settings in first start. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.1.9.18 Date: 2011-09-18 + Version: 1.1.10.2 Date: 2011-10-02 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 1585d5e0f..758408520 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.1.9.18 Date: 2011-09-18
+ Version: 1.1.10.2 Date: 2011-10-02
Development team:
- See AUTHORS file for a list
diff --git a/configure.ac b/configure.ac index af9707059..c234fcbe5 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.1.9.18], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.1.10.2], [akaras@inbox.ru], [manaplus]) AM_INIT_AUTOMAKE([1.9]) AC_CONFIG_HEADERS([config.h:config.h.in]) AC_LANG_CPLUSPLUS @@ -5,7 +5,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../mana_win/libs/dll/ \ - -DPRODUCT_VERSION="1.1.9.18" \ + -DPRODUCT_VERSION="1.1.10.2" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/src/main.h b/src/main.h index 0348d2700..95a1b1698 100644 --- a/src/main.h +++ b/src/main.h @@ -85,8 +85,8 @@ //define DEBUG_ALPHA_CACHE 1 //define DEBUG_OPENGL_LEAKS 1 -#define SMALL_VERSION "1.1.9.18" -#define CHECK_VERSION "01.01.09.18" +#define SMALL_VERSION "1.1.10.2" +#define CHECK_VERSION "01.01.10.02" #define PACKAGE_EXTENDED_VERSION "ManaPlus (" PACKAGE_OS \ |