diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | NEWS | 6 | ||||
-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 |
7 files changed, 17 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6db059fa..3da9a617 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ PROJECT(TMW) -SET(VERSION 0.0.22.1) +SET(VERSION 0.0.22.2) # where to look for cmake modules SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules) @@ -1,4 +1,9 @@ -2007-02-13 Philipp Sehmisch <tmw@crushnet.org> +2007-02-15 Bjørn Lindeijer <bjorn@lindeijer.nl> + + * src/winver.h, README, configure.ac, data/help/header.txt, NEWS, + CMakeLists.txt: Changed version to 0.0.22.2. + +2007-02-13 Philipp Sehmisch <tmw@crushnet.org> * src/gui/register.cpp, src/logindata.h, src/main.cpp: Fixed the _M/_F username bug. @@ -1,5 +1,9 @@ -0.0.22.2 (...) +0.0.22.2 (15 February 2007) - Updated to work with Guichan 0.6.1 +- Changed to new default server (server.themanaworld.org) +- Changed custom mouse cursor +- Fixed the issue where _M or _F is appended to the username +- Fixed problem with Cancel button in update dialog 0.0.22.1 (15 January 2007) - Updated to work with Guichan 0.6.0 (older versions no longer supported) @@ -1,7 +1,7 @@ THE MANA WORLD ============== - Version: 0.0.22.1 Date: 15/01/2007 + Version: 0.0.22.2 Date: 15/02/2007 Development team: diff --git a/configure.ac b/configure.ac index 22f38faf..881d8cbb 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([The Mana World], [0.0.22.1], [elvenprogrammer@gmail.com], [tmw]) +AC_INIT([The Mana World], [0.0.22.2], [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 aef87a45..ff94abe4 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.22.1 ##2Date:##315 January 2007 + ##2Version:##6 0.0.22.2 ##2Date:##315 February 2007 ##2 Website: http://themanaworld.org diff --git a/src/winver.h b/src/winver.h index 87f89804..0b67da88 100644 --- a/src/winver.h +++ b/src/winver.h @@ -2,5 +2,5 @@ #define VER_MAJOR 0
#define VER_MINOR 0
#define VER_RELEASE 22
-#define VER_BUILD 1
-#define PACKAGE_VERSION "0.0.22.1"
+#define VER_BUILD 2
+#define PACKAGE_VERSION "0.0.22.2"
|