diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | data/help/changes.txt | 34 | ||||
-rw-r--r-- | data/help/header.txt | 2 | ||||
-rw-r--r-- | src/main.h | 2 | ||||
-rw-r--r-- | src/winver.h | 4 |
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}) @@ -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 @@ -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 @@ -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" |