diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | data/help/changes.txt | 12 | ||||
-rw-r--r-- | data/help/header.txt | 2 | ||||
-rw-r--r-- | packaging/windows/setup.nsi | 2 | ||||
-rw-r--r-- | src/main.h | 2 | ||||
-rw-r--r-- | src/winver.h | 4 |
8 files changed, 31 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e06d02d..6996c7dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ CMAKE_POLICY(VERSION 2.6) PROJECT(MANA) IF (NOT VERSION) - SET(VERSION 0.6.0) + SET(VERSION 0.6.1) ENDIF() STRING(REPLACE "." " " _VERSION ${VERSION}) @@ -1,3 +1,15 @@ +0.6.1 (2 April 2012) +- Made it easier to click beings that are next to other beings +- Removed NPC trade messages from chat (again) +- Fixed swapping of ring and necklace equipment slots +- Fixed drawing order of particles +- Fixed manaserv-enabled builds +- Fixed category of mana.desktop file +- Fixed display of server description +- Fixed issues with rendering very small maps +- Fixed compile for Mac OSX and reintroduced Xcode project +- Updated Finnish, Brazilian Portuguese and Polish translations + 0.6.0 (12 February 2012) - Added support for a larger number of character slots - Added scrolling to tab bars when there isn't enough space @@ -1,7 +1,7 @@ THE MANA CLIENT =============== - Version: 0.6.0 Date: 2012-02-12 + Version: 0.6.1 Date: 2012-04-02 Development team: - See AUTHORS file for a list diff --git a/data/help/changes.txt b/data/help/changes.txt index b7ecc8c8..a4a148cd 100644 --- a/data/help/changes.txt +++ b/data/help/changes.txt @@ -3,6 +3,18 @@ ##3 === RECENT CHANGES === ##0 + 0.6.1 (2 April 2012) + - Made it easier to click beings that are next to other beings + - Removed NPC trade messages from chat (again) + - Fixed swapping of ring and necklace equipment slots + - Fixed drawing order of particles + - Fixed manaserv-enabled builds + - Fixed category of mana.desktop file + - Fixed display of server description + - Fixed issues with rendering very small maps + - Fixed compile for Mac OSX and reintroduced Xcode project + - Updated Finnish, Brazilian Portuguese and Polish translations + 0.6.0 (12 February 2012) - Added support for a larger number of character slots - Added scrolling to tab bars when there isn't enough space diff --git a/data/help/header.txt b/data/help/header.txt index 1e5b2fb5..2910af85 100644 --- a/data/help/header.txt +++ b/data/help/header.txt @@ -2,7 +2,7 @@ ##1 M A N A C L I E N T ##1 ========================================= - ##2Version:##0 0.6.0 ##2Date:##0 12 February 2012 + ##2Version:##0 0.6.1 ##2Date:##0 2 April 2012 ##2 Website:##0 http://manasource.org diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi index 602d8291..f7d7e069 100644 --- a/packaging/windows/setup.nsi +++ b/packaging/windows/setup.nsi @@ -45,7 +45,7 @@ SetCompressor /SOLID lzma !System "${UPX} --best --crp-ms=999999 --compress-icons=0 --nrv2d ${EXEDIR}\${PRODUCT_NAME_SHORT}.exe" !ifndef PRODUCT_VERSION - !define PRODUCT_VERSION "0.5-git" + !define PRODUCT_VERSION "0.6-git" !endif !define PRODUCT_PUBLISHER "Mana Development Team" !define PRODUCT_WEB_SITE "http://manasource.org" @@ -55,7 +55,7 @@ #elif defined _WIN32 #include "winver.h" #elif defined __APPLE__ -#define PACKAGE_VERSION "0.6.0" +#define PACKAGE_VERSION "0.6.1" #endif #ifdef PACKAGE_VERSION diff --git a/src/winver.h b/src/winver.h index ce6f23ee..4c33fe29 100644 --- a/src/winver.h +++ b/src/winver.h @@ -21,6 +21,6 @@ /* VERSION DEFINITIONS */ #define VER_MAJOR 0 #define VER_MINOR 6 -#define VER_RELEASE 0 +#define VER_RELEASE 1 #define VER_BUILD 0 -#define PACKAGE_VERSION "0.6.0.0" +#define PACKAGE_VERSION "0.6.1.0" |