diff options
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | README.md | 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 |
9 files changed, 20 insertions, 9 deletions
@@ -1,3 +1,14 @@ +2015-05-23 New release 1.5.5.23 +fix: possible crash in sell dialog. +fix: possible issue in texture atlases. +fix: crash on exit with joined room (hercules) +fix: chat room on rejoining (hercules) +fix: cmake build with new libs/compiler. +add: improve performance. +add: enable some server features (tmwa) +add: updated fonts. +add: impliment missing client to server guild packets (hercules) + 2015-05-09 New release 1.5.5.9 fix: compilation on non x86/amd64. fix: possible crash on exit with opened storage window. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.5.5.09 Date: 2015-05-09 + Version: 1.5.5.23 Date: 2015-05-23 Development team: - See AUTHORS file for a list @@ -2,7 +2,7 @@ ![The Mana World logo](data/icons/manaplus.png) -Version: 1.5.5.09 Date: 2015-05-09 +Version: 1.5.5.23 Date: 2015-05-23 ###Development team: - See [AUTHORS](AUTHORS) file for a list diff --git a/README.txt b/README.txt index 83f80ebce..5004f4239 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.5.5.09 Date: 2015-05-09
+ Version: 1.5.5.23 Date: 2015-05-23
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index e9be280bd..67982d2ef 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.5.5.9" \ + -DPRODUCT_VERSION="1.5.5.23" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packtmw b/build/packtmw index faddad1a8..292f1ce56 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.5.5.9" \ + -DPRODUCT_VERSION="1.5.5.23" \ -DEXESUFFIX=/src \ -DUPX=true \ tmw.nsi diff --git a/build/packwin b/build/packwin index e696badb2..61a22dcf6 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.5.5.9" \ + -DPRODUCT_VERSION="1.5.5.23" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index f7926e6c7..54fbcb292 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.5.5.9], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.5.5.23], [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 869aa1f84..2c397923d 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.5.5.9" -#define CHECK_VERSION "01.05.05.09" +#define SMALL_VERSION "1.5.5.23" +#define CHECK_VERSION "01.05.05.23" #ifdef HAVE_CONFIG_H #include "../config.h" |