Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-03 | Automatically prune the history lists in chanhistory. | Sadie Powell | |
2021-02-26 | Update copyright headers. | InspIRCd Robot | |
2021-02-24 | Refactor OnUserPostMessage in the chanhistory module. | Sadie Powell | |
2021-01-11 | Add a user mode which allows disabling receiving channel history. | Sadie Powell | |
Closes #1830. | |||
2020-04-10 | Update the module descriptions using mkversion. | Sadie Powell | |
2020-01-31 | Fix the chanhistory module not storing CTCP ACTIONs. | Sadie Powell | |
2020-01-11 | Update copyright headers. | InspIRCd Robot | |
2020-01-03 | Rename <chanhistory:notice> to <chanhistory:prefixmsg>. | Sadie Powell | |
This name is a lot lessambiguous. | |||
2020-01-03 | Make chanhistory skip CTCPs when storing messages. | Sadie Powell | |
Sending historic CTCPs to clients can only end badly. | |||
2020-01-03 | Make chanhistory replay notices as well as privmsgs. | Sadie Powell | |
2020-01-03 | Fix the chanhistory module not replaying message tags. | Sadie Powell | |
2019-07-21 | Extract history sending logic in chanhistory to its own function. | Peter Powell | |
2019-07-15 | Split ServerEventListener into {Broadcast,Link,Sync}EventListener. | Peter Powell | |
There is no reason to have these events in one big handler and it causes unnecessary event hooks to be created by having them like this. The ServerEventListener class still exists for compatibility | |||
2019-07-04 | Use DurationString() in the 'Replaying ...' message. | Matt Schatz | |
2019-06-12 | Show the mode syntax in ERR_INVALIDMODEPARAM. | Peter Powell | |
2019-06-12 | chanhistory: recreate the mode parameter instead of saving it. | Peter Powell | |
2019-04-28 | Some more text fixes and improvements (#1618). | Robby | |
2018-12-21 | Only parse valid durations, don't treat invalid multipliers as seconds (#1538) | linuxdaemon | |
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-11-24 | Move IsValidDuration into the core. | Peter Powell | |
2018-10-01 | Fix the chanhistory module being inconsistent across servers. | Peter Powell | |
Closes #331. | |||
2018-08-13 | Add support for the IRCv3 batch specification. | Peter Powell | |
Co-authored-by: Attila Molnar <attilamolnar@hush.com> | |||
2018-08-13 | Add support for the IRCv3 server-time specification. | Peter Powell | |
Co-authored-by: Attila Molnar <attilamolnar@hush.com> | |||
2018-08-13 | Implement IRCv3 message tag support. | Peter Powell | |
Co-authored-by: Attila Molnar <attilamolnar@hush.com> | |||
2018-04-16 | Add ConfigTag::getUInt for reading unsigned config values. | Peter Powell | |
2018-01-29 | Add ERR_INVALIDMODEPARAM for responding to invalid mode params. | Peter Powell | |
Currently on invalid modes we do a combination of different things: 1. Send a custom mode-specific numeric (which often collides with other modes). 2. Send a server notice. 3. Do absolutely nothing. This new numeric is a generic way of handling invalid parameters when setting a mode that avoids all of the mistakes of the previous behaviour. | |||
2018-01-06 | Rework message handling. | Peter Powell | |
- Move all message-related types to their own header to make moving them to a cross-module events easier. - Rename OnUserMessage to OnUserPostMessage. - Rename OnText to OnUserMessage. - Replace the dest, target_type, and status parameters with the MessageTarget class. - Replace the text, exempt_list, and msgtype parameters with the MessageDetails struct. - Add echooriginal and originaltext to the MessageDetails struct to allow spam filtering to not be broken by cap echo-message. | |||
2018-01-03 | Fix m_chanhistory sending the history notice directly to the user. | Peter Powell | |
Closes #1452. | |||
2017-12-31 | Increase the config default for <chanhistory:maxlines> to 50. | Peter Powell | |
2017-12-16 | Only show a duration in m_chanhistory's notice if one is set. | Peter Powell | |
Closes #1235. | |||
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-11-17 | Fix a ton of -Wsign-conversion warnings. | Peter Powell | |
2015-01-10 | Reduce std::string::substr() usage | Attila Molnar | |
substr() returns a new string while erase() and assign() modify the existing one | |||
2014-02-15 | Add ParamModeBase and ParamMode, change all parameter modes to inherit from ↵ | Attila Molnar | |
ParamMode - Type of the extension used to store data is a template parameter - The extension is automatically unset when the mode is unset - Handlers inheriting from ParamMode have to provide OnSet() and SerializeParam(); may optionally provide OnUnset() - Transparently handle the case when OnSet() modifies the mode parameter - Remove Channel::custom_mode_params map; ask the mode handlers to serialize their parameters instead | |||
2013-09-08 | Automatically register ServiceProviders created by modules | attilamolnar | |
2013-08-30 | Replace OnRehash() with ReadConfig() that is called on boot, on module load ↵ | attilamolnar | |
and on rehash This eliminates the need for calling OnRehash() in init() | |||
2013-08-24 | Option to select if chanhistory is on for bots | Daniel Vassdal | |
2013-08-04 | Automatically attach modules to events | attilamolnar | |
2013-07-04 | Remove $Core and $Mod* comments apart from $ModDep. | Peter Powell | |
2013-07-01 | Replace hardcoded mode letters passed to IsModeSet() and GetModeParameter() ↵ | attilamolnar | |
with ModeHandlers, part 1 | |||
2013-06-13 | Call Channel::SetModeParam() from the mode parser when needed instead of ↵ | attilamolnar | |
requiring mode handlers to do it | |||
2013-05-20 | Remove OnUserPreNotice and OnUserNotice hooks, add MessageType argument to ↵ | attilamolnar | |
OnUserMessage and OnUserPreMessage All modules (except m_nonotice) that perform filtering on messages have common logic for handling PRIVMSGs and NOTICEs and most of them run the exact same code in both cases | |||
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-05-15 | Replace some C-isms with C++-isms. | Peter Powell | |
* 'const char*' to 'const std::string&'. * snprintf to std::string concatenation. * Replace duplicated OneOfMatches with InspIRCd::MatchMask. | |||
2013-05-14 | Add method for writing server notices. | Peter Powell | |
This allows us to send a server notice to a user without worrying about whether they are registered or not. If a user receives a server notice and they are not registered then the nickname field will contain an asterisk instead of their nick name. | |||
2013-04-03 | Convert InspIRCd::Duration() to be static | attilamolnar | |
2013-01-27 | m_chanhistory Fix durations containing 'S' being rejected | attilamolnar | |
2012-12-02 | Register a few extensions that weren't registered | attilamolnar | |
2012-12-02 | Dynamically determine the size of the eventlist[] passed to Attach() | attilamolnar | |
m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove | |||
2012-07-12 | m_chanhistory Read the boolean config entry with getBool() | attilamolnar | |