Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-04-17 | Changed eAthena protocol name to TmwAthena and changed the config files ↵ | Bertram | 1 | -3/+3 | |
accordingly. This makes room for the actual eAthena protocol future inclusion. | |||||
2010-04-03 | Fix a crash after changing servers | Jared Adams | 1 | -1/+0 | |
Reviewed-by: Chuck Miller | |||||
2010-02-21 | Do some more copyright header cleanups | Jared Adams | 1 | -1/+1 | |
Fix "(C) 2009-2009" to just "(C) 2009" Fix "(C) 2010 TMW" to "(C) 2010 Mana" Remove TMW compyright on (hopefully all) files added after 0.0.29.1 | |||||
2010-02-22 | Modify copyright headers | Freeyorp | 1 | -1/+2 | |
2010-02-20 | License header update for The Mana Client | Thorbjørn Lindeijer | 1 | -4/+3 | |
2010-02-07 | Updated Copyright year to 2010! | Bertram | 1 | -1/+1 | |
Also added the update copyright tool from the Wormux Team. ( And not forgetting credit's due. :P ) | |||||
2010-01-31 | Unify eAthena and manaserv support in to one build. | Daniel Bradshaw | 1 | -25/+9 | |
Finish support for server types in the server dialog. Using the new server type function, strip out ifdefs, replacing them with if blocks for later merging in smaller atomic commits. Remove any remaining references to the support defs, including in build system. | |||||
2010-01-28 | Added virtual destructors, some implicit casts, and a couple of type changes. | Daniel Bradshaw | 1 | -1/+2 | |
Many warnings removed. Reviewed-by: Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | |||||
2010-01-12 | Standardize header order | Jared Adams | 1 | -0/+1 | |
Also remove some extra new lines and fix eAthena's PartyTab define guards. | |||||
2010-01-10 | Change code style | Andrei Karas | 1 | -1/+2 | |
2010-01-08 | Fix a segfault when exiting before netcode is loaded | Jared Adams | 1 | -3/+12 | |
2009-12-05 | Add a type member to ServerInfo and code for it | Jared Adams | 1 | -6/+45 | |
Some of the code is waiting for ifdef removal. | |||||
2009-12-03 | Remove some unneeded _SUPPORt ifdefs | Jared Adams | 1 | -4/+1 | |
2009-12-02 | Centralize netcode handler instances in Net | Jared Adams | 1 | -13/+13 | |
Instead of each netcode making the global variables and Net referencing them, Net now makes them and the netcodes reference them. Also remove an innappropriate ChatHandler reference from eA's AdminHandler. | |||||
2009-11-03 | Move ManaServ guild code into GuildHandler | Jared Adams | 1 | -2/+2 | |
Ad start eAthena's GuildHandler | |||||
2009-10-29 | Fix changing servers under eAthena | Jared Adams | 1 | -2/+2 | |
2009-10-24 | REplace instances of TMW with Mana | Jared Adams | 1 | -4/+4 | |
2009-10-13 | Add an asynchronous download class | Jared Adams | 1 | -5/+5 | |
And use it to download news, updates, and the server list. | |||||
2009-10-04 | Removed debugging output | Thorbjørn Lindeijer | 1 | -1/+0 | |
2009-10-03 | Do some more post-merge cleanup | Jared Adams | 1 | -2/+17 | |
Fixes a few more bugs | |||||
2009-09-30 | Merge login state machines for both clients | Jared Adams | 1 | -14/+33 | |
Also do some cleanup and refactoring of related code. | |||||
2009-07-13 | Rename Net::SkillHandler to Net::SpecialHandler | Jared Adams | 1 | -4/+4 | |
SkillHandler::up moved to PlayerHandler::increaseSkill | |||||
2009-04-07 | Forgot to finish Net::getPartyHandler() | Jared Adams | 1 | -2/+2 | |
2009-04-07 | Make GeneralHandlers for both networks | Jared Adams | 1 | -4/+11 | |
Also make Net::LogoutHandler | |||||
2009-04-06 | Implement TMWServ's CharHandler | Jared Adams | 1 | -2/+2 | |
Also cleanup character creation, which isn't functional at the moment. | |||||
2009-04-06 | Remove unneeded includes | Jared Adams | 1 | -17/+0 | |
2009-04-06 | Add TMWServ's SkillHandler | Jared Adams | 1 | -8/+8 | |
Also namespace both Player- and TradeHandlers | |||||
2009-04-05 | Implement TMWServ's Admin-, Chat-, and MapHandlers | Jared Adams | 1 | -6/+12 | |
2009-04-05 | Implement TMWServ's NpcHandler | Jared Adams | 1 | -10/+6 | |
2009-04-06 | Use a namespace to keep apart implementations of network handlers | Bjørn Lindeijer | 1 | -3/+12 | |
Since we'll have three "InventoryHandler" classes, etc. this shows an example of how we can compile with all of them at the same time using namespaces. We'll have: Net::InventoryHandler - the interface EAthena::InventoryHandler - the eAthena implementation TmwServ::InventoryHandler - the tmwserv implementation Maybe we'll find a better way later, but for now this works. I'm not convinced yet that using namespaces is better than just using longer class names like EAthenaInventoryHandler. | |||||
2009-04-05 | Fixed compile warnings | Bjørn Lindeijer | 1 | -0/+10 | |
Initialization order, return values, unused variables, missing enumerator. | |||||
2009-04-03 | Fill in TMWServ's TradeHandler | Jared Adams | 1 | -0/+111 | |
Also started temparary implementation of the Net::getXHandler() methods and started using them. |