diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-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, 16 insertions, 6 deletions
@@ -1,3 +1,13 @@ +2011-08-07 New release 1.1.8.7 +ManaPlus: +fix: player attack animation length. +fix: random opacity issue in complex sprites in software mode. +fix: compilation in manaserv mode. +fix: adjust wait time after pasting text. possible should fix multiply paste issue. +add: improve perfomance in caching complex sprites in software mode. +add: improve perfomance with max opacity in software mode. +add: different keys in edit fields. + 2011-07-24 New release 1.1.7.24 ManaPlus: fix: compilation without opengl. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.1.7.24 Date: 2011-07-24 + Version: 1.1.8.7 Date: 2011-08-07 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 755587fda..ab33f1c91 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.1.7.24 Date: 2011-07-24
+ Version: 1.1.8.7 Date: 2011-08-07
Development team:
- See AUTHORS file for a list
diff --git a/configure.ac b/configure.ac index 1c5660d69..d893b7e7c 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.1.7.24], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.1.8.7], [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.24" \ + -DPRODUCT_VERSION="1.1.8.7" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/src/main.h b/src/main.h index 38b64a367..dbe9b3142 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.24" -#define CHECK_VERSION "01.01.07.24" +#define SMALL_VERSION "1.1.8.7" +#define CHECK_VERSION "01.01.08.07" #define PACKAGE_EXTENDED_VERSION "ManaPlus (" PACKAGE_OS \ |