diff options
-rw-r--r-- | ChangeLog | 22 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | README.txt | 2 | ||||
-rwxr-xr-x | build/packevol | 2 | ||||
-rwxr-xr-x | build/packtmw | 2 | ||||
-rwxr-xr-x | build/packwin | 2 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rw-r--r-- | src/main.h | 4 |
8 files changed, 30 insertions, 8 deletions
@@ -1,3 +1,25 @@ +2014-01-18 New release 1.4.1.18 +fix: npc font option. +fix: job bar showing in new installs. +fix: input actions before logging to game. +fix: icon under windows. +fix: block moving keys in buy/sell dialogs. +fix: logging in threads. +fix: reload background image if connecting to different servers. +fix: rainbow colors with utf8 chars and smiles. +fix: crash with external guichan in chat. +add: chinese locale and font support. +add: most client data configs splits/patching by other configs. +add: mods support. +add: in input fields for ctrl+left, ctrl+right. +add: update dejavu fonts. +add: multiply pets for one owner at same time. +add: autoclose npc dialog by moving keys if it almost closed. +add: show date time and server name in screenshot file names. +add: create screenshots before connecting to game. +add: allow edit screenshot path (not in windows). +add: change screenshot default path to pictures directory. + 2014-01-04 New release 1.4.1.4 fix: draw background for very small objects. fix: sound event selection. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.4.1.4 Date: 2014-01-04 + Version: 1.4.1.18 Date: 2014-01-18 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index bdd4ead08..71105e910 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.4.1.4 Date: 2014-01-04
+ Version: 1.4.1.18 Date: 2014-01-18
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 8e3014c65..3cabea37d 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.4.1.4" \ + -DPRODUCT_VERSION="1.4.1.18" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packtmw b/build/packtmw index e25bc4f4d..b6c6088b4 100755 --- a/build/packtmw +++ b/build/packtmw @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../libs/dll/ \ - -DPRODUCT_VERSION="1.4.1.4" \ + -DPRODUCT_VERSION="1.4.1.18" \ -DEXESUFFIX=/src \ -DUPX=true \ tmw.nsi diff --git a/build/packwin b/build/packwin index 9b30a9576..b91fdfac2 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.4.1.4" \ + -DPRODUCT_VERSION="1.4.1.18" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index 9738e3946..b44f12e33 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.4.1.4], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.4.1.18], [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 b88c8b795..a0fbf3c35 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.4.1.4" -#define CHECK_VERSION "01.04.01.04" +#define SMALL_VERSION "1.4.1.18" +#define CHECK_VERSION "01.04.01.18" #ifdef HAVE_CONFIG_H #include "../config.h" |