diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-27 15:15:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-27 15:15:03 +0300 |
commit | c1f4805477a4c086dbd0f2499b4d3d5e11f2a9b6 (patch) | |
tree | 8f9e198b40811b0fe6fd20a26978b398c2760c72 | |
parent | e79a91b3f9964918ee99d5de33cbb8625d3e39e5 (diff) | |
download | plus-c1f4805477a4c086dbd0f2499b4d3d5e11f2a9b6.tar.gz plus-c1f4805477a4c086dbd0f2499b4d3d5e11f2a9b6.tar.bz2 plus-c1f4805477a4c086dbd0f2499b4d3d5e11f2a9b6.tar.xz plus-c1f4805477a4c086dbd0f2499b4d3d5e11f2a9b6.zip |
Change version to 1.6.2.27
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | README.txt | 2 | ||||
-rwxr-xr-x | build/packevol | 2 | ||||
-rwxr-xr-x | build/packtmw | 2 | ||||
-rwxr-xr-x | build/packwin | 2 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rw-r--r-- | src/main.h | 4 |
9 files changed, 20 insertions, 9 deletions
@@ -1,3 +1,14 @@ +2016-02-27 New release 1.6.2.27 +fix: crash in setup gui tab. +fix: char creation if stats was hidden (tmwa). +fix: crash on startup on some systems. +fix: beings sort offset in tiles with height more than zero. +fix: hide popups if mouse enter context menu. +add: extended drop position in pixels (hercules) +add: onscreen buttons in format 3x2. +add: extend gm menus for players, monsters, npcs. +add: per server gm and char gm commands symbol. + 2016-02-13 New release 1.6.2.13 fix: working with updated hercules without evol plugin. fix: possible crash with broken map. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.6.2.13 Date: 2016-02-13 + Version: 1.6.2.27 Date: 2016-02-27 Development team: - See AUTHORS file for a list @@ -2,7 +2,7 @@ ![The Mana World logo](data/icons/manaplus.png) -Version: 1.6.2.13 Date: 2016-02-13 +Version: 1.6.2.27 Date: 2016-02-27 ### Development team: - See [AUTHORS](AUTHORS) file for a list diff --git a/README.txt b/README.txt index b259a7a10..62d98c5ff 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.6.2.13 Date: 2016-02-13
+ Version: 1.6.2.27 Date: 2016-02-27
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index ad6cfab40..cc8dafaee 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.6.2.13" \ + -DPRODUCT_VERSION="1.6.2.27" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packtmw b/build/packtmw index ddef236c4..dd3ccf1a2 100755 --- a/build/packtmw +++ b/build/packtmw @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../libs/dll/ \ - -DPRODUCT_VERSION="1.6.2.13" \ + -DPRODUCT_VERSION="1.6.2.27" \ -DEXESUFFIX=/src \ -DUPX=true \ tmw.nsi diff --git a/build/packwin b/build/packwin index cfdbd4252..8190018c7 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.6.2.13" \ + -DPRODUCT_VERSION="1.6.2.27" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index 738dfaa70..5fc5d4f32 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.6.2.13], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.6.2.27], [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 ec0ee6598..d6af032d8 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.6.2.13" -#define CHECK_VERSION "01.06.02.13" +#define SMALL_VERSION "1.6.2.27" +#define CHECK_VERSION "01.06.02.27" #ifdef HAVE_CONFIG_H #include "../config.h" |