aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_delayjoin.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-6/+6
|
* Promote ExtensionItem::ExtensibleType to a top level enum class.Gravatar Sadie Powell2021-12-231-1/+1
|
* Mark all event hook classes as final.Gravatar Sadie Powell2021-10-011-1/+2
|
* Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+1
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-08-281-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2021-08-271-1/+1
| |
* | Remove a bunch of unnecessary whitespace.Gravatar Sadie Powell2021-08-171-1/+0
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-011-2/+2
|\|
| * Show delayjoined users to themself in WHO.Gravatar Sadie Powell2021-06-201-2/+2
| |
* | Convert simple modes to use Simple{Channel,User}Mode.Gravatar Sadie Powell2021-06-011-22/+18
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-06-011-0/+21
|\|
| * Implement support for the delayjoin WHOX flag.Gravatar Sadie Powell2021-05-221-0/+21
| |
* | Refactor the population of exceptions in delayjoin.Gravatar Sadie Powell2021-05-221-21/+17
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-221-9/+16
|\|
| * Only check for a join time if a user is actually in the channel.Gravatar Sadie Powell2021-05-221-1/+4
| |
| * Send the correct join timestamp on a delayed join message.Gravatar Sadie Powell2021-05-221-2/+9
| |
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-7/+5
| |
* | Convert various mode methods to take Mode::Change.Gravatar Sadie Powell2021-03-301-11/+11
| | | | | | | | | | | | | | | | - AccessCheck - AfterMode - BeforeMode - OnModeChange - OnRawMode
* | Add a subclass of ExtensionItem exclusively for booleans.Gravatar Sadie Powell2021-03-171-6/+7
| |
* | Pascalize Unset in extension item classes.Gravatar Sadie Powell2021-03-171-3/+3
| |
* | Pascalize Set in extension item classes.Gravatar Sadie Powell2021-03-171-1/+1
| |
* | Pascalize Get in extension item classes.Gravatar Sadie Powell2021-03-171-6/+6
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-03-051-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-111-1/+1
|\|
| * Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
| |
* | Improve storage of module description, flags, and link data.Gravatar Sadie Powell2020-04-111-7/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-091-1/+1
|\|
| * Fix various documentation and formatting issues.Gravatar Sadie Powell2020-03-301-1/+1
| |
* | Move FindNickOnly to UserManager.Gravatar Sadie Powell2020-02-091-1/+1
| |
* | Move FindNick to UserManager.Gravatar Sadie Powell2020-02-091-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-1/+5
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-1/+5
| |
* | Replace LocalIntExt with IntExtItem.Gravatar Sadie Powell2019-08-131-8/+17
| |
* | Move the Module parameter of ExtensionItem et al to the start.Gravatar Sadie Powell2019-08-131-1/+1
| | | | | | | | This matches what other ServiceProvider types do.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-161-1/+1
|\|
| * Replace all abstract usages of his/he/her with they/their/it.Gravatar Peter Powell2019-06-071-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-3/+6
|\|
| * Some more text fixes and improvements (#1618).Gravatar Robby2019-04-281-1/+1
| |
| * Textual improvements and fixes such as typos, casing, etc. (#1612)Gravatar Robby2019-04-281-1/+1
| |
| * Remove the OnNamesListItem event out of the core.Gravatar Peter Powell2019-04-191-2/+5
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-03-301-2/+16
|\|
| * Implement support for IRCv3 client-to-client tags.Gravatar Peter Powell2019-02-191-2/+16
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-10/+10
|/
* Get rid of DummyMessageDetails in the delayjoin module.Gravatar Peter Powell2018-10-011-23/+14
|
* Fix the delayjoin module not hiding JOIN messages properly.Gravatar Peter Powell2018-10-011-2/+3
|
* Implement proper CTCP parsing in MessageDetails.Gravatar Peter Powell2018-08-261-1/+11
|
* Implement IRCv3 message tag support.Gravatar Peter Powell2018-08-131-16/+47
| | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com>
* Rework message handling.Gravatar Peter Powell2018-01-061-6/+9
| | | | | | | | | | | | | - 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.
* Add the override keyword in places that it is missing.Gravatar Peter Powell2017-11-211-1/+1
| | | | GCCs warnings for this are much better than Clangs.