Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-10 | Update the module descriptions using mkversion. | Sadie Powell | |
2020-01-11 | Update copyright headers. | InspIRCd Robot | |
2019-08-07 | Convert all core ExtensionItem code away from {un,}serialize. | Peter Powell | |
2018-12-12 | Fix conversion issues by replacing ConvToInt with ConvToNum<T>. | Peter Powell | |
The former was a thin wrapper around atol and brought with it all of the weird parsing logic of atol which is almost never what is actually wanted. It also almost never returned the numeric type which is actually wanted which can cause weird issues when casting. | |||
2018-08-12 | Pass the Extensible container to ExtensionItem::free(). | 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. | |||
2017-11-21 | Add the override keyword in places that it is missing. | Peter Powell | |
GCCs warnings for this are much better than Clangs. | |||
2017-09-06 | Convert uncontroversial anonymous numerics to use constants. | Peter Powell | |
2016-04-11 | Refactor topic setting logic to go through Channel::SetTopic() in all cases | Attila Molnar | |
- Pass topic set time and optionally the setter to SetTopic() - Don't do anything if the topic is changed by a local user to what it is currently | |||
2016-02-25 | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | Attila Molnar | |
parameters | |||
2015-01-18 | Specify which Extensible subclass an ExtensionItem is valid for | Attila Molnar | |
2014-01-31 | Remove some dead code | Attila Molnar | |
2014-01-05 | Introduce Server class | Attila Molnar | |
- Replaces std::string server in User - Replaces InspIRCd::ULine() and SilentULine() | |||
2013-09-08 | Automatically register ServiceProviders created by modules | attilamolnar | |
2013-08-04 | Automatically attach modules to events | attilamolnar | |
2013-08-04 | Change modules to use the MODNAME constant when logging. | Peter Powell | |
The majority of modules were logging with their module name as the log type. There was a few places which were logging to a non-name type but, with the exception of CONFIG, those messages are so uncommon that it doesn't make sense to use a seperate type for them. | |||
2013-07-04 | Remove $Core and $Mod* comments apart from $ModDep. | Peter Powell | |
2013-05-15 | Tidy up keywords on module methods. | Peter Powell | |
- Remove virtual keyword from a ton of methods which don't need it. - Add override keyword to a ton of methods which do need it. | |||
2013-04-12 | Add LOG_ prefix to the log level enum values. | Peter Powell | |
2012-10-23 | m_topiclock Prefix ModDesc with $ | attilamolnar | |
2012-10-06 | New module to support server-side topic locking and server-to-server ↵ | attilamolnar | |
SVSTOPIC command SVSTOPIC can either set the topic, the topic setter and the topic timestamp to the given parameters or can nuke the topic entirely on a channel (like it was never set) It is for ulines only |