From e2d5312c793c3667213acd794dd4c5c5c49d9c75 Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Fri, 25 Jul 2008 17:27:39 +0000 Subject: Updated the version to 0.0.25, release planned this Sunday. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 32bffc37..fd71e1b0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ PROJECT(TMW) -SET(VERSION 0.0.24.1) +SET(VERSION 0.0.25) # where to look for cmake modules SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules) -- cgit v1.2.3-70-g09d2 From 7334c8dd3a7125126e63cd8a483ec93f03bc690d Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Thu, 28 Aug 2008 21:11:18 +0000 Subject: Updated the version to 0.0.26 and updated the AUTHORS file. If you have contributed and I forgot you, please contact me as soon as possible! --- AUTHORS | 98 +++++++++++++++++++++++++++++---------------------- CMakeLists.txt | 2 +- ChangeLog | 4 +++ NEWS | 7 ++++ README | 2 +- configure.ac | 2 +- data/help/changes.txt | 23 ++++-------- data/help/header.txt | 2 +- src/winver.h | 4 +-- 9 files changed, 79 insertions(+), 65 deletions(-) (limited to 'CMakeLists.txt') diff --git a/AUTHORS b/AUTHORS index 19d28884..6ae0b9c4 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,43 +1,55 @@ ------------------------ -The Mana World Dev Team ------------------------ - - ElvenProgrammer aka Eugenio Favalli (elvenprogrammer@gmail.com) - Project leader, programmer - -== Programmers == - - Bertram (SDL input, progress bar drawing, Debian package) - Bjørn Lindeijer (various parts, GUI, graphics, A* and map rewrites) - Björn Steinbrink (various parts) - Javila (various parts, GUI) - nym (several GUI parts) - Shura (configuration, sound, misc. ports) - zenogais (resource manager) - Usiu (several GUI parts) - Mra (some GUI parts) - -== Artists == - - Clef (tiles, concepts) - Gnulia (conceptual art) - Irukard (item icons) - Magick (music and sound effects) - Neko-mon (player sprites, various things) - Neorice (monster sprites, tiles) - Modanung (pixel art, concept art) - Pajarico (concepts) - Rotonen (backstory, art director, music, sound) - Talaroc (sprites) - Ti Sing Hao (music) - -== Misc thanks == - - Ultramichy (hosting test server) - -== Inactive/retired == - - Chetic (maps) - SimEdw (network code) - Sull (hosting CVS and related services) - Vlady (several items) +----------------------------- +-- The Mana World Dev Team -- +----------------------------- + +== Contributors to client/server development == + +Aaron Marks +Alexander Baldeck (Shura) +Andrej Sinicyn +Björn Steinbrink (Doener) +Bjørn Lindeijer +Cedric Borgese (moi1392) +David Athay +Dennis Friis +Douglas Boffey +Duane Bailey +Eugenio Favalli +Eric Scrivner +Fredrik Reveny +Guillaume Melquiond (Silene) +Jan-Fabian Humann (Mra) +José Ávila +Kiyoshi Kyokai +Lloyd Bryant +Marcel W. Wysocki +Mateusz Kaduk (Usiu) +Matthias Hartmann +Philipp Sehmisch (Crush) +Simon Edwardsson +Yohann Ferreira + +== Contributors to game content == + +Clef +Gnulia +Frode Lindeijer (Modanung) +Jared Adams +Joni Orponen (Rotonen) +Krzysztof Daszuta +Magick +Neko-mon +Neorice +Pajarico Guaje +Vlady +QOAL +Ryan Voss (Talaroc) +Tatjana +Ti Sing Hao + +== Other contributors == + +Jean-Francois Lampron +Rodney Dawes +Ultramichy +Zuzanna K. Filutowska diff --git a/CMakeLists.txt b/CMakeLists.txt index fd71e1b0..3c8aa509 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ PROJECT(TMW) -SET(VERSION 0.0.25) +SET(VERSION 0.0.26) # where to look for cmake modules SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules) diff --git a/ChangeLog b/ChangeLog index a89dc660..027dbb97 100644 --- a/ChangeLog +++ b/ChangeLog @@ -30,6 +30,10 @@ documentation for the shortcut window by Vq. * src/resources/mapreader.cpp: Fixed crash when map layer has too many tiles. + * AUTHORS, src/winver.h, README, configure.ac, data/help/changes.txt, + data/help/header.txt, NEWS, CMakeLists.txt: Updated the version to + 0.0.26 and updated the AUTHORS file. If you have contributed and I + forgot you, please contact me as soon as possible! 2008-08-28 Philipp Sehmisch diff --git a/NEWS b/NEWS index ca1286f1..15c2b713 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +0.0.26 (29 August 2008) +- Added support for a newer version of eAthena server +- Added support for showing custom being effects +- Added new features to the particle engine +- Position names and chat such that there is no overlap, when possible +- Fixed a crash when loading a corrupt map that has too much layer data + 0.0.25 (27 July 2008) - Added support for whispering to other players - Added ability to ignore other players diff --git a/README b/README index ea293a9e..4f5fc02e 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ THE MANA WORLD ============== - Version: 0.0.25 Date: 27/7/2008 + Version: 0.0.26 Date: 29/8/2008 Development team: - See AUTHORS file for a list diff --git a/configure.ac b/configure.ac index ddd47e40..304ae6d7 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([The Mana World], [0.0.25], [elvenprogrammer@gmail.com], [tmw]) +AC_INIT([The Mana World], [0.0.26], [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 fefa8bcb..d05dd5cb 100644 --- a/data/help/changes.txt +++ b/data/help/changes.txt @@ -3,6 +3,13 @@ ##3 === RECENT CHANGES === + 0.0.26 (29 August 2008) + - Added support for a newer version of eAthena server + - Added support for showing custom being effects + - Added new features to the particle engine + - Position names and chat such that there is no overlap, when possible + - Fixed a crash when loading a corrupt map that has too much layer data + 0.0.25 (27 July 2008) - Added support for whispering to other players - Added ability to ignore other players @@ -62,19 +69,3 @@ - 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 - - Added a cursor to indicate targeted enemy - - Added new program icon - - Added a man page for UNIX like systems - - Added the --version command line parameter - - Improved MacOS X release - - Screenshots are now saved in the .tmw directory on UNIX like systems - - Magic pink is no longer used for transparency (fixes issues with that on Mac) - - Fixed difficulties with resizing windows - - Fixed misleading error message when connecting fails - - Fixed wrong error message when account name already exists - - Fixed crash when deleting a character - - Fixed error message when creating a new character fails - - Fixed updating problem when using scrollwheel to change shop selection - diff --git a/data/help/header.txt b/data/help/header.txt index d41c5ff7..462deaa2 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.25 ##2Date:##327 July 2008 + ##2Version:##6 0.0.26 ##2Date:##329 August 2008 ##2 Website: http://themanaworld.org diff --git a/src/winver.h b/src/winver.h index a276fde5..4de9bbe5 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 25 +#define VER_RELEASE 26 #define VER_BUILD 0 -#define PACKAGE_VERSION "0.0.25" +#define PACKAGE_VERSION "0.0.26" -- cgit v1.2.3-70-g09d2