summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog18
-rw-r--r--README2
-rw-r--r--README.txt2
-rwxr-xr-xbuild/packevol2
-rwxr-xr-xbuild/packtmw2
-rwxr-xr-xbuild/packwin2
-rwxr-xr-xconfigure.ac2
-rw-r--r--src/main.h4
8 files changed, 26 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 8474a5f3e..d90f9ea6b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,21 @@
+2014-07-19 New release 1.4.7.19
+fix: possible memory leak in texture compression.
+fix: OpenGL renderers fallback.
+fix: logging about emulated OpenGL functions.
+fix: OpenGL renderer detection with SDL2.
+add: new item visible attributes.
+add: missing idx file in windows installers.
+add: empty map mode without collisions.
+add: in OpenGL context creation add support for compatibility context.
+add: disable OpenGL fallback mode while running tests.
+add: on Android move login dialog to top.
+add: useButton option into skills.
+add: modern OpenGL into renderers tests.
+add: max texture size detection for all supported modes.
+add: urls for download client update into branding file.
+add: move manaplus mirror urls into branding file.
+add: allow set "move to target" distance from 1 to 9.
+
2014-07-05 New release 1.4.7.5
fix: vsync control on nvidia closed source drivers.
fix: vsync control on Mesa.
diff --git a/README b/README
index 48ec0152a..9217a312f 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
THE MANA PLUS CLIENT
===============
- Version: 1.4.7.5 Date: 2014-07-05
+ Version: 1.4.7.19 Date: 2014-07-19
Development team:
- See AUTHORS file for a list
diff --git a/README.txt b/README.txt
index e89734624..354675388 100644
--- a/README.txt
+++ b/README.txt
@@ -1,7 +1,7 @@
THE MANA PLUS CLIENT
===============
- Version: 1.4.7.5 Date: 2014-07-05
+ Version: 1.4.7.19 Date: 2014-07-19
Development team:
- See AUTHORS file for a list
diff --git a/build/packevol b/build/packevol
index 143fc63f9..8d185e662 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.4.7.5" \
+ -DPRODUCT_VERSION="1.4.7.19" \
-DEXESUFFIX=/src \
-DUPX=true \
evol.nsi
diff --git a/build/packtmw b/build/packtmw
index a403f183d..808c50eb8 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.4.7.5" \
+ -DPRODUCT_VERSION="1.4.7.19" \
-DEXESUFFIX=/src \
-DUPX=true \
tmw.nsi
diff --git a/build/packwin b/build/packwin
index 6f5fe876f..01157cb3b 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.4.7.5" \
+ -DPRODUCT_VERSION="1.4.7.19" \
-DEXESUFFIX=/src \
-DUPX=true \
setup.nsi
diff --git a/configure.ac b/configure.ac
index 7c0373f5a..3a6600331 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ(2.60)
-AC_INIT([ManaPlus], [1.4.7.5], [akaras@inbox.ru], [manaplus])
+AC_INIT([ManaPlus], [1.4.7.19], [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 a8c49d6d7..eb00c9d2b 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.4.7.5"
-#define CHECK_VERSION "01.04.07.05"
+#define SMALL_VERSION "1.4.7.19"
+#define CHECK_VERSION "01.04.07.19"
#ifdef HAVE_CONFIG_H
#include "../config.h"