Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-01-26 | Merge branch 'master' into lpc2012lpc2012 | Thorbjørn Lindeijer | 71 | -2297/+1194 | |
2024-01-25 | Always use C++11 and remove related compatibility option/code | Thorbjørn Lindeijer | 5 | -23/+5 | |
2024-01-25 | Removed X11 dependency | Thorbjørn Lindeijer | 2 | -9/+0 | |
It was only used for the clipboard, which is now interacted with through SDL 2. | |||||
2024-01-25 | Fixed parent for OkDialog in social window | Thorbjørn Lindeijer | 1 | -1/+1 | |
2024-01-25 | Added assignment operator for Vector | Thorbjørn Lindeijer | 1 | -0/+8 | |
2024-01-25 | Minor includes cleanup | Thorbjørn Lindeijer | 6 | -15/+0 | |
2024-01-25 | Ported to SDL2 | Thorbjørn Lindeijer | 35 | -1100/+656 | |
2024-01-24 | Increased client version to 20 | Thorbjørn Lindeijer | 1 | -1/+1 | |
It is unclear whether there are any protocol differences that should be dealt with at this point, but without this the login fails with "Client too old." error. | |||||
2024-01-24 | Add error for non tradable items. | Andrei Karas | 1 | -0/+5 | |
2024-01-24 | Removed project files for Qt Creator | Thorbjørn Lindeijer | 6 | -599/+2 | |
Qt Creator can just open the CMakeLists.txt these days. | |||||
2024-01-24 | Fixed potential crash on exit | Thorbjørn Lindeijer | 2 | -4/+3 | |
2024-01-24 | Removed undefined '__EXPORT__' | Thorbjørn Lindeijer | 1 | -5/+4 | |
There should be no need to export the functions explicitly, given that they are compiled as part of the executable. | |||||
2024-01-24 | Fixed a few coding errors the compiler complained about | Thorbjørn Lindeijer | 3 | -3/+3 | |
2024-01-24 | Fixed compilation issues and use of deprecated C++ features | Thorbjørn Lindeijer | 15 | -44/+44 | |
* Fixed compiler errors due to dynamic exception specifications * Replace std::auto_ptr with std::unique_ptr * Replace std::mem_fun with std::mem_fn * Prefix for_each with std:: (apparently not needed before) * Just use lambda instead of std::bind2nd * Removed usages of std::unary_function | |||||
2024-01-24 | Updated website URL to https | Thorbjørn Lindeijer | 1 | -1/+1 | |
2013-09-08 | Fixing packet length of CMSG_NPC_STR_RESPONSE | Stefan Dombrowski | 1 | -1/+1 | |
The CMSG_NPC_STR_RESPONSE packet transmits a string of variable length. | |||||
2013-06-15 | Fixed minor issues in the russian translation | Kenny690 | 1 | -3/+3 | |
2013-06-15 | Added Kenny690 to the AUTHORS file | Erik Schilling | 1 | -0/+1 | |
2013-06-15 | Updated russian translation | Kenny690 | 1 | -430/+407 | |
2013-06-08 | Fixed MessageIn::getUnreadLength | Thorbjørn Lindeijer | 2 | -2/+8 | |
It should not return large numbers after reading past the end of a message. This can cause infinite loops in several places in the client when a message happened to be shorter than expected. | |||||
2013-05-24 | Merge remote-tracking branch 'origin/master' into lpc2012 branch | Przemysław Grzywacz | 38 | -747/+1110 | |
2013-05-22 | paths.xml content is now read from settings.xml | Przemysław Grzywacz | 3 | -11/+21 | |
2013-05-09 | Changed default serverlist.xml URL to avoid redirect | Thorbjørn Lindeijer | 2 | -2/+2 | |
Previously the redirect was from www.manasource.org to manasource.org. | |||||
2013-05-07 | items.xml can be used from settings.xml | Przemysław Grzywacz | 4 | -187/+165 | |
2013-05-04 | Client-side settings are now available from settings.xml | Przemysław Grzywacz | 27 | -550/+913 | |
2013-05-04 | Fixed codeblocks project | Erik Schilling | 1 | -2/+2 | |
2013-05-02 | Fixed network layer doing delayed actor deletion | Thorbjørn Lindeijer | 7 | -7/+19 | |
The delayed actor deletion was meant to be used during the logic calls, to avoid modifying the container while it is being iterated. The deletions happening from the network layer are not done while iterating the set of actors, so it can delete immediately. This fixes an issue where an NPC would disappear when changing appearance on tmwAthena, because this was implemented as a remove + add, which broke due to the delayed deletion. Mantis-issue: 507 Reviewed-by: Jared Adams | |||||
2013-05-02 | Fixed the shortcut window position | Thorbjørn Lindeijer | 1 | -1/+1 | |
It's meant to be fixed to the bottom-right. | |||||
2013-05-02 | Merge branch 'master' into lpc2012 | Thorbjørn Lindeijer | 21 | -108/+346 | |
This merge reverts change 3b22c2cf170c877904dcef5a4af03ac360bd0581. Conflicts: src/gui/charcreatedialog.cpp src/net/manaserv/manaserv_protocol.h | |||||
2013-04-30 | Hide attribute sliders on character creation when appropriate | Thorbjørn Lindeijer | 2 | -53/+69 | |
When the minimum and maximum values of the attributes are equal, then there is nothing for the player to customize and the sliders are not shown. At the same time the dialog has been fixed to resize properly to any number of modifiable attributes. | |||||
2013-04-30 | Bumped protocol version to 3 | Thorbjørn Lindeijer | 1 | -1/+1 | |
This is so that master and lpc2012 use the same protocol again, where starting attributes are sent on character creation. | |||||
2013-04-29 | Single xml solution - compatibility with skill-set and special-set | Przemysław Grzywacz | 2 | -2/+4 | |
Mana-mantis: #506. | |||||
2013-04-27 | Small cleanup | Thorbjørn Lindeijer | 2 | -5/+1 | |
2013-04-27 | Added support for charcreation.xml settings | Thorbjørn Lindeijer | 7 | -13/+218 | |
This file was introduced by ManaPlus as a way of configuring the character creation process. It defines the number of hair styles and colors, how stat points should be divided and what the starting equipment of the player is. The minimum and maximum hair color/style IDs are not supported at the moment. This is mostly a backport of ManaPlus commits 10cf52b5 and dcc18eba, with some style changes. Mantis-issue: 501 Reviewed-by: Ablu | |||||
2013-04-27 | Always read the attributes.xml file | Thorbjørn Lindeijer | 9 | -33/+47 | |
This way it can also be used when connecting to a tmwAthena server for customizing the min/max of attributes and the amount of starting points. Mantis-issue: 501 Reviewed-by: Ablu | |||||
2013-04-13 | Removed unused IntMap typedef | Thorbjørn Lindeijer | 1 | -2/+0 | |
2013-02-20 | Bumped client protocol version | Erik Schilling | 1 | -1/+1 | |
2013-02-20 | Merge branch 'master' into lpc2012 | Erik Schilling | 15 | -139/+88 | |
Conflicts: src/graphics.h src/gui/setup_video.cpp src/gui/specialswindow.cpp src/gui/viewport.cpp src/gui/widgets/container.cpp src/gui/widgets/container.h | |||||
2012-12-05 | Ignore unsupported messages in public chat | Andrei Karas | 1 | -0/+5 | |
Reviewed-by: Erik Schilling. | |||||
2012-10-22 | Client side patch for change of sending order of gender | Erik Schilling | 2 | -8/+13 | |
Reviewed-by: Stefan Beller. | |||||
2012-10-11 | Client side patch for change of sending order of gender | Erik Schilling | 2 | -8/+13 | |
Reviewed-by: Stefan Beller. | |||||
2012-10-11 | Give feedback when guild invite failed | Erik Schilling | 1 | -0/+4 | |
Server was already sending a error message. But the client ignored it. Reviewed-by: Stefan Beller. | |||||
2012-09-18 | Added travis build information file | Erik Schilling | 1 | -0/+8 | |
2012-08-31 | Turned off C++11 mode by default to avoid linker issues | Erik Schilling | 1 | -1/+1 | |
Compiling in C++11 mode causes trouble when using GCC 4.7 and linking to a version of Guichan that was not compiled in C++11 mode. Reviewed-by: bjorn. | |||||
2012-08-26 | Convert AUTHORS from ISO-8859-1 to UTF-8 | Ben Longbons | 1 | -4/+4 | |
2012-08-26 | Fixed incorrect-fsf-address error by rpmlint | Erik Schilling | 1 | -20/+19 | |
The COPYING file was not 100% equal to the original license file. rpmlint raises an error here. Reviewed-by: Stefan Beller. | |||||
2012-08-15 | Removed outdated FAQ.txt | Erik Schilling | 1 | -88/+0 | |
Reviewed-by: bjorn. | |||||
2012-08-14 | Updated Xcode project for 10.7 | Socapex | 3 | -0/+2113 | |
Tested-by: Frost. | |||||
2012-08-14 | Can now build using cmake on OSX | Socapex | 9 | -82/+89 | |
Tested-by: Frost. | |||||
2012-08-14 | Updated Xcode project for 10.7 | Socapex | 3 | -0/+2113 | |
Tested-by: Frost. |