Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2025-05-24 | Switch source code headers to ManaVerse & update copyrights to 2025 | Fedja Beader | 1 | -3/+3 | |
.. instead of manaplus's header. & update copyrights to 2025. Open problem: should it be "The ManaVerse Client", "the ManaVerse client" or something in between in "This file is part of ..." line? All caps is current situation. Squashed with: * update copyright dates for 2025 * Revert "Switch to branch of mplint that checks for manaverse copyright headers" * Change back to uppercase The Why? This line was changed 3 times in history and all had an uppercase The. PS: ManaVerse has no endorsment from the parent project, ManaPlus. * Change to "This file is part of the ManaVerse Client" poppet says 'the' instead of 'The' find . \( -name "*.h" -o -name "*.cpp" -o -name "*.cc" -o -name "*.inc" \) -execdir sed -i -e 's/This file is part of The ManaPlus Client/This file is part of the ManaVerse Client/' {} \+ * Change 'The ManaPlus Client' to 'The ManaVerse Client' in headers find . \( -name "*.h" -o -name "*.cpp" -o -name "*.cc" -o -name "*.inc" \) -execdir sed -i -e '2s/ManaPlus/ManaVerse/' {} \+ * Switch to branch of mplint that checks for manaverse copyright headers .. instead of manaplus's **** mana/plus!179 | |||||
2025-05-21 | Fix copy-paste failure of profiler block names | Fedja Beader | 1 | -3/+3 | |
introduced in 8ad99cc3 / "Add profiler lines into some functions." **** mana/plus!181 | |||||
2025-05-21 | Implement ZC_SOUND / 0x01d3 / processBeingSoundEffect | Fedja Beader | 1 | -4/+14 | |
Squashed with: * Remove TODOs. Repeats and the other two fields are implemented in latest herc, but they set beingID to 0 when repeats are requested... what... Repeats need more in-client support to implement, anyways **** mana/plus!180 | |||||
2025-01-29 | Trim too much newlining | Fedja Beader | 1 | -15/+4 | |
Pointless change, I know. **** mana/plus!115 | |||||
2025-01-28 | Fix typo: opitons -> options | Fedja Beader | 1 | -4/+4 | |
**** mana/plus!114 | |||||
2024-08-28 | Remove silly msg.read* duplication | Fedja Beader | 1 | -11/+9 | |
& shaves ~5KB from debug binary. previd=""; while read -r line; do if [[ $line =~ .*"msg.read"[^\"]*"\""([^\"]*).* ]]; then id="${BASH_REMATCH[1]}"; if [[ "$id" == "$previd" ]]; then printf "%s\n" "$line"; fi; previd="$id"; fi; done < <(grep -r 'msg.read.*' src/net/) **** mana/plus!91 | |||||
2024-03-25 | Typofix Guil -> Guild and insert And | Fedja Beader | 1 | -8/+8 | |
See merge request mana/plus!64 | |||||
2024-02-09 | Update copyright headers up to 2023 | Jesusalva Jesusalva | 1 | -1/+2 | |
2019-08-19 | Update packet SMSG_RANKS_LIST | Andrei Karas | 1 | -2/+16 | |
2019-06-24 | Fix code style | Andrei Karas | 1 | -2/+0 | |
2019-05-15 | Add packet SMSG_NAME_RESPONSE_TITLE 0x0adf | Andrei Karas | 1 | -0/+60 | |
2019-02-12 | Add packet SMSG_SKILL_CASTING 0x0b1a | Andrei Karas | 1 | -4/+46 | |
2019-01-01 | Update copyright year. | Andrei Karas | 1 | -1/+1 | |
2018-11-27 | Remove extra ; from different code. | Andrei Karas | 1 | -1/+1 | |
2018-11-05 | Fix code style. | Andrei Karas | 1 | -5/+14 | |
2018-11-03 | Add packet SMSG_BEING_REMOVE_SPECIAL_EFFECT 0x0b0d. | Andrei Karas | 1 | -0/+7 | |
2018-10-29 | Fix code style.s20181102 | Andrei Karas | 1 | -1/+1 | |
2018-09-26 | Add packet SMSG_BEING_VIEW_EQUIPMENT2 0x0b03. | Andrei Karas | 1 | -0/+33 | |
2018-09-25 | Add packet SMSG_PLAYER_GUILD_PARTY_INFO 0x0a30. | Andrei Karas | 1 | -0/+36 | |
2018-09-06 | Drop support for plugin version 17. | Andrei Karas | 1 | -2/+1 | |
2018-09-06 | Drop support for plugin version 16. | Andrei Karas | 1 | -1/+1 | |
2018-09-06 | Drop support for plugin version 15. | Andrei Karas | 1 | -48/+12 | |
2018-07-26 | Add support for changed item id size in packets. | Andrei Karas | 1 | -10/+26 | |
From some packet version hercules support item id fields as int32. | |||||
2018-05-23 | Remove extra includes. | Andrei Karas | 1 | -1/+0 | |
2018-05-20 | Show gm revive button in death dialog if player have rights for @alive command. | Andrei Karas | 1 | -1/+1 | |
2018-04-17 | Update BeingRecv::processSolveCharName for new zero protocol versions. | Andrei Karas | 1 | -1/+3 | |
2018-04-07 | Add packet SMSG_BEING_HAT_EFFECTS 0x0a3b. | Andrei Karas | 1 | -0/+14 | |
2018-04-06 | Add packet SMSG_SOLVE_CHAR_NAME 0x0af7. | Andrei Karas | 1 | -0/+10 | |
2018-04-02 | Read whole packet in BeingRecv::processBeingSpecialEffect even if being not ↵ | Andrei Karas | 1 | -0/+3 | |
found. | |||||
2018-03-04 | Add support for hightlight attribute in groups.xml | Andrei Karas | 1 | -4/+0 | |
This attribute allow to highlight gm groups based on groups.xml | |||||
2018-02-13 | Store clan names into each player being. | Andrei Karas | 1 | -0/+18 | |
2018-02-12 | Fix code style. Add missing actorManager null checks. | Andrei Karas | 1 | -1/+16 | |
2018-01-04 | Update copyrights year. | Andrei Karas | 1 | -1/+1 | |
2017-12-22 | Remove default parameters from effectmanager. | Andrei Karas | 1 | -2/+2 | |
2017-12-17 | Remove default parameters from localplayer. | Andrei Karas | 1 | -2/+2 | |
2017-12-17 | Remove default parameter from Being::updateSprite. | Andrei Karas | 1 | -12/+36 | |
2017-12-16 | Remove default parameters from Being::takeDamage. | Andrei Karas | 1 | -1/+1 | |
2017-11-08 | Add npc option for allow equipment. | Andrei Karas | 1 | -11/+14 | |
New option: allowEquipment Default value: false | |||||
2017-11-08 | Allow draw npc equipment sprites (only basic slots). | Andrei Karas | 1 | -0/+11 | |
2017-11-07 | Simplify set basic equipment for beings. | Andrei Karas | 1 | -146/+110 | |
2017-08-30 | Move some variables to better scope. | Andrei Karas | 1 | -3/+6 | |
2017-08-14 | Replace static members usage from pointers to direct classes. | Andrei Karas | 1 | -4/+4 | |
clang-tidy warning: readability-static-accessed-through-instance | |||||
2017-08-10 | Read whole packet in processPlayerStatusChange if being not found. | Andrei Karas | 1 | -0/+9 | |
2017-07-17 | Fix issues detected by coverity. | Andrei Karas | 1 | -1/+3 | |
2017-07-13 | Set group id from net code to not only local player. | Andrei Karas | 1 | -8/+8 | |
2017-07-12 | Rename gm level into group id in localplayer.cpp | Andrei Karas | 1 | -1/+1 | |
2017-07-12 | Add packet SMSG_PLAYER_ATTRS 0x0b25. | Andrei Karas | 1 | -10/+7 | |
It allow set local player attributes from server. For now it send real group id. | |||||
2017-06-29 | Move foreach macroses into separate file. | Andrei Karas | 1 | -0/+1 | |
2017-06-19 | Auto close death dialog if local player resurrected. | Andrei Karas | 1 | -1/+10 | |
2017-06-07 | Fix clang-tidy check readability-implicit-bool-cast. | Andrei Karas | 1 | -109/+110 | |