summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-12 00:00:11 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-12 00:49:21 +0100
commit15db43b1b5721ab120f4af909e90cb46d54b735e (patch)
tree094d7552a266f559658a1f0b99f69cbe394d0553
parent665c16c430453393b4c4d730ac6ab7037c4fbf38 (diff)
downloadmana-client-15db43b1b5721ab120f4af909e90cb46d54b735e.tar.gz
mana-client-15db43b1b5721ab120f4af909e90cb46d54b735e.tar.bz2
mana-client-15db43b1b5721ab120f4af909e90cb46d54b735e.tar.xz
mana-client-15db43b1b5721ab120f4af909e90cb46d54b735e.zip
Updated version to 0.0.28.1
Also updated NEWS file with changes since 0.0.28.
-rw-r--r--CMakeLists.txt2
-rw-r--r--NEWS9
-rw-r--r--README2
-rwxr-xr-xconfigure.ac2
-rw-r--r--data/help/changes.txt24
-rw-r--r--data/help/header.txt2
-rw-r--r--src/main.h2
-rw-r--r--src/winver.h4
8 files changed, 25 insertions, 22 deletions
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"