Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-04-18 | Remove illegal macro names starting with underscore and capital | Ben Longbons | 8 | -19/+19 | |
2011-04-18 | Added a client-side position tolerance check. | Yohann Ferreira | 2 | -10/+26 | |
This is based on the information given by the server which now permit resyncs when necessary. Reviewed-by: Thorbjorn. | |||||
2011-04-18 | A bit of cleanup in the way the Client pops up error dialogs | Thorbjørn Lindeijer | 3 | -82/+52 | |
No point in using mCurrentDialog for the OkDialog, since it will clean up after itself, as was pointed out in many places throughout the code. Now there are two convenience functions for popping up the OkDialog and having it change to a specified state afterwards. This also gets rid of the 4 different ActionListener classes that existed solely for this purpose. Reviewed-by: Yohann Ferreira | |||||
2011-04-16 | Removed ENet version checks since only 1.3 should be used anyway | Thorbjørn Lindeijer | 3 | -14/+0 | |
Reviewed-by: Stefan Dombrowski | |||||
2011-04-16 | Removing unused enum EMAILCHG_EXISTS_EMAIL | Stefan Dombrowski | 1 | -5/+0 | |
The protocol uses ERRMSG_EMAIL_ALREADY_EXISTS instead. Reviewed-by: Jaxad0127 | |||||
2011-04-11 | Implemented a simple non-blocking fadeOutAndPlay system. | Yohann Ferreira | 4 | -12/+81 | |
It's currently used when changing maps. Resolves: TMW-Mantis: #750. Reviewed-by: Thorbjorn. | |||||
2011-04-11 | Adjust action timer to something reasonable | Jared Adams | 1 | -2/+2 | |
1 action per second was annoyingly slow. Reviewed-by: Thorbjørn Lindeijer Reviewed-by: Yohann Ferreira | |||||
2011-04-11 | Disable sprite caching for now | Jared Adams | 1 | -0/+5 | |
Reviewed-by: Thorbjørn Lindeijer | |||||
2011-04-11 | Fixing uninitialized variables in guild invite | Stefan Dombrowski | 1 | -4/+3 | |
2011-04-09 | Renamed Listener to EventListener in C::B | Stefan Dombrowski | 1 | -2/+2 | |
The files had been renamed in commit 72d83cf5ae523f16fd5313c20f711f6030350d05. | |||||
2011-04-09 | Removed a lot of useless "documentation" | Thorbjørn Lindeijer | 98 | -488/+25 | |
I have to admit I contributed a large part of these. Sorry for that. Less empty space, more attention to the code. Acked-by: Jared Adams | |||||
2011-04-09 | Renamed Listener to EventListener | Thorbjørn Lindeijer | 27 | -62/+62 | |
Makes it clear what kind of listener it is, since there are other listener classes as well. Acked-by: Jared Adams | |||||
2011-04-09 | Removed the Mana namespace | Thorbjørn Lindeijer | 60 | -370/+343 | |
It's just an annoyance when it's only applied to a few classes. Either we place everything in this namespace or nothing, and at the moment I don't see any rationale for placing everything in a Mana namespace. Acked-by: Jared Adams | |||||
2011-04-09 | Moved Channels to Mana::Event::Channel | Thorbjørn Lindeijer | 51 | -193/+194 | |
Acked-by: Jared Adams | |||||
2011-04-09 | Moved Events to Mana::Event::Type | Thorbjørn Lindeijer | 37 | -213/+215 | |
Acked-by: Jared Adams | |||||
2011-04-07 | Fix compiler warning about incorrect use of the logger's log member | Chuck Miller | 1 | -1/+1 | |
Reviewed-By: Jared Adams | |||||
2011-04-02 | Fix a bug with SkillDialog which doesn't listen to attributes changed | Blue Sans Douze | 2 | -1/+18 | |
2011-03-30 | Fixing zombies in char select dialog | Stefan Dombrowski | 1 | -2/+21 | |
How to reproduce the bug: * Delete a character. * Create a new character in another slot. * Now the deleted character reappears. Also fixing handling of error messages from character select response. This resolves http://bugs.manasource.org/view.php?id=322 Reviewed-by: Jaxad0127, VUT | |||||
2011-03-26 | Merge branch 'master' of gitorious.org:mana/mana | Blue Sans Douze | 8 | -3519/+3528 | |
2011-03-26 | Add search bar to storage and inventory windows | Blue Sans Douze | 5 | -18/+112 | |
Reviewed-by: thorbjorn | |||||
2011-03-25 | Merge branch '0.5' | Thorbjørn Lindeijer | 8 | -3519/+3528 | |
Conflicts: CMakeLists.txt po/pt_BR.po po/ru.po src/winver.h | |||||
2011-03-22 | Fix a warning on serverdialog | Blue Sans Douze | 1 | -2/+1 | |
2011-03-22 | Add option for sorting servers list (issue 316) | Blue Sans Douze | 4 | -0/+103 | |
2011-03-15 | Updating enet to version 1.3.1 | Stefan Dombrowski | 6 | -31/+62 | |
This makes the connection much more reliable. | |||||
2011-03-15 | Implemented a screen shake effect system in the viewport class. | Philipp Sehmisch | 6 | -1/+106 | |
The screen can either be "nudged" in a random direction with a specific intensity or you can define an exact x and y intensity, decay factor and duration. On a tmwAthena server an effect is triggered when the player character dies. A method for stopping all shake effects is also implemented, but not used yet. I added a netcode message for Manaserv to trigger an effect server-sided. Because our protocol has currently no way to transport floating point values, the decay is transported as a fixed point value with 4 decimals which is entirely sufficient for this purpose. | |||||
2011-03-13 | Bumped version to 0.5.1 and updated the NEWS filev0.5.1 | Thorbjørn Lindeijer | 7 | -13/+34 | |
2011-03-10 | Fix the pathfinding method to acccept every walkmasks. | Yohann Ferreira | 1 | -1/+1 | |
Previously, the walkmask was hardcoded to handling walls. Trivial. | |||||
2011-03-10 | Wrap the open and closed list members in path finding. | Yohann Ferreira | 2 | -12/+25 | |
This prevent some weird things happening in path finding when playing for a very long time. Reviewed-by: Thorbjorn. | |||||
2011-03-08 | Added a tab scrolling system in tabarea. | Yohann Ferreira | 2 | -1/+189 | |
Currently working on the chat window. Resolves: Mana-Mantis #308. Reviewed-by: Thorbjorn. | |||||
2011-03-05 | Fixing removal of custom server | Stefan Dombrowski | 1 | -1/+1 | |
The server got selected from a list that still contained the unwanted server. | |||||
2011-03-04 | Empty std::string don't need to be constructed from "" | Thorbjørn Lindeijer | 1 | -3/+3 | |
2011-02-27 | Updated pt_BR translation thanks to Alastrim. | Yohann Ferreira | 1 | -22/+17 | |
2011-02-27 | Committed Russian translation from Mpa4Hu. | Yohann Ferreira | 1 | -2958/+2879 | |
2011-02-23 | Updating of filename manaserv_protocol.h in C::B | Stefan Dombrowski | 1 | -1/+1 | |
2011-02-21 | Merge branch '0.5' | Thorbjørn Lindeijer | 9 | -23/+93 | |
Translation file updates ignored. Conflicts: src/client.cpp src/commandhandler.cpp src/gui/popupmenu.cpp src/localplayer.cpp | |||||
2011-02-21 | Renamed local data directory back to just "mana" | Thorbjørn Lindeijer | 1 | -7/+8 | |
This name represents the name of the client software, not the branding it received. Cleaned up the rest of the code a bit. Reviewed-by: Jared Adams | |||||
2011-02-21 | Updated mana.files | Thorbjørn Lindeijer | 1 | -569/+569 | |
2011-02-21 | Use 'git ls-files' for updating the Qt Creator project list of files | Thorbjørn Lindeijer | 1 | -8/+6 | |
Conveniently avoids including any generated files in the list. | |||||
2011-02-21 | Fixing segmentation fault in chathandler | Stefan Dombrowski | 1 | -5/+7 | |
Reviewed-by: Jaxad0127, Thorbjorn | |||||
2011-02-20 | Renamed default branding package from mana to manasource. | Yohann Ferreira | 1 | -5/+5 | |
Resolves: Mana-mantis #236. Reviewed-by: Mpa4Hu. | |||||
2011-02-20 | make update-po. | Yohann Ferreira | 15 | -43004/+43840 | |
Was needed and done on Alastrim righteous request. Trivial. | |||||
2011-02-20 | Add support for CSV map data | Jared Adams | 1 | -1/+34 | |
Reviewed-by: Freeyorp | |||||
2011-02-19 | Reorder store option to the top, so it is more useful. | Ben Longbons | 1 | -5/+5 | |
2011-02-19 | Showing amount of picked up items in particle notification | Stefan Dombrowski | 1 | -1/+5 | |
2011-02-19 | Minor code formatting and fixed a comment. | Yohann Ferreira | 1 | -2/+4 | |
Trivial fix. | |||||
2011-02-17 | Specific messages for each pickup failure reason. | Ben Longbons | 3 | -9/+39 | |
Reviewed-by: Jaxad0127 | |||||
2011-02-17 | Add particle notification for "Unable to pick up item." | Ben Longbons | 1 | -0/+6 | |
2011-02-16 | Fixing query command handling | Stefan Dombrowski | 1 | -1/+15 | |
Tab completion puts quotes around nicks. The query command now removes the quotes. Also avoiding the opening of a tab if no nick was given. Reviewed-by: Freeyorp | |||||
2011-02-15 | Fix compilation on Haiku and set config and data paths for it. | DarkWind | 5 | -3/+15 | |
2011-02-14 | Set the toolchain windres binary, and add an example path to mingw32. | Yohann Ferreira | 1 | -0/+5 | |