Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-01-18 | Implementing nullpo interface for plugin use | shennetsind | 4 | -3/+24 | |
As proposed in pull request #361 Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-18 | Connection History Redesign | shennetsind | 1 | -81/+56 | |
Drops ~250kb in memory usage from each server, speeds up lookup/insertion and the cleanup timer will iterate thru the list rather than that ~65k array loop Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-18 | Merge branch 'master' of github.com:HerculesWS/Hercules | shennetsind | 1 | -1/+1 | |
2015-01-18 | Fixing 38 issues | shennetsind | 3 | -11/+15 | |
Addressing out of bounds read/write, pointless null checks on already deferenced variables, dead code. Special Thanks to 4144 and Haruna! Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-17 | Merge pull request #444 from 4144/coverity | shennetsind | 1 | -1/+1 | |
some fixes for different issues | |||||
2015-01-18 | Fix out of bound issue in mapindex.c. | Andrei Karas | 1 | -1/+1 | |
Found by coverity scan. | |||||
2015-01-17 | 27 Fixes | shennetsind | 1 | -1/+1 | |
Addressing out of bounds read/write, pointless null checks on already deferenced variables. Special Thanks to 4144 and Haruna! Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-17 | Another ~10 Fixes | shennetsind | 2 | -3/+5 | |
Addressing out of bounds read/write, resource leaks. Special Thanks to 4144 and Haruna! Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-17 | 10 Distinct fixes | shennetsind | 2 | -2/+3 | |
Addressing out of bounds read-write. Special Thanks to 4144, Haruna! Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-15 | Merge branch 'master' of https://github.com/HerculesWS/Hercules | Dastgir | 28 | -62/+95 | |
2015-01-15 | Changed Zeny Limit in Bank to 2,147,483,647 | Dastgir | 1 | -1/+1 | |
2015-01-12 | Fix some compilation warnings with clang 3.6. | Andrei Karas | 1 | -1/+1 | |
2015-01-12 | Silenced some -Wunused-value warnings in sigemptyset and sigaddset calls | Haru | 1 | -7/+8 | |
- Fixes warnings when gcc-4.9 is used, with headers (such as Apple's) that define those symbols as `#define sigemptyset(set) (*(set) = 0, 0)` - See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61081 Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-01-12 | Removed unused (re)definition of NBBY from cbasetypes.h | Haru | 1 | -6/+0 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-01-12 | Blocked compilation of plugins that use unavailable functions | Haru | 23 | -46/+81 | |
- Rather than failing at runtime, plugins that try to access non-interfaced, unavailable functions or variables, will now show an error at compile-time. Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-01-12 | Added detailed error message when a plugin fails to load | Haru | 2 | -2/+5 | |
- This helps figuring out why a plugin can't be loaded (especially on linux systems.) - Special thanks to Dastgir. Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-01-10 | Add new eclage skills used in items | Michieru | 1 | -0/+1 | |
Update item_db to episode 14.2 Update eclage mobs spawn to official Update eclage mobs to official | |||||
2015-01-05 | Fix memory leak after closing mysql connection. | Andrei Karas | 1 | -0/+1 | |
2014-12-31 | Improve performance a bit by removing strlen(str) > 0. | Andrei Karas | 1 | -1/+1 | |
2014-12-31 | Fix checking result from function TryEnterCriticalSection. | Andrei Karas | 1 | -1/+1 | |
2014-12-31 | Remove useless checks. | Andrei Karas | 1 | -1/+1 | |
2014-12-31 | Add some missing null pointer checks after automatic checks. | Andrei Karas | 3 | -18/+24 | |
2014-12-26 | In linux enable thin-stream mode. | Andrei Karas | 1 | -0/+11 | |
It should reduce latency in some cases. See more info here: https://www.kernel.org/doc/Documentation/networking/tcp-thin.txt | |||||
2014-12-19 | Add struct item_data, mob_db and mob_data for plugins | AnnieRuru | 1 | -0/+15 | |
http://hercules.ws/board/topic/7161-plugin-missing-hook-to-struct-item-data-and-mob-data/ | |||||
2014-12-14 | Fixed some improper grammar. | Mysteries | 1 | -1/+1 | |
2014-12-10 | RENEWAL Updates: | malufett | 1 | -0/+8 | |
-Homunculus Official Statuses -Updated RE @mobinfo to show proper status data.(Follow up 28a8b0f7b06a6af86aff6ececf7d9541d457e297) -Some official behaviors. Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com> | |||||
2014-12-06 | into mapindex add variable with default map and position. | Andrei Karas | 2 | -2/+11 | |
2014-12-04 | Merge pull request #394 from 4144/mapindex | Haruna | 2 | -3/+12 | |
In mapindex move check for default map into separate method. | |||||
2014-12-02 | Fix compilation without memory manager. | Andrei Karas | 2 | -0/+4 | |
configure example: ./configure --enable-manager=no | |||||
2014-11-16 | In mapindex move check for default map into separate method. | Andrei Karas | 2 | -3/+12 | |
2014-11-16 | Whitespace cleanup (no code changes) | Haru | 32 | -927/+859 | |
This includes, and is not limited to: mixed or wrong indentation, excess whitespace (horizontal and vertical), misalignment, trailing spaces. Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-11-16 | Added missing strlib->jstrescapecpy initialization | Haru | 1 | -0/+1 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-11-16 | Moved strlib_s, stringbuf_s and sv_s into strlib.c | Haru | 2 | -3/+7 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-11-16 | Moved sql_s into sql.c | Haru | 2 | -1/+3 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-11-16 | Moved DB_s into db.c | Haru | 2 | -1/+3 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-11-16 | Moved HPM_s into HPM.c and removed the HPMi_s symbol from the core | Haru | 3 | -2/+4 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-11-15 | Add support for plugin options in map server config (script.conf). | Andrei Karas | 1 | -0/+3 | |
2014-11-15 | Add support for plugin options in map server config (logs.conf). | Andrei Karas | 1 | -0/+3 | |
2014-11-15 | Add support for plugin options in map server config (inter-server.conf). | Andrei Karas | 1 | -1/+4 | |
2014-11-15 | Add support for plugin options in char server config (inter-server.conf). | Andrei Karas | 1 | -3/+6 | |
2014-11-15 | Add support for plugin options in char server config. | Andrei Karas | 1 | -1/+4 | |
2014-11-15 | Add support for plugin options in login server config. | Andrei Karas | 1 | -0/+3 | |
2014-11-15 | regenerate HPM hooks. | Andrei Karas | 1 | -0/+81 | |
2014-11-14 | Add ability to add deprecated command from scripts and plugins. | Andrei Karas | 1 | -2/+8 | |
2014-11-11 | Corrected some uninitialized interface functions | Haru | 1 | -0/+1 | |
- Detected through the just merged validation tool, special thanks to Andrei Karas. - Added validation tool to the Travis tests. Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-11-07 | HPM Hooks Update. | Andrei Karas | 1 | -0/+5 | |
2014-11-03 | Merge branch 'master' of github.com:HerculesWS/Hercules | shennetsind | 4 | -56/+137 | |
Signed-off-by: shennetsind <ind@henn.et> Conflicts: src/map/battle.c | |||||
2014-11-03 | Introducing 2014-10-22, Roulette and Per-Char Gender! | shennetsind | 1 | -1/+1 | |
Details in http://hercules.ws/board/topic/7618-2014-10-22-roulette-and-per-char-gender/ Special Thanks to the all-mighty Yommy, Ziu and Haruna! Signed-off-by: shennetsind <ind@henn.et> | |||||
2014-10-28 | Added preliminary support for char and login server to HPMHooking | Haru | 1 | -11/+24 | |
- Special thanks to Ind Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-10-28 | Added preliminary support for login and char server in the HPMDataCheck | Haru | 4 | -45/+113 | |
- Special thanks to Ind Signed-off-by: Haru <haru@dotalux.com> |