summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-09-11 11:17:00 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-09-11 11:17:00 +0200
commit248a274ec6c6e4b5e1f1eb76cf4c6f8b43ac02d3 (patch)
tree20eaaea89d7f9fbda2b2154cad5b43abe8c14ea5
parent8fe9c1d9f046aa6d746ab075b3056d75898d1f2c (diff)
downloadmana-248a274ec6c6e4b5e1f1eb76cf4c6f8b43ac02d3.tar.gz
mana-248a274ec6c6e4b5e1f1eb76cf4c6f8b43ac02d3.tar.bz2
mana-248a274ec6c6e4b5e1f1eb76cf4c6f8b43ac02d3.tar.xz
mana-248a274ec6c6e4b5e1f1eb76cf4c6f8b43ac02d3.zip
Bumped version to 0.5.3 and updated the NEWS file
-rw-r--r--CMakeLists.txt2
-rw-r--r--NEWS5
-rw-r--r--README2
-rw-r--r--data/help/changes.txt13
-rw-r--r--data/help/header.txt4
-rw-r--r--src/main.h2
-rw-r--r--src/winver.h4
7 files changed, 17 insertions, 15 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9a139d66..ba1f306a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -4,7 +4,7 @@ CMAKE_POLICY(VERSION 2.6)
PROJECT(MANA)
IF (NOT VERSION)
- SET(VERSION 0.5.2)
+ SET(VERSION 0.5.3)
ENDIF()
STRING(REPLACE "." " " _VERSION ${VERSION})
diff --git a/NEWS b/NEWS
index cca5d461..cabbbd44 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+0.5.3 (11 September 2011)
+- Fixed endless loop when a sprite definition promises too many images
+- Fixed crash when selecting a character that has a Dark Talisman equipped
+- Fixed building without OpenGL
+
0.5.2 (17 April 2011)
- Removed NPC "Thanks for buying/selling" messages from the chat
- Added a few missing authentication failure reasons
diff --git a/README b/README
index 6e62d537..a3b0258f 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
THE MANA CLIENT
===============
- Version: 0.5.2 Date: 2011-04-17
+ Version: 0.5.3 Date: 2011-09-11
Development team:
- See AUTHORS file for a list
diff --git a/data/help/changes.txt b/data/help/changes.txt
index 2453a608..33fb2845 100644
--- a/data/help/changes.txt
+++ b/data/help/changes.txt
@@ -3,6 +3,11 @@
##3 === RECENT CHANGES ===
+ 0.5.3 (11 September 2011)
+ - Fixed endless loop when a sprite definition promises too many images
+ - Fixed crash when selecting a character that has a Dark Talisman equipped
+ - Fixed building without OpenGL
+
0.5.2 (17 April 2011)
- Removed NPC "Thanks for buying/selling" messages from the chat
- Added a few missing authentication failure reasons
@@ -142,11 +147,3 @@
- Fixed inability to chat while talking to NPCs
- Updated Swedish translation
- 0.0.28 (25 January 2009)
- - Added support for animated map tiles
- - Added support for internationalization, plus many translations
- - Added support for TrueType fonts
- - Trade window is now resizable
- - Obscure precise home directory name when making screenshots
- - Fixed follow-parent of nested and being-following particle emitters
-
diff --git a/data/help/header.txt b/data/help/header.txt
index 505ae25c..52ecedae 100644
--- a/data/help/header.txt
+++ b/data/help/header.txt
@@ -1,8 +1,8 @@
-##1 M A N A S O U R C E
+##1 M A N A C L I E N T
##1 ==========================================
- ##2Version:##6 0.5.2 ##2Date:##3 17 April 2011
+ ##2Version:##6 0.5.3 ##2Date:##3 11 September 2011
##2 Website: http://manasource.org
diff --git a/src/main.h b/src/main.h
index b1db3258..681fd9c8 100644
--- a/src/main.h
+++ b/src/main.h
@@ -55,7 +55,7 @@
#elif defined WIN32
#include "winver.h"
#elif defined __APPLE__
-#define PACKAGE_VERSION "0.5.2"
+#define PACKAGE_VERSION "0.5.3"
#endif
#ifdef PACKAGE_VERSION
diff --git a/src/winver.h b/src/winver.h
index 89b7004f..7f9d3f8d 100644
--- a/src/winver.h
+++ b/src/winver.h
@@ -1,6 +1,6 @@
/* VERSION DEFINITIONS */
#define VER_MAJOR 0
#define VER_MINOR 5
-#define VER_RELEASE 2
+#define VER_RELEASE 3
#define VER_BUILD 0
-#define PACKAGE_VERSION "0.5.2.0"
+#define PACKAGE_VERSION "0.5.3.0"