diff options
-rw-r--r-- | ChangeLog | 16 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | README.txt | 2 | ||||
-rwxr-xr-x | build/packwin | 2 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rw-r--r-- | src/main.h | 4 |
6 files changed, 22 insertions, 6 deletions
@@ -1,3 +1,19 @@ +2011-12-11 New release 1.1.12.11 +fix: draw damage part on hp bar. +fix: recursive directory creation on windows. +fix: text colors in wood theme. +add: polish translation (Derpella). +add: server side online list (evol only). +add: copy any line from chat to clipboard. +add: use two clipboard in xserver. +add: gm commands autocomplete for gms. +add: to combined menus floor items. +add: variables for replacment in chat messages. +<PLAYER> - target or nearest player nick. +<MONSTER> - target or nearest monster name. +<PEOPLE> - comma separated list of visible players (except self). +<PARTY> - all party members (except self). + 2011-11-27 New release 1.1.11.27 ManaPlus: fix: show enemy relation in online list. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.1.11.27 Date: 2011-11-27 + Version: 1.1.12.11 Date: 2011-12-11 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 2950b8e2a..c5251f9e4 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.1.11.27 Date: 2011-11-27
+ Version: 1.1.12.11 Date: 2011-12-11
Development team:
- See AUTHORS file for a list
diff --git a/build/packwin b/build/packwin index f81957f13..077104227 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.1.11.27" \ + -DPRODUCT_VERSION="1.1.12.11" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index a2f596cc6..bc6106248 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.1.11.27], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.1.12.11], [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 6f7c0980a..8d6b531fd 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.1.11.27" -#define CHECK_VERSION "01.01.11.27" +#define SMALL_VERSION "1.1.12.11" +#define CHECK_VERSION "01.01.12.11" #ifdef HAVE_CONFIG_H #include "../config.h" |