diff options
-rw-r--r-- | ChangeLog | 15 | ||||
-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, 22 insertions, 7 deletions
@@ -1,3 +1,18 @@ +2012-02-19 New release 1.2.2.19 +add: client data translations (items, etc). +add: increased max value for drop counter from 9 to 30. +add: chat command /setdrop N. to set drop counter from scripts. +add: hide map layers feature. +add: show gms with green color in online list (evol server). +add: relative position for floor items (item drops). +add: option to enable/disable grouping friends in online list. +add: enable chat logging by default. +add: set default max chat lines to 40. +add: update windows libs. +add: center game on screen in windows and osx. +add: race name to status and debug windows. +add: update liberation and mplus fonts. + 2012-02-05 New release 1.2.2.5 ManaPlus: fix: particle font in japan localisation. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.2.2.5 Date: 2012-02-05 + Version: 1.2.2.19 Date: 2012-02-19 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 4f4a397fc..8f99f0484 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.2.2.5 Date: 2012-02-05
+ Version: 1.2.2.19 Date: 2012-02-19
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 9059fdf58..7f89238ab 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.2.5" \ + -DPRODUCT_VERSION="1.2.2.19" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packwin b/build/packwin index 296039482..ab7087768 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.2.5" \ + -DPRODUCT_VERSION="1.2.2.19" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index 996ad3f3c..e1f2c55db 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.2.2.5], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.2.2.19], [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 fbc672939..abc152ed3 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.2.5" -#define CHECK_VERSION "01.02.02.05" +#define SMALL_VERSION "1.2.2.19" +#define CHECK_VERSION "01.02.02.19" #ifdef HAVE_CONFIG_H #include "../config.h" |