diff options
-rw-r--r-- | ChangeLog | 23 | ||||
-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, 30 insertions, 7 deletions
@@ -1,3 +1,26 @@ +2012-04-29 New release 1.2.4.29 +fix: bluring setting apply. +fix: split long lines in kill stats window. +fix: actions translation. +fix: vsync setting. +fix: improved in game visible position calculation. +add: keyboard repeat setting. +add: split input settings to tabs. +add: separate configurable shorcuts for emotes, shorcuts, move to target. +add: deharcode gui input keys. +add: improve keyboard handling in some dialogs. +add: autoclean configuration file from old keys. +add: option to center window on screen (windows, osx). +add: audio frequency and channels options to audio tab. +add: particle physics setting. (normal by default). +add: for OpenGL add option to enable/disable texture compression. +add: for OpenGL add option to enable/disable rectangular textures support. +add: in debug window add LPS counter near FPS. +add: write to log OpenGL info. +add: support for server independent updates. +add: improve perfomance. +add: update mplus font. + 2012-04-15 New release 1.2.4.15 fix: cancel update fix. fix: multiple conflicts between windows and game keys. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.2.4.15 Date: 2012-04-15 + Version: 1.2.4.29 Date: 2012-04-29 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index ad89dd3ff..61148d2ed 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.2.4.15 Date: 2012-04-15
+ Version: 1.2.4.29 Date: 2012-04-29
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 9dc88435e..fa6ed3f61 100755 --- a/build/packevol +++ b/build/packevol @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../mana_win/libs/dll/ \ - -DPRODUCT_VERSION="1.2.4.15" \ + -DPRODUCT_VERSION="1.2.4.29" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packwin b/build/packwin index 6d1b3a7eb..a213aa340 100755 --- a/build/packwin +++ b/build/packwin @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../mana_win/libs/dll/ \ - -DPRODUCT_VERSION="1.2.4.15" \ + -DPRODUCT_VERSION="1.2.4.29" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index 76e487fa1..f487fb0f2 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.2.4.15], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.2.4.29], [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 f4f82e361..1d8b42565 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.4.15" -#define CHECK_VERSION "01.02.04.15" +#define SMALL_VERSION "1.2.4.29" +#define CHECK_VERSION "01.02.04.29" #ifdef HAVE_CONFIG_H #include "../config.h" |