diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-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, 20 insertions, 8 deletions
@@ -1,3 +1,15 @@ +2014-01-04 New release 1.4.1.4 +fix: draw background for very small objects. +fix: sound event selection. +fix: split utf8 strings in npc dialog menu. +fix: being popups height. +fix: over head text draw order. +fix: configs saving while switching characters. +add: extend progress bar theming. +add: client side pets support. +add: improve performance in renderers. +add: basic config auto backups. + 2013-12-22 New release 1.3.12.22 fix: bot checker window in some themes. fix: tabbed area resizing. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.3.12.22 Date: 2013-12-22 + Version: 1.4.1.4 Date: 2014-01-04 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 7dd6008bf..bdd4ead08 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.3.12.22 Date: 2013-12-22
+ Version: 1.4.1.4 Date: 2014-01-04
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 0d32a1201..8e3014c65 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.3.12.22" \ + -DPRODUCT_VERSION="1.4.1.4" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packtmw b/build/packtmw index 8a1933aa8..e25bc4f4d 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.3.12.22" \ + -DPRODUCT_VERSION="1.4.1.4" \ -DEXESUFFIX=/src \ -DUPX=true \ tmw.nsi diff --git a/build/packwin b/build/packwin index aecc80742..9b30a9576 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.3.12.22" \ + -DPRODUCT_VERSION="1.4.1.4" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index 326f40465..9738e3946 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.3.12.22], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.4.1.4], [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 433ba69b4..b88c8b795 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.3.12.22" -#define CHECK_VERSION "01.03.12.22" +#define SMALL_VERSION "1.4.1.4" +#define CHECK_VERSION "01.04.01.04" #ifdef HAVE_CONFIG_H #include "../config.h" |