diff options
-rw-r--r-- | ChangeLog | 29 | ||||
-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, 36 insertions, 7 deletions
@@ -1,3 +1,32 @@ +2013-02-17 New release 1.3.2.17 +fix: inventory sorting +fix: initial setup window resize issue. +fix: some windows size on small screens. +fix: onscreen buttons and positions. +fix: resize issue in online list. +fix: configuration for onscreen buttons 3 and 4. +fix: crash with particle effects. +add: browser support on android. +add: support for scrolling popup menus. +add: allow hide yellow bar and hide it by default. +add: unassign default key for "change move type". +add: google play url in update message for Android version. +add: onscreen buttons default size depend on resolution. +add: extend theming. +add: adjust on screen buttons positions and padding. +add: close buttons to some windows. +add: enable job support by default. +add: on Android by default hide chat color picker. +add: dont hide top right buttons on small screens. +add: browser support in android version. +add: close buttons to some windows. +add: enable job support by default. +add: improve font cache cleaning. +add: improve network code speed. +add: https links support. +add: extend theming. +add: improve speed. + 2013-02-03 New release 1.3.2.3 fix: crash on closing before entering into game. fix: sounds in broken quests (evol only) @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.3.2.3 Date: 2013-02-03 + Version: 1.3.2.17 Date: 2013-02-17 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 8f19a323a..a9fddd6ab 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.3.2.3 Date: 2013-02-03
+ Version: 1.3.2.17 Date: 2013-02-17
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index c04f44c4a..5a3ea365d 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.2.3" \ + -DPRODUCT_VERSION="1.3.2.17" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packwin b/build/packwin index 60f559e66..00f762365 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.2.3" \ + -DPRODUCT_VERSION="1.3.2.17" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index 8a9c06a12..a8d751530 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.3.2.3], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.3.2.17], [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 5560e729a..4f6044dd4 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.2.3" -#define CHECK_VERSION "01.03.02.03" +#define SMALL_VERSION "1.3.2.17" +#define CHECK_VERSION "01.03.02.17" #ifdef HAVE_CONFIG_H #include "../config.h" |