diff options
-rw-r--r-- | ChangeLog | 23 | ||||
-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, 31 insertions, 8 deletions
@@ -1,3 +1,26 @@ +2013-11-10 New release 1.3.11.10 +fix: crash with broken OpenGL functions. +fix: item amount in trade in selling into personal shop. +fix: char replacment for sender in whispers. +fix: char deletion. +fix: images in did you know dialog. +fix: motd show/hide option in "new" tmw server. +fix: edit dialog theming. +fix: renadomly wrong windows background in software renderer. +fix: storage between changing chars. +add: map layers mask support. +add: save outfits into config after each change. +add: initial porting to nacl. +add: temporaty background music given by server. (evol only). +add: dyecmd tool for content developers. +add: action "move forward". +add: improve slider draw speed. +add: option into features file to enable/disable follow. +add: improve libxml2 error logging. +add: configure option --without-internalsdlgfx to disable emdedded sdl2gfx (SDL2 only). +add: basic porting to nacl. +add: progress bar while loading in SDL2 on Android and nacl. + 2013-10-27 New release 1.3.10.27 fix: drawing complex gui in Android. fix: text fields on SDL2. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.3.10.27 Date: 2013-10-27 + Version: 1.3.11.10 Date: 2013-11-10 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 21b764f1b..70a7be94b 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.3.10.27 Date: 2013-10-27
+ Version: 1.3.1.11 Date: 2013-11-10
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 3d8a28e18..bdab3b50c 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.10.27" \ + -DPRODUCT_VERSION="1.3.11.10" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packtmw b/build/packtmw index 7c0fc0972..75810d10a 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.10.27" \ + -DPRODUCT_VERSION="1.3.11.10" \ -DEXESUFFIX=/src \ -DUPX=true \ tmw.nsi diff --git a/build/packwin b/build/packwin index 4b509b238..b5ef23737 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.10.27" \ + -DPRODUCT_VERSION="1.3.11.10" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index a52c94108..0c82da001 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.3.10.27], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.3.11.10], [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 7f5d05ae4..7bdcd2f25 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.10.27" -#define CHECK_VERSION "01.03.10.27" +#define SMALL_VERSION "1.3.11.10" +#define CHECK_VERSION "01.03.11.10" #ifdef HAVE_CONFIG_H #include "../config.h" |