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/packtmw | 2 | ||||
-rwxr-xr-x | build/packwin | 2 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rw-r--r-- | src/main.h | 4 |
8 files changed, 23 insertions, 8 deletions
@@ -1,3 +1,18 @@ +2014-08-02 New release 1.4.8.2 +fix: block char moving if any input fields selected. +fix: possible crash in reset windows button. +fix: hide all windows action (H). +fix: follow parent particle attribute. +fix: different issues in all translation languages. +fix: player position based on tile heights if player not moving. +fix: draw order if tiles height not zero. +add: basic inter process communication. +add: back yellow bar switch mode (left shift + key). +add: in map remap db add support for patches and includes. +add: missing windows into reset to default button. +add: sv_SE translation and add it to languages list. +add: debug commands for spawn locale clones (/debugSpawn). + 2014-07-19 New release 1.4.7.19 fix: possible memory leak in texture compression. fix: OpenGL renderers fallback. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.4.7.19 Date: 2014-07-19 + Version: 1.4.8.2 Date: 2014-08-02 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 354675388..adeb39100 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.4.7.19 Date: 2014-07-19
+ Version: 1.4.8.2 Date: 2014-08-02
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 8d185e662..978deab65 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.7.19" \ + -DPRODUCT_VERSION="1.4.8.2" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packtmw b/build/packtmw index 808c50eb8..200d8d7f4 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.7.19" \ + -DPRODUCT_VERSION="1.4.8.2" \ -DEXESUFFIX=/src \ -DUPX=true \ tmw.nsi diff --git a/build/packwin b/build/packwin index 01157cb3b..895343ff1 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.7.19" \ + -DPRODUCT_VERSION="1.4.8.2" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index 3a6600331..81c2ca481 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.4.7.19], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.4.8.2], [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 eb00c9d2b..9527d03bf 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.7.19" -#define CHECK_VERSION "01.04.07.19" +#define SMALL_VERSION "1.4.8.2" +#define CHECK_VERSION "01.04.08.02" #ifdef HAVE_CONFIG_H #include "../config.h" |