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/packwin | 2 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rw-r--r-- | src/main.h | 4 |
7 files changed, 22 insertions, 7 deletions
@@ -1,3 +1,18 @@ +2012-10-28 New release 1.2.10.28 +fix: some ARM fixes. +fix: open/close sounds for some windows. +fix: texture memory usage. +add: extend theming. +add: some changes for android support. +add: mobile OpenGL backend. +add: jewelry by Hal9000 (incomplete) +add: info button with information about selected theme. +add: option to disable/enable screensaver. +add: OpenGL logging support. +add: new cursor types. +add: new cursor images. (by Hal9000) +add: cursor selection for different items, monsters, npcs. + 2012-10-14 New release 1.2.10.14 fix: monsters particle effects attacks. fix: chat window resize cursor. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.2.10.14 Date: 2012-10-14 + Version: 1.2.10.28 Date: 2012-10-28 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 5e661fd69..4038d9b2d 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.2.10.14 Date: 2012-10-14
+ Version: 1.2.10.28 Date: 2012-10-28
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index a1850379d..6aed6e7fa 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.2.10.14" \ + -DPRODUCT_VERSION="1.2.10.28" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packwin b/build/packwin index cb5546099..82c702c3d 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.2.10.14" \ + -DPRODUCT_VERSION="1.2.10.28" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index c57bf9c42..1e086210b 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.2.10.14], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.2.10.28], [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 8c29e1097..6626db6d9 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.2.10.14" -#define CHECK_VERSION "01.02.10.14" +#define SMALL_VERSION "1.2.10.28" +#define CHECK_VERSION "01.02.10.28" #ifdef HAVE_CONFIG_H #include "../config.h" |