From 665c16c430453393b4c4d730ac6ab7037c4fbf38 Mon Sep 17 00:00:00 2001 From: David Athay Date: Wed, 11 Feb 2009 09:30:20 +0000 Subject: OSX version fix (cherry picked from commit 8046bb2626b30fecdcea54eb0aa3349cdb7d277b) --- src/main.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main.h') diff --git a/src/main.h b/src/main.h index 0e884fb2..69929957 100644 --- a/src/main.h +++ b/src/main.h @@ -28,6 +28,8 @@ #include "../config.h" #elif defined WIN32 #include "winver.h" +#elif defined __APPLE__ +#define PACKAGE_VERSION "0.0.28" #endif #ifndef TMW_DATADIR -- cgit v1.2.3-60-g2f50 From 15db43b1b5721ab120f4af909e90cb46d54b735e Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Thu, 12 Feb 2009 00:00:11 +0100 Subject: Updated version to 0.0.28.1 Also updated NEWS file with changes since 0.0.28. --- CMakeLists.txt | 2 +- NEWS | 9 +++++++++ README | 2 +- configure.ac | 2 +- data/help/changes.txt | 24 +++++++++--------------- data/help/header.txt | 2 +- src/main.h | 2 +- src/winver.h | 4 ++-- 8 files changed, 25 insertions(+), 22 deletions(-) (limited to 'src/main.h') diff --git a/CMakeLists.txt b/CMakeLists.txt index 0ce5d305..b45c5376 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ PROJECT(TMW) -SET(VERSION 0.0.28) +SET(VERSION 0.0.28.1) # where to look for cmake modules SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules) diff --git a/NEWS b/NEWS index 649771dc..a1733536 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +0.0.28.1 (12 February 2009) +- Enabled translations on Windows +- Added command line option to set home directory path +- Tweaked green chat color to be a bit more readable +- Made font size configurable in the config file +- Fixed restoring of punching animation after weapon removal +- Fixed inability to chat while talking to NPCs +- Updated Swedish translation + 0.0.28 (25 January 2009) - Added support for animated map tiles - Added support for internationalization, plus many translations diff --git a/README b/README index 1af4d3a2..4f7b9868 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ THE MANA WORLD ============== - Version: 0.0.28 Date: 25/1/2009 + Version: 0.0.28.1 Date: 12/2/2009 Development team: - See AUTHORS file for a list diff --git a/configure.ac b/configure.ac index 6162dca7..9e05f76f 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([The Mana World], [0.0.28], [themanaworld-devel@lists.sourceforge.net], [tmw]) +AC_INIT([The Mana World], [0.0.28.1], [themanaworld-devel@lists.sourceforge.net], [tmw]) AM_INIT_AUTOMAKE AC_CONFIG_HEADERS([config.h:config.h.in]) AC_LANG_CPLUSPLUS diff --git a/data/help/changes.txt b/data/help/changes.txt index 62eed904..50242b50 100644 --- a/data/help/changes.txt +++ b/data/help/changes.txt @@ -3,6 +3,15 @@ ##3 === RECENT CHANGES === + 0.0.28.1 (12 February 2009) + - Enabled translations on Windows + - Added command line option to set home directory path + - Tweaked green chat color to be a bit more readable + - Made font size configurable in the config file + - Fixed restoring of punching animation after weapon removal + - Fixed inability to chat while talking to NPCs + - Updated Swedish translation + 0.0.28 (25 January 2009) - Added support for animated map tiles - Added support for internationalization, plus many translations @@ -64,18 +73,3 @@ - Fixed multi-channel image dyeing - Fixed updating of money display after buying - 0.0.24.1 (7 April 2008) - - Added /clear command to clear chat window - - Added ability to close quit dialog by pressing ESC - - Added key for targetting nearest player - - Added the possibility to assign particle effects to monsters - - Added possibility to pass through players with key controls - - Fixed crash on exit after connection to server was lost - - Fixed initialization of some variables - - Fixed an error with chat messages without a sender that include a colon - - Fixed minimap to not keep reappearing when hidden - - Fixed a GCC 4.3 compile error - - Fixed music loading from non-default location - - Fixed crash on trying to show out of range emoticon - - Updated Dev-C++ and Code::Blocks project files - diff --git a/data/help/header.txt b/data/help/header.txt index 151eb262..661ec1e7 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.28 ##2Date:##3 25 January 2009 + ##2Version:##6 0.0.28.1 ##2Date:##3 12 February 2009 ##2 Website: http://themanaworld.org diff --git a/src/main.h b/src/main.h index 69929957..7a7be624 100644 --- a/src/main.h +++ b/src/main.h @@ -29,7 +29,7 @@ #elif defined WIN32 #include "winver.h" #elif defined __APPLE__ -#define PACKAGE_VERSION "0.0.28" +#define PACKAGE_VERSION "0.0.28.1" #endif #ifndef TMW_DATADIR diff --git a/src/winver.h b/src/winver.h index 45043409..5f0e1fb2 100644 --- a/src/winver.h +++ b/src/winver.h @@ -2,5 +2,5 @@ #define VER_MAJOR 0 #define VER_MINOR 0 #define VER_RELEASE 28 -#define VER_BUILD 0 -#define PACKAGE_VERSION "0.0.28" +#define VER_BUILD 1 +#define PACKAGE_VERSION "0.0.28.1" -- cgit v1.2.3-60-g2f50