diff options
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | README | 3 | ||||
-rw-r--r-- | The Mana World.dev | 8 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rw-r--r-- | src/gui/char_server.cpp | 4 |
6 files changed, 14 insertions, 10 deletions
@@ -22,6 +22,7 @@ The Mana World Dev Team Neorice (monster sprites, tiles) Rotonen (backstory, art director, music, sound) Talaroc (sprites) + Ti Sing Hao (music) == Misc thanks == @@ -1,9 +1,11 @@ -0.0.12 (~30 April 2005) +0.0.11a (7 April 2005) +- Buttons are now disabled when appropriate - Fixed players standing on top of NPCs - Fixed getting stuck when trying to sell with nothing to sell - Fixed setup dialog windowed/fullscreen switching behaviour -- Fixed gui opacity slider (windows only bug) +- Fixed gui opacity slider (win32) - Fixed building up false inventory when warping +- Fixed crash on startup with sound enabled (win32) 0.0.11 (3 April 2005) - Added new maps, tiles and monsters @@ -1,7 +1,7 @@ THE MANA WORLD ============== - Version: 0.0.11 Date: 3/4/2005 + Version: 0.0.11a Date: 7/4/2005 Development team: @@ -26,6 +26,7 @@ THE MANA WORLD - LordNev (Artist) - jui-feng for helping in server development and php scripts. - SimEdw (Programmer) + - Ti Sing Hao (Music) Powered by: diff --git a/The Mana World.dev b/The Mana World.dev index 96e9c0b9..b6ea4747 100644 --- a/The Mana World.dev +++ b/The Mana World.dev @@ -33,18 +33,18 @@ CompilerSettings=0010001001001000001101 Major=0 Minor=0 Release=11 -Build=0 +Build=1 LanguageID=1033 CharsetID=1252 CompanyName=The Mana World Development Team -FileVersion=0.0.11 +FileVersion=0.0.11a FileDescription=The Mana World InternalName=tmw.exe -LegalCopyright=2004 (C) +LegalCopyright=2004-2005 (C) LegalTrademarks= OriginalFilename=tmw.exe ProductName=The Mana World MMORPG -ProductVersion=0.0.11 +ProductVersion=0.0.11a AutoIncBuildNr=0 [Unit8] diff --git a/configure.ac b/configure.ac index e5d61e05..5290de1d 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([The Mana World], [0.0.11], [umperio@users.sourceforge.net]) +AC_INIT([The Mana World], [0.0.11a], [umperio@users.sourceforge.net]) AC_CONFIG_HEADERS([config.h:config.h.in]) AC_LANG_CPLUSPLUS diff --git a/src/gui/char_server.cpp b/src/gui/char_server.cpp index 057de3c7..d7faf0c6 100644 --- a/src/gui/char_server.cpp +++ b/src/gui/char_server.cpp @@ -55,11 +55,11 @@ ServerSelectDialog::ServerSelectDialog(): 100 - 3 * 5 - cancelButton->getHeight() - scrollArea->getBorderSize())); - serverList->setEventId("ok"); + //serverList->setEventId("ok"); okButton->setEventId("ok"); cancelButton->setEventId("cancel"); - serverList->addActionListener(this); + //serverList->addActionListener(this); okButton->addActionListener(this); cancelButton->addActionListener(this); |