diff options
-rw-r--r-- | ChangeLog | 25 | ||||
-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, 32 insertions, 7 deletions
@@ -1,3 +1,28 @@ +2012-03-04 New release 1.2.3.4 +fix: loading client data translations. +fix: display translated xp+job messages. +fix: default paramters value. +fix: last frame delay in dead sprite actions. +fix: don't show errors for missing emotes. +fix: drawing big minimaps. +fix: ignore shortcuts keys in npc menu and in inventory. +fix: npc menu keyboard navigation. +fix: default npc dialog size. +fix: some copyrights. +fix: possible crashes. +add: visual settings page. +add: option to grab input. +add: move some settings and new to page visual in settings. +add: different sound effects for different messages. +can be configured in audio settings page. +add: resize minimaps. +add: context menu for minimaps. +add: gdb to windows build. +add: show latest client version in update news. +add: option for for creating screenshots with FBO. +If enable, can fix opengl screenshots issue. +add: update liberation fonts. + 2012-02-19 New release 1.2.2.19 add: client data translations (items, etc). add: increased max value for drop counter from 9 to 30. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.2.2.19 Date: 2012-02-19 + Version: 1.2.3.4 Date: 2012-03-04 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 8f99f0484..35b70f693 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.2.2.19 Date: 2012-02-19
+ Version: 1.2.3.4 Date: 2012-03-04
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 7f89238ab..fecc4304a 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.2.19" \ + -DPRODUCT_VERSION="1.2.3.4" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packwin b/build/packwin index ab7087768..7df57ef43 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.2.19" \ + -DPRODUCT_VERSION="1.2.3.4" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index ad5c8422d..b2bd7de47 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.2.2.19], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.2.3.4], [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 abc152ed3..d8bae89c3 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.2.19" -#define CHECK_VERSION "01.02.02.19" +#define SMALL_VERSION "1.2.3.4" +#define CHECK_VERSION "01.02.03.04" #ifdef HAVE_CONFIG_H #include "../config.h" |