Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-03-05 | Update copyright headers. | InspIRCd Robot | |
2020-07-30 | Update copyright headers. | InspIRCd Robot | |
2020-07-29 | Replace all erroneous space indentation with tab indentation. | Sadie Powell | |
2020-07-22 | Allow disabling the timedbans set/unset notices (#1789). | iwalkalone | |
2020-04-10 | Update the module descriptions using mkversion. | Sadie Powell | |
2020-01-31 | Update copyright headers. | InspIRCd Robot | |
2020-01-29 | Add Channel::WriteRemoteNotice and revert WriteNotice changes. | Sadie Powell | |
This is a partial reversion of 687778b72e. See also: #1749. | |||
2020-01-17 | Use irc::equals instead of strcasecmp where appropriate. | Sadie Powell | |
2020-01-11 | Update copyright headers. | InspIRCd Robot | |
2019-11-17 | Allow Channel::WriteNotice send to other servers and status ranks. | Peter Powell | |
2019-10-24 | Improve the timed ban notices (#1722). | Matt Schatz | |
- Save the nick of the setter to use in the expiry message. - Change both notice messages to a standard and informative style. | |||
2019-04-28 | Some more text fixes and improvements (#1618). | Robby | |
2019-02-18 | Start using DurationString() in X-line additions and | Matt Schatz | |
a few other modules where it fits better than just showing seconds. | |||
2018-12-21 | Only parse valid durations, don't treat invalid multipliers as seconds (#1538) | linuxdaemon | |
2018-08-13 | Implement IRCv3 message tag support. | Peter Powell | |
Co-authored-by: Attila Molnar <attilamolnar@hush.com> | |||
2018-08-13 | Add an accessor for the last mode change list to ModeParser. | Peter Powell | |
GetLastParse will be going away soon. | |||
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-12-22 | Fixed misc. instances of ERR_NOSUCHNICK instead of channel numerics | B00mX0r | |
Per #1122 | |||
2017-12-10 | Extract RFC modes from the core to core_channel and core_user. | Peter Powell | |
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 | |
2017-11-12 | Merge tag 'v2.0.25' into master. | Peter Powell | |
2017-11-06 | Improve (synchronize) the notices in m_timedbans | genius3000 | |
* Send to remote servers upon setting * Send to halfop if available upon expiry | |||
2017-10-12 | Merge the latest changes from insp20 into master. | Peter Powell | |
2017-08-25 | Fix mistakenly hardcoding the halfop prefix char in timedbans. | Peter Powell | |
This will almost always be % but if the server admin is using the customprefix module and remaps it to something else messages will not be sent out correctly. | |||
2017-07-12 | Add CXX11_OVERRIDE to overridden members that lack it. | Peter Powell | |
This fixes a ton of warnings when building on compilers that default to C++11 or newer. | |||
2016-08-22 | m_timedbans Remove TimedBan::channel | Attila Molnar | |
2016-08-22 | Switch to irc::equals() from irc::string in modules that use it for ↵ | Attila Molnar | |
comparing names of IRC objects | |||
2016-08-22 | m_timedbans Remove one irc::string usage | Attila Molnar | |
2016-02-25 | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | Attila Molnar | |
parameters | |||
2015-04-20 | Merge insp20 | Attila Molnar | |
2015-04-13 | m_timedbans Notice user when trying to set a ban that's already set | Attila Molnar | |
2015-04-13 | m_timedbans Extract IsBanSet() to a function | Attila Molnar | |
2015-04-13 | m_timedbans On channel destruction remove all timed bans belonging to the ↵ | Attila Molnar | |
channel from internal bookkeeping | |||
2015-04-13 | m_timedbans Store Channel pointer in struct TimedBan | Attila Molnar | |
2014-09-03 | Replace irc::modestacker usage with the new ModeParser::Process() | Attila Molnar | |
2014-01-06 | Automatically register and unregister mode watchers | Attila Molnar | |
2013-12-15 | Make various self contained methods static. | Peter Powell | |
- InspIRCd::IsValidMask - InspIRCd::TimeString | |||
2013-11-12 | Use WriteNumeric() everywhere we send numerics and include the user's nick ↵ | Adam | |
automatically | |||
2013-09-08 | Automatically register ServiceProviders created by modules | attilamolnar | |
2013-08-04 | Call ModeParser::Process() directly instead of going through the CommandParser | attilamolnar | |
Simplify the way how m_conn_umodes assembles the modes it sets | |||
2013-08-04 | Automatically attach modules to events | attilamolnar | |
2013-07-04 | Remove $Core and $Mod* comments apart from $ModDep. | Peter Powell | |
2013-06-13 | Remove TR_END, remove TRANSLATEx() from commands that do not need it | attilamolnar | |
2013-06-13 | Introduce ModeProcessFlags, can be passed to ModeParser::Process() to ↵ | attilamolnar | |
indicate local only mode changes and mode merges Change ProtocolInterface::SendMode() to take source and destination parameters, and call it from the mode parser whenever the mode change is global This deprecates the ambiguous InspIRCd::SendMode() and InspIRCd::SendGlobalMode() interface (the latter sent mode changes originating from local users twice, etc.) | |||
2013-06-01 | Watch mode names with ModeWatchers instead of mode letters | attilamolnar | |
2013-06-01 | Remove useless ModeType parameter from ModeWatcher::BeforeMode() and AfterMode() | attilamolnar | |
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-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-08 | Migrate u_listmode.h into the core, change +b to use it | attilamolnar | |