summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-04-16 23:31:04 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-04-16 23:39:11 +0200
commitf824c159af0a67e6d68f0934b4810dffc1c33a91 (patch)
treebcc3d24abc28b1c1f8e19720a45cef156b5ae8a6
parentbb795d87f9d0eebb6cc04b5c6806252fbb957f5d (diff)
downloadmana-client-0.5.2.tar.gz
mana-client-0.5.2.tar.bz2
mana-client-0.5.2.tar.xz
mana-client-0.5.2.zip
Bumped version to 0.5.2 and updated the NEWS filev0.5.2
Reviewed-by: Stefan Dombrowski Reviewed-by: Yohann Ferreira
-rw-r--r--CMakeLists.txt2
-rw-r--r--NEWS8
-rw-r--r--README2
-rw-r--r--data/help/changes.txt34
-rw-r--r--data/help/header.txt2
-rw-r--r--src/main.h2
-rw-r--r--src/winver.h4
7 files changed, 22 insertions, 32 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4244dad9..9a139d66 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.1)
+ SET(VERSION 0.5.2)
ENDIF()
STRING(REPLACE "." " " _VERSION ${VERSION})
diff --git a/NEWS b/NEWS
index 42b74b82..cca5d461 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+0.5.2 (17 April 2011)
+- Removed NPC "Thanks for buying/selling" messages from the chat
+- Added a few missing authentication failure reasons
+- Avoid kick from server due to picking up items too fast
+- Fixed updating of buy dialog after buying
+- Fixed compile on GNU HURD
+- Updated French and Finnish translations
+
0.5.1 (14 March 2011)
- Added particle notification for "Unable to pick up item."
- Added the amount of items picked up to the particle notification
diff --git a/README b/README
index 8d29758a..6e62d537 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
THE MANA CLIENT
===============
- Version: 0.5.1 Date: 2011-03-14
+ Version: 0.5.2 Date: 2011-04-17
Development team:
- See AUTHORS file for a list
diff --git a/data/help/changes.txt b/data/help/changes.txt
index d1733f47..2453a608 100644
--- a/data/help/changes.txt
+++ b/data/help/changes.txt
@@ -3,6 +3,14 @@
##3 === RECENT CHANGES ===
+ 0.5.2 (17 April 2011)
+ - Removed NPC "Thanks for buying/selling" messages from the chat
+ - Added a few missing authentication failure reasons
+ - Avoid kick from server due to picking up items too fast
+ - Fixed updating of buy dialog after buying
+ - Fixed compile on GNU HURD
+ - Updated French and Finnish translations
+
0.5.1 (14 March 2011)
- Added particle notification for "Unable to pick up item."
- Added the amount of items picked up to the particle notification
@@ -142,29 +150,3 @@
- Obscure precise home directory name when making screenshots
- Fixed follow-parent of nested and being-following particle emitters
- 0.0.27 (9 December 2008)
- - Added support for showing map name above minimap
- - Added showing how long the ban is when banned
- - Added --data parameter for developers
- - Added particle effect for critical hits
- - Added support for dynamic skill names and hair colors
- - Added support for status effects
- - Added ability to add equipment to the shortcut bar
- - Added ability to change configuration during login phase (from Aethyra)
- - Mouse cursor will now hide when not used for some time
- - Inventory window now displays amount of slots used
- - Center minimap on player when it is larger than the minimap window
- - Extended particle emitters with properties that can change over time
- - Extended the GUI font to support more characters
- - Only require a restart to switch to full screen with OpenGL on Windows
- - Make sure news and update file list aren't cached (from Aethyra)
- - Made NPC dialogs resizable (from Aethyra)
- - Made window shortcuts configurable
- - Fixed visibility of trade window on startup
- - Fixed a client input freeze when closing NPC script from server
- - Fixed dead players to lie on the ground instead of standing around
- - Fixed shortcuts being activated when trade window was visible
- - Fixed a crash when equipment window is open
- - Fixed money value on failing to buy (from Aethyra)
- - Fixed crash in right-click menu when used after a being disappeared
-
diff --git a/data/help/header.txt b/data/help/header.txt
index 6ab8172d..505ae25c 100644
--- a/data/help/header.txt
+++ b/data/help/header.txt
@@ -2,7 +2,7 @@
##1 M A N A S O U R C E
##1 ==========================================
- ##2Version:##6 0.5.1 ##2Date:##14 March 2011
+ ##2Version:##6 0.5.2 ##2Date:##3 17 April 2011
##2 Website: http://manasource.org
diff --git a/src/main.h b/src/main.h
index 341ab1d0..b1db3258 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.1"
+#define PACKAGE_VERSION "0.5.2"
#endif
#ifdef PACKAGE_VERSION
diff --git a/src/winver.h b/src/winver.h
index fa85216e..89b7004f 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 1
+#define VER_RELEASE 2
#define VER_BUILD 0
-#define PACKAGE_VERSION "0.5.1.0"
+#define PACKAGE_VERSION "0.5.2.0"