diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-08-31 15:42:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-08-31 15:42:52 +0300 |
commit | 36e7d0706fe0abb6247d2a56c7f82ef7714ea61d (patch) | |
tree | 94d63feff8461921e55d69752d01bea1c939c629 | |
parent | d782ce8e15542a5a6e33341a29fee8ed36a08c71 (diff) | |
download | plus-36e7d0706fe0abb6247d2a56c7f82ef7714ea61d.tar.gz plus-36e7d0706fe0abb6247d2a56c7f82ef7714ea61d.tar.bz2 plus-36e7d0706fe0abb6247d2a56c7f82ef7714ea61d.tar.xz plus-36e7d0706fe0abb6247d2a56c7f82ef7714ea61d.zip |
Change version to 1.3.9.1.
-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 @@ +2013-09-01 New release 1.3.9.1 +fix: S/a dye for big endian systems. +fix: some typos. +fix: different crashes if corrupted data files. +fix: compilation not from top directory. +add: improve software mode draw speed. +add: improve S/A dye speed. +add: target cursors animations. +add: SDL2 build mode. +add: show npc name in npc dialog caption. +add: open help window before logging into game. + 2013-08-18 New release 1.3.8.18 fix: money label position in status window. fix: shorted long key names. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.3.8.18 Date: 2013-08-18 + Version: 1.3.9.1 Date: 2013-09-01 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 1b70fa9dd..55920afaf 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.3.8.18 Date: 2013-08-18
+ Version: 1.3.9.1 Date: 2013-09-01
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index c723ef5a2..f5d2c851c 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.8.18" \ + -DPRODUCT_VERSION="1.3.9.1" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packtmw b/build/packtmw index f84eb4f1a..1e4fe0cbf 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.8.18" \ + -DPRODUCT_VERSION="1.3.9.1" \ -DEXESUFFIX=/src \ -DUPX=true \ tmw.nsi diff --git a/build/packwin b/build/packwin index d49a0d144..c61c09404 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.8.18" \ + -DPRODUCT_VERSION="1.3.9.1" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index e8f86e48e..56eca80c1 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.3.8.18], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.3.9.1], [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 d9bd8a107..32c8d4df0 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.8.18" -#define CHECK_VERSION "01.03.08.18" +#define SMALL_VERSION "1.3.9.1" +#define CHECK_VERSION "01.03.09.01" #ifdef HAVE_CONFIG_H #include "../config.h" |