diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-07-23 16:13:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-23 16:13:23 +0300 |
commit | 43956a9dd9c4c00e839387c4c3e00674947880c9 (patch) | |
tree | 48d0be57c65249d24a0f1f51ea1e6745841356ae | |
parent | a74191bc53df482ce637ba585016105673add785 (diff) | |
download | plus-43956a9dd9c4c00e839387c4c3e00674947880c9.tar.gz plus-43956a9dd9c4c00e839387c4c3e00674947880c9.tar.bz2 plus-43956a9dd9c4c00e839387c4c3e00674947880c9.tar.xz plus-43956a9dd9c4c00e839387c4c3e00674947880c9.zip |
Change version to 1.1.7.24.
-rw-r--r-- | ChangeLog | 17 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | README.txt | 2 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rwxr-xr-x | packwin | 2 | ||||
-rw-r--r-- | src/main.h | 4 |
6 files changed, 23 insertions, 6 deletions
@@ -1,3 +1,20 @@ +2011-07-24 New release 1.1.7.24 +ManaPlus: +fix: compilation without opengl. +fix: crash with other players equipment window. +fix: improve speed. +fix: compilation in big endian systems. +fix: opengl configure flag for mac os. +fix: rectangle draw bug in some systems in software mode. +add: close popup menu by esc key. +add: keys for quick add items to trade +add: shortcut key to close current chat tab. +by default unassigned. +add: uninstall before install in windows installer. +add: multi user support in windows installer. +add: new update check url. +add: updated translations. + 2011-07-10 New release 1.1.7.10 ManaPlus: fix: char deletion @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.1.7.10 Date: 2011-07-10 + Version: 1.1.7.24 Date: 2011-07-24 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 6fda0e559..755587fda 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.1.7.10 Date: 2011-07-10
+ Version: 1.1.7.24 Date: 2011-07-24
Development team:
- See AUTHORS file for a list
diff --git a/configure.ac b/configure.ac index 1a90b4e54..1c5660d69 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.1.7.10], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.1.7.24], [akaras@inbox.ru], [manaplus]) AM_INIT_AUTOMAKE([1.9]) AC_CONFIG_HEADERS([config.h:config.h.in]) AC_LANG_CPLUSPLUS @@ -5,7 +5,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../mana_win/libs/dll/ \ - -DPRODUCT_VERSION="1.1.7.10" \ + -DPRODUCT_VERSION="1.1.7.24" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/src/main.h b/src/main.h index b6915ef77..38b64a367 100644 --- a/src/main.h +++ b/src/main.h @@ -91,8 +91,8 @@ //define DEBUG_ALPHA_CACHE 1 //define DEBUG_OPENGL_LEAKS 1 -#define SMALL_VERSION "1.1.7.10" -#define CHECK_VERSION "01.01.07.10" +#define SMALL_VERSION "1.1.7.24" +#define CHECK_VERSION "01.01.07.24" #define PACKAGE_EXTENDED_VERSION "ManaPlus (" PACKAGE_OS \ |