diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | INSTALL | 13 | ||||
-rw-r--r-- | NEWS | 10 | ||||
-rw-r--r-- | README | 2 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rw-r--r-- | data/help/header.txt | 2 | ||||
-rw-r--r-- | src/winver.h | 4 |
8 files changed, 26 insertions, 16 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d24dc07..3d048276 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ PROJECT(TMW) -SET(VERSION 0.0.23) +SET(VERSION 0.0.24) # where to look for cmake modules SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules) @@ -1,6 +1,11 @@ +2007-12-22 Bjørn Lindeijer <bjorn@lindeijer.nl> + + * src/winver.h, README, configure.ac, INSTALL, data/help/header.txt, + NEWS, CMakeLists.txt: Updated version to 0.0.24. + 2007-12-21 David Athay <ko2fan@gmail.com> - * src/game.cpp, src/gui/updatewindow.cpp: Attempted to fix client + * src/game.cpp, src/gui/updatewindow.cpp: Attempted to fix client freeze when unable to connect to update host, and added exit dialog when client loses connection. @@ -20,13 +20,14 @@ and some libraries. The required libraries are: * SDL_mixer http://www.libsdl.org/projects/SDL_mixer/ * SDL_image http://www.libsdl.org/projects/SDL_image/ * SDL_net http://www.libsdl.org/projects/SDL_net/ -* Guichan 0.7.0 http://guichan.sourceforge.net/ +* Guichan 0.7.x http://guichan.sourceforge.net/ * libxml2 http://www.xmlsoft.org/ * physfs 1.0.x http://icculus.org/physfs/ * zlib 1.2.x http://www.gzip.org/zlib/ * libcurl http://curl.haxx.se/libcurl/ -If you checked TMW out from CVS you will also need these tools to compile: +If you checked TMW out from Subversion you will also need these tools to +compile: * GNU automake 1.9 http://www.gnu.org/software/automake/ * GNU autoconf http://www.gnu.org/software/autoconf/ @@ -49,12 +50,10 @@ with "tmw". By default all files are installed to /usr/local, you can pass a different prefix to configure as usual. - NOTE: For those people with modern video cards and fast OpenGL performance, - we have been working on OpenGL support. At the moment there is no way to - switch between SDL and OpenGL dynamically and you need to do this at compile - time. To try this perform step 3 as follows: + NOTE: It is possible to compile TMW without support for OpenGL rendering. + To do this perform step 3 as follows: - "./configure --with-opengl" + ./configure --without-opengl Rebuild the executable from scratch using "make clean" and then "make". @@ -1,20 +1,26 @@ -0.0.24 (... 2007) +0.0.24 (23 December 2007) +- Added female specific hair styles - Added user-definable key settings - Added shortcut bar for quick access to inventory items - 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 - Fixed segmentation fault with some OpenGL drivers -- Fixed updating of defence when increasing vitality +- 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 0.0.23 (3 June 2007) - Added a particle engine along with some particle effects @@ -1,7 +1,7 @@ THE MANA WORLD ============== - Version: 0.0.23 Date: 03/06/2007 + Version: 0.0.24 Date: 23/12/2008 Development team: - See AUTHORS file for a list diff --git a/configure.ac b/configure.ac index 382a26ba..7247c6a6 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([The Mana World], [0.0.23], [elvenprogrammer@gmail.com], [tmw]) +AC_INIT([The Mana World], [0.0.24], [elvenprogrammer@gmail.com], [tmw]) AC_CONFIG_HEADERS([config.h:config.h.in]) AC_LANG_CPLUSPLUS diff --git a/data/help/header.txt b/data/help/header.txt index b10ed991..3bb0aab4 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.23 ##2Date:##33 June 2007 + ##2Version:##6 0.0.24 ##2Date:##323 December 2008 ##2 Website: http://themanaworld.org diff --git a/src/winver.h b/src/winver.h index 149f647d..02d48f71 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 23
+#define VER_RELEASE 24
#define VER_BUILD 0
-#define PACKAGE_VERSION "0.0.23"
+#define PACKAGE_VERSION "0.0.24"
|