diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-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, 17 insertions, 9 deletions
@@ -1,3 +1,11 @@ +2017-02-18 New release 1.7.2.18 +fix: wrong buffer access. +fix: custom currency in shop items list. +fix: compilation warnings in some libs. +fix: possible use after free in web requests. +add: quests links in npc window. +add: show manaplus.log path in console at start. + 2017-02-04 Nre release 1.7.2.4 fix: compilation with very old libcurl versions. fix: compilation with very new SDL2 versions. @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.7.2.4 Date: 2017-02-04 + Version: 1.7.2.18 Date: 2017-02-18 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.2.4 Date: 2017-02-04 +Version: 1.7.2.18 Date: 2017-02-18 ### Build status diff --git a/README.txt b/README.txt index d7b409d57..a48336856 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT
===============
- Version: 1.7.2.4 Date: 2017-02-04
+ Version: 1.7.2.18 Date: 2017-02-18
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol index 9b76052b4..faf4b8aae 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.2.4" \ + -DPRODUCT_VERSION="1.7.2.18" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packtmw b/build/packtmw index 780d09e58..d4aee1ebf 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.2.4" \ + -DPRODUCT_VERSION="1.7.2.18" \ -DEXESUFFIX=/src \ -DUPX=true \ tmw.nsi diff --git a/build/packwin b/build/packwin index 96e9f53a4..7f512de45 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.2.4" \ + -DPRODUCT_VERSION="1.7.2.18" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index ddad878d7..c7c9135c8 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.7.2.4], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.7.2.18], [akaras@inbox.ru], [manaplus]) AM_INIT_AUTOMAKE([1.9]) AC_LANG_CPLUSPLUS diff --git a/src/main.h b/src/main.h index 82d8d9b19..cd346e0f4 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.2.4" -#define CHECK_VERSION "01.07.02.04" +#define SMALL_VERSION "1.7.2.18" +#define CHECK_VERSION "01.07.02.18" #ifdef HAVE_CONFIG_H #include "../config.h" |