diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | NEWS | 5 | ||||
-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, 14 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c00bdff6..6db059fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ PROJECT(TMW) -SET(VERSION 0.0.22) +SET(VERSION 0.0.22.1) # where to look for cmake modules SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules) @@ -1,6 +1,6 @@ 2007-01-14 Eugenio Favalli <elvenprogrammer@gmail.com> - * src/gui/updatewindow.cpp, src/main.cpp, tmw.cbp: Fixed windows + * src/gui/updatewindow.cpp, src/main.cpp, tmw.cbp: Fixed windows headers issues. 2007-01-14 Bjørn Lindeijer <bjorn@lindeijer.nl> @@ -35,6 +35,8 @@ src/gui/chatinput.cpp, src/net/tradehandler.cpp, src/net/playerhandler.cpp: Upgraded to Guichan 0.6.0 (merge from guichan-0.6.0 branch). + * src/winver.h, configure.ac, data/help/header.txt, NEWS, README, + CMakeLists.txt: Updated version to 0.0.22.1. 2007-01-13 Bjørn Lindeijer <bjorn@lindeijer.nl> @@ -1,3 +1,8 @@ +0.0.22.1 (14 January 2007) +- Updated to work with Guichan 0.6.0 (older versions no longer supported) +- Fixed mouse coordinates in debug window +- Fixed clicking on GUI to cause the player to start walking sometimes + 0.0.22 (24 December 2006) - Added support for female-specific equipment graphics - Added support for monster sounds @@ -1,7 +1,7 @@ THE MANA WORLD ============== - Version: 0.0.22 Date: 24/12/2006 + Version: 0.0.22.1 Date: 14/01/2007 Development team: diff --git a/configure.ac b/configure.ac index d7c07e69..22f38faf 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([The Mana World], [0.0.22], [elvenprogrammer@gmail.com], [tmw]) +AC_INIT([The Mana World], [0.0.22.1], [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 4f4c9615..5594a081 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 ##2Date:##324 December 2006 + ##2Version:##6 0.0.22.1 ##2Date:##314 January 2006 ##2 Website: http://themanaworld.org diff --git a/src/winver.h b/src/winver.h index 12294fd9..87f89804 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 0
-#define PACKAGE_VERSION "0.0.22"
+#define VER_BUILD 1
+#define PACKAGE_VERSION "0.0.22.1"
|