diff options
-rw-r--r-- | ChangeLog | 13 | ||||
-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, 22 insertions, 9 deletions
@@ -1,3 +1,16 @@ +2017-08-19 New release 1.7.8.19 +fix: drawing language badge. +fix: hide item popup in context menu. +fix: item containers scrolling if some items hidden by filter. +fix: compilation on systems with missing bswap_16/32. +add: debug window before connecting to server. +add: attributes to missile particles. +add: context menu way to add skill into shortcuts bar. +add: custom context menu for items. Separate for inventory, storage, cart. +add: more than one use action for items. +add: packets for new mail system, but without gui. +add: id offset for server plugin custom packets. + 2017-08-05 New release 1.7.8.5 fix: quests window redraw speed and render too long lines. fix: mouse cursor update each 10 seconds. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.7.8.5 Date: 2017-08-05 + Version: 1.7.8.19 Date: 2017-08-19 Build status: Gitlab CI: https://gitlab.com/manaplus/manaplus/badges/master/build.svg @@ -2,7 +2,7 @@ ![ManaPlus logo](data/icons/manaplus.png) -Version: 1.7.8.5 Date: 2017-08-05 +Version: 1.7.8.19 Date: 2017-08-19 ### Build status diff --git a/README.txt b/README.txt index 30b58bf47..4d86df23a 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.7.8.5 Date: 2017-08-05
+ Version: 1.7.8.19 Date: 2017-08-19
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 249b8b6c2..551d8d5bd 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.7.8.5" \ + -DPRODUCT_VERSION="1.7.8.19" \ -DEXESUFFIX=/src \ -DUPX=true \ -DBITS=${BITS} \ diff --git a/build/packtmw b/build/packtmw index dfc06928c..939300ec3 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.7.8.5" \ + -DPRODUCT_VERSION="1.7.8.19" \ -DEXESUFFIX=/src \ -DUPX=true \ -DBITS=${BITS} \ diff --git a/build/packwin b/build/packwin index 7362fe529..f80591247 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.7.8.5" \ + -DPRODUCT_VERSION="1.7.8.19" \ -DEXESUFFIX=/src \ -DUPX=true \ -DBITS=${BITS} \ diff --git a/configure.ac b/configure.ac index 82e5364f4..37bf13aa9 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.7.8.5], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.7.8.19], [akaras@inbox.ru], [manaplus]) AM_INIT_AUTOMAKE([1.9]) AC_LANG_CPLUSPLUS diff --git a/src/main.h b/src/main.h index eac95b804..68d843d07 100644 --- a/src/main.h +++ b/src/main.h @@ -40,8 +40,8 @@ * by the map, interleaved with the tiles in the fringe layer. */ -#define SMALL_VERSION "1.7.8.5" -#define CHECK_VERSION "01.07.08.05" +#define SMALL_VERSION "1.7.8.19" +#define CHECK_VERSION "01.07.08.19" #ifdef HAVE_CONFIG_H #include "../config.h" |