Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-03-26 | Major clean up of ChatTab handling | Jared Adams | 30 | -328/+291 | |
ChatTabs now manage their own adding/removal from the chat window, which lost most of it's chat related messages. Whisper handling is stil done by the ChatWindow, but it no longer manages any other tabs. ChannelTab handling is now the sole responsability of the Channels they are attached to. The general tab is handled by Game. | |||||
2009-03-26 | Add whisper tabs for TMWServ | Jared Adams | 1 | -6/+1 | |
2009-03-26 | Add WhisperTabs | Jared Adams | 8 | -17/+183 | |
2009-03-27 | Removed the unused BuddyList class | Bjørn Lindeijer | 4 | -204/+0 | |
This class would store the buddy list in a file on the client, which is really not that useful. It was removed before in d268447e18c6e3edd80658f8f8d4317740c33af9, but apprently had come back with the merge with mainline. | |||||
2009-03-27 | Fixed name of "UpdateSliders" and reduced redundant docs | Bjørn Lindeijer | 6 | -59/+25 | |
2009-03-27 | Fixed include structure in resource/ directory | Bjørn Lindeijer | 52 | -309/+314 | |
There is also a new rule that trivial constructors and destructors should no longer be trivially "documented", since this just takes up space with no gain. | |||||
2009-03-27 | Compile warning fixes | Bjørn Lindeijer | 6 | -25/+21 | |
Mostly unsigned/signed mismatches and an unused variable. | |||||
2009-03-27 | Fix the ColorTypes Macro | Majin Sniper | 2 | -8/+10 | |
2009-03-27 | Fixed duplicate check for item names | Bjørn Lindeijer | 1 | -4/+4 | |
2009-03-26 | Changed includes in utils/ dictory to new guidelines | Bjørn Lindeijer | 9 | -14/+15 | |
2009-03-26 | Fix some bugs with whispers under eAthena | Jared Adams | 1 | -16/+26 | |
2009-03-26 | Fix talking to NPCs | Jared Adams | 1 | -1/+1 | |
2009-03-26 | Add ChannelTab for chat channels | Jared Adams | 12 | -41/+216 | |
This fixes TMWServ compilation form the previous commit. | |||||
2009-03-26 | Move ChatWindow over to ChatTabs | Jared Adams | 8 | -416/+520 | |
TMWServ compilation is likely not functional after this, I didn't check. THe next commit will address that. | |||||
2009-03-26 | First batch of include cleanup | Bjørn Lindeijer | 13 | -61/+64 | |
Since the relative includes are getting ugly and somewhat inconvenient, we'll switch to includes relative to the project root. We've done this for a while already with tmwserv. Another rule which we've always had but was never written down, is that each source file first includes its own header. This is common practice and ensures each header compiles without needing other stuff to be included first. Somebody using Code::Blocks might want to fix the project file by adding the 'src' directory to the list of include paths. | |||||
2009-03-26 | Fixes to file headers and header guards | Bjørn Lindeijer | 90 | -447/+445 | |
Mostly removal of branding for tmwserv related files, as was done for the eAthena client before. | |||||
2009-03-26 | Remove redundancy, fix variable names and other code cleanups | Bjørn Lindeijer | 22 | -219/+190 | |
2009-03-25 | A host of code style fixes | Bjørn Lindeijer | 59 | -130/+130 | |
Mostly putting & and * in the right place and making some getters const. | |||||
2009-03-25 | Fixed some headers of recently added files | Bjørn Lindeijer | 4 | -14/+10 | |
2009-03-25 | Merge branch 'origin/master' | Bjørn Lindeijer | 6 | -8/+106 | |
Conflicts: .mailmap | |||||
2009-03-25 | Don't crash cause of deleting a model twice | Bjørn Lindeijer | 1 | -3/+0 | |
This reverts commit c2e4a7a70971355f1446bb01053af8a1da8c98e1. | |||||
2009-03-25 | Merge branch 'eathena/master' | Bjørn Lindeijer | 185 | -2582/+5836 | |
Conflicts: A lot of files. | |||||
2009-03-24 | Remove some unneeded #ifdefs in SpriteDef | Jared Adams | 2 | -4/+0 | |
2009-03-24 | Forgot to add eAthena's item handler | Jared Adams | 2 | -0/+102 | |
2009-03-24 | Updated version to 0.0.29 in all the other places | Thorbjørn Lindeijer | 2 | -4/+4 | |
2009-03-23 | Merge branch 'aethyra/master' | Bjørn Lindeijer | 110 | -1039/+2336 | |
Conflicts: Many files. | |||||
2009-03-23 | Change version to 0.0.29 and label in the GUI | Jared Adams | 1 | -2/+11 | |
2009-03-23 | Move all TMWServ-specific code to net/tmwserv | Jared Adams | 72 | -225/+234 | |
Also fix several instances where the same net handler was being used for both servers, and a few other related oddities. | |||||
2009-03-23 | Fix CommandHandler for TMWServ | Jared Adams | 1 | -2/+4 | |
2009-03-23 | Make some getters const | Jared Adams | 2 | -3/+3 | |
2009-03-23 | Remove the CHATSKILL struct | Jared Adams | 1 | -9/+0 | |
2009-03-23 | Remove extra function for skill messages | Jared Adams | 1 | -95/+89 | |
2009-03-23 | Merge eA's command handling into CommandHandler | Jared Adams | 10 | -627/+503 | |
Also drop Aethyra's custom magic code | |||||
2009-03-22 | Move handling of eA skill messages to SkillHandler | Jared Adams | 3 | -151/+132 | |
2009-03-22 | Fix chat under eAthena | Jared Adams | 3 | -79/+73 | |
2009-03-22 | Fixed some compiler warnings | Bjørn Lindeijer | 3 | -10/+13 | |
Superfluous semicolons, initialization order and signed/unsigned mismatches. | |||||
2009-03-22 | Fixed loading of units when skipping updates | Bjørn Lindeijer | 1 | -2/+3 | |
2009-03-22 | Merged the tmwserv client with the eAthena client | Bjørn Lindeijer | 249 | -3557/+19017 | |
This merge involved major changes on both sides, and as such took several weeks. Lots of things are expected to be broken now, however, we now have a single code base to improve and extend, which can be compiled to support either eAthena or tmwserv. In the coming months, the plan is to work towards a client that supports both eAthena and tmwserv, without needing to be recompiled. Conflicts: Everywhere! | |||||
2009-03-19 | Be sure to free the window icon | Jared Adams | 1 | -1/+5 | |
2009-03-19 | Throttle framerates down to save CPU cycles. Now that we're getting high | Ira Rice | 3 | -18/+25 | |
framerates in OpenGL even on older hardware, this should be done to conserve on CPU usage, rather than stressing it with more frames than the monitor can render. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-19 | Be sure to free the window icon | Jared Adams | 1 | -1/+5 | |
2009-03-19 | Reduced down label code. | Ira Rice | 1 | -29/+1 | |
Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-19 | Forgot to remove some now unneeded includes. | Ira Rice | 4 | -4/+0 | |
Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-19 | Made the plus and minus buttons in the last commit look more | Ira Rice | 5 | -10/+12 | |
aesthetically pleasing. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-19 | Reformatted the item amount window and the buy/sell windows so that | Ira Rice | 10 | -62/+156 | |
their guis are similarly laid out. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-19 | Simplified trading dialog controls. | Ira Rice | 3 | -36/+22 | |
Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-19 | Some minor cleanups in a few windows and build scripts, as well as | Ira Rice | 6 | -303/+16 | |
fixing tables to correct the highlights to draw where they're supposed to, as well as at the opacity they're supposed to. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-03-19 | Make sure positionable dialogs start out centered | Jared Adams | 23 | -20/+57 | |
2009-03-19 | Port Progressbar to TextRenderer | Majin Sniper | 1 | -23/+8 | |
2009-03-19 | Port Progressbar to TextRenderer | Majin Sniper | 2 | -14/+10 | |