Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-03-05 | Fix a bunch of really obvious unnecessary includes. | Sadie Powell | |
2021-03-05 | Update copyright headers. | InspIRCd Robot | |
2020-12-04 | Add a typedef for the data provider map. | Sadie Powell | |
2020-10-06 | Recheck users for xlines when their real hostname changes. | Sadie Powell | |
2020-05-22 | ModResult is a class now. | Sadie Powell | |
2020-05-21 | Document ModResult and switch the underlying type to char. | Sadie Powell | |
2020-04-24 | Update copyright headers. | InspIRCd Robot | |
2020-04-21 | Fixes by misspell-fixer | InspIRCd Robot | |
2020-04-14 | Update user-facing text and comments of SSL to TLS. | Matt Schatz | |
2020-04-01 | Document Module::Prioritize. | Sadie Powell | |
2020-03-30 | Fix various documentation and formatting issues. | Sadie Powell | |
2020-02-02 | Make loading modules considerably more robust and user friendly. | Sadie Powell | |
2020-01-31 | Update copyright headers. | InspIRCd Robot | |
2020-01-31 | Bump the ABI version. | Sadie Powell | |
2020-01-22 | Add an event for when a command is blocked before execution. | Sadie Powell | |
2020-01-11 | Update copyright headers. | InspIRCd Robot | |
2019-12-03 | Bump the InspIRCd ABI version. | Peter Powell | |
2019-10-17 | Add an event which is fired when the server shuts down. | Peter Powell | |
2019-08-23 | Release v3.3.0. | Peter Powell | |
2019-07-21 | Allow modules to prevent a failed connection from being closed. | Peter Powell | |
2019-06-24 | Add OnUserPreQuit event to allow modules to change quit messages (#1629). | iwalkalone | |
2019-06-18 | Make the data provider list case insensitive. | Peter Powell | |
2019-06-06 | Only call events on modules which aren't dying. | Peter Powell | |
2019-05-17 | Release v3.1.0. | Peter Powell | |
2019-04-19 | Bump the API revision for the previous commits. | Peter Powell | |
2019-04-19 | Remove the OnNamesListItem event out of the core. | Peter Powell | |
2019-04-15 | Bump the API revision for the previous commit. | Peter Powell | |
2019-04-04 | Fix various typos. | Peter Powell | |
2019-04-04 | Bump the API revision for the previous commit. | Peter Powell | |
2019-04-04 | Document OnUserInit properly and add OnUserPostInit. | Peter Powell | |
2019-02-07 | Document OnUserWrite. | Peter Powell | |
2019-02-06 | Release v3.0.0 release candidate 2. | Peter Powell | |
2019-02-05 | Delete the old broken test suite. | Peter Powell | |
This doesn't work properly and is disabled in both debug & release builds. It will be resurrected with a proper unit testing framework in the future. | |||
2019-01-07 | Release v3.0.0 release candidate 1. | Peter Powell | |
2018-11-15 | Fix the OnSendWhoLine event being completely broken with WHOX. | Peter Powell | |
2018-10-21 | Fix warnings from Doxygen. | Peter Powell | |
2018-09-23 | Switch all core modules still using COMMAND_INIT to MODULE_INIT. | Peter Powell | |
2018-09-11 | Amend OnPostCommand to specify whether the command is loopcalled. | Peter Powell | |
This restores previous behaviour which was lost when the original line parameter was removed. | |||
2018-08-14 | Rename OnChangeLocalUserHost to OnPreChangeHost for consistency. | Peter Powell | |
2018-08-14 | Remove the OnInfo event. | Peter Powell | |
This is not used by anything and On{Post,Pre}Command hooks can be used if people really want to add stuff to INFO. | |||
2018-08-13 | Implement IRCv3 message tag support. | Peter Powell | |
Co-authored-by: Attila Molnar <attilamolnar@hush.com> | |||
2018-08-12 | Convert AWAY to use cross-module events and clean up slightly. | Peter Powell | |
OnSetAway has been replaced with four events. OnUserPreAway and OnUserPreBack can be used to deny an away state change and/or change the away message of a local user. OnUserAway and OnUserBack allow modules to be notified that a user's away state has changed. | |||
2018-08-10 | Remove the original line parameter of On{Pre,Post}Command. | Peter Powell | |
In the brave new world of message tags and alternate wire formats this is no longer something that is appropriate to expose. In reality it was only ever used by m_alias which now reconstitutes the command name and parameters into a RFC 1459-style message for whatever it needs to do. | |||
2018-07-31 | Remove support for static modules. | Peter Powell | |
This has been frequently broken in the past and as far as I know is used by literally nobody. Also, even if all modules are compiled into the core any libraries linked against are and have always been linked dynamically making this unusable on platforms without dynamic libraries. | |||
2018-07-30 | Replace most usages of "name" with "real" or "real name". | Peter Powell | |
2018-07-30 | Replace most usages of "GECOS" with "real" or "real name". | Peter Powell | |
2018-07-26 | Use CommandBase::Params instead of std::vector<std::string>. | Peter Powell | |
This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. | |||
2018-07-24 | Rename IntModuleList to Module::List. | Peter Powell | |
2018-04-22 | Merge tag 'v2.0.26' into master. | Peter Powell | |
2018-04-16 | Call OnUserMessageBlocked when a PRIVMSG or a NOTICE is blocked. | Peter Powell | |
This is necessary to allow m_ircv3_echomessage to pretend that a message was echoed successfully. This is useful as it doesn't let spammers know that their message was blocked. |