diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | README | 2 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rw-r--r-- | data/help/changes.txt | 49 | ||||
-rw-r--r-- | data/help/header.txt | 2 | ||||
-rw-r--r-- | src/winver.h | 4 |
7 files changed, 32 insertions, 31 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c8aa509..2c31196f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ PROJECT(TMW) -SET(VERSION 0.0.26) +SET(VERSION 0.0.27) # where to look for cmake modules SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules) @@ -1,4 +1,4 @@ -0.0.27 (...) +0.0.27 (7 December 2008) - Added support for showing map name above minimap - Added showing how long the ban is when banned - Added --data parameter for developers @@ -1,7 +1,7 @@ THE MANA WORLD ============== - Version: 0.0.26 Date: 29/8/2008 + Version: 0.0.27 Date: 7/12/2008 Development team: - See AUTHORS file for a list diff --git a/configure.ac b/configure.ac index 304ae6d7..cbf035f3 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([The Mana World], [0.0.26], [elvenprogrammer@gmail.com], [tmw]) +AC_INIT([The Mana World], [0.0.27], [elvenprogrammer@gmail.com], [tmw]) AC_CONFIG_HEADERS([config.h:config.h.in]) AC_LANG_CPLUSPLUS diff --git a/data/help/changes.txt b/data/help/changes.txt index d05dd5cb..865f66fc 100644 --- a/data/help/changes.txt +++ b/data/help/changes.txt @@ -3,6 +3,31 @@ ##3 === RECENT CHANGES === + 0.0.27 (7 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) + - 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 + 0.0.26 (29 August 2008) - Added support for a newer version of eAthena server - Added support for showing custom being effects @@ -45,27 +70,3 @@ - Fixed crash on trying to show out of range emoticon - Updated Dev-C++ and Code::Blocks project files - 0.0.24 (24 December 2007) - - Added female specific hair styles - - Added user-definable key settings - - Added XP gaining notification - - Added close button to most windows - - Added support for dynamic sprite recoloring - - Added notification when the connection to the server is lost - - Updated to work with Guichan 0.7.x - - Mouse cursor now indicates when resize is possible - - Changed amount slider in buy and sell dialogs to start at 1 - - Made weapon sprites and sounds customizable - - Made buy and sell dialogs resizable - - Merged equipment database with items database - - Chat window log no longer goes back forever - - Chat messages are trimmed (spaces are removed on both sides) - - Fixed segmentation fault with some OpenGL drivers - - Fixed updating of defense when increasing vitality - - Fixed a bug that prevented being-controlled particles from being deleted - - Fixed a crash in the particle engine related to child emitters - - Fixed encoding issues with user home directory - - Fixed a crash in equipment window on failure to load an item icon - - Fixed a crash on filling up your inventory - - Fixed item list in shops not to scroll back when selling - diff --git a/data/help/header.txt b/data/help/header.txt index 462deaa2..382b9592 100644 --- a/data/help/header.txt +++ b/data/help/header.txt @@ -2,7 +2,7 @@ ##1 T H E M A N A W O R L D ##1 ========================================== - ##2Version:##6 0.0.26 ##2Date:##329 August 2008 + ##2Version:##6 0.0.27 ##2Date:##3 7 December 2008 ##2 Website: http://themanaworld.org diff --git a/src/winver.h b/src/winver.h index 4452784e..46d247fc 100644 --- a/src/winver.h +++ b/src/winver.h @@ -1,6 +1,6 @@ /* VERSION DEFINITIONS */ #define VER_MAJOR 0 #define VER_MINOR 0 -#define VER_RELEASE 26 +#define VER_RELEASE 27 #define VER_BUILD 0 -#define PACKAGE_VERSION "0.0.26" +#define PACKAGE_VERSION "0.0.27" |