| Commit message (Expand) | Author | Age | Files | Lines |
| * | Merge branch 'insp3' into master. | Sadie Powell | 2021-07-01 | 1 | -2/+2 |
| |\ |
|
| | * | Show delayjoined users to themself in WHO. | Sadie Powell | 2021-06-20 | 1 | -2/+2 |
| * | | Convert simple modes to use Simple{Channel,User}Mode. | Sadie Powell | 2021-06-01 | 1 | -22/+18 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2021-06-01 | 1 | -0/+21 |
| |\| |
|
| | * | Implement support for the delayjoin WHOX flag. | Sadie Powell | 2021-05-22 | 1 | -0/+21 |
| * | | Refactor the population of exceptions in delayjoin. | Sadie Powell | 2021-05-22 | 1 | -21/+17 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2021-05-22 | 1 | -9/+16 |
| |\| |
|
| | * | Only check for a join time if a user is actually in the channel. | Sadie Powell | 2021-05-22 | 1 | -1/+4 |
| | * | Send the correct join timestamp on a delayed join message. | Sadie Powell | 2021-05-22 | 1 | -2/+9 |
| * | | Switch simple iterator loops to use range-based for loops. | Sadie Powell | 2021-04-07 | 1 | -7/+5 |
| * | | Convert various mode methods to take Mode::Change.•••- AccessCheck
- AfterMode
- BeforeMode
- OnModeChange
- OnRawMode
| Sadie Powell | 2021-03-30 | 1 | -11/+11 |
| * | | Add a subclass of ExtensionItem exclusively for booleans. | Sadie Powell | 2021-03-17 | 1 | -6/+7 |
| * | | Pascalize Unset in extension item classes. | Sadie Powell | 2021-03-17 | 1 | -3/+3 |
| * | | Pascalize Set in extension item classes. | Sadie Powell | 2021-03-17 | 1 | -1/+1 |
| * | | Pascalize Get in extension item classes. | Sadie Powell | 2021-03-17 | 1 | -6/+6 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2021-03-05 | 1 | -1/+1 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2021-03-05 | 1 | -1/+1 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-04-11 | 1 | -1/+1 |
| |\| |
|
| | * | Update the module descriptions using mkversion. | Sadie Powell | 2020-04-10 | 1 | -1/+1 |
| * | | Improve storage of module description, flags, and link data. | Sadie Powell | 2020-04-11 | 1 | -7/+2 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-04-09 | 1 | -1/+1 |
| |\| |
|
| | * | Fix various documentation and formatting issues. | Sadie Powell | 2020-03-30 | 1 | -1/+1 |
| * | | Move FindNickOnly to UserManager. | Sadie Powell | 2020-02-09 | 1 | -1/+1 |
| * | | Move FindNick to UserManager. | Sadie Powell | 2020-02-09 | 1 | -1/+1 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-01-17 | 1 | -1/+5 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2020-01-11 | 1 | -1/+5 |
| * | | Replace LocalIntExt with IntExtItem. | Sadie Powell | 2019-08-13 | 1 | -8/+17 |
| * | | Move the Module parameter of ExtensionItem et al to the start.•••This matches what other ServiceProvider types do.
| Sadie Powell | 2019-08-13 | 1 | -1/+1 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-07-16 | 1 | -1/+1 |
| |\| |
|
| | * | Replace all abstract usages of his/he/her with they/their/it. | Peter Powell | 2019-06-07 | 1 | -1/+1 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-05-15 | 1 | -3/+6 |
| |\| |
|
| | * | Some more text fixes and improvements (#1618). | Robby | 2019-04-28 | 1 | -1/+1 |
| | * | Textual improvements and fixes such as typos, casing, etc. (#1612) | Robby | 2019-04-28 | 1 | -1/+1 |
| | * | Remove the OnNamesListItem event out of the core. | Peter Powell | 2019-04-19 | 1 | -2/+5 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-03-30 | 1 | -2/+16 |
| |\| |
|
| | * | Implement support for IRCv3 client-to-client tags. | Peter Powell | 2019-02-19 | 1 | -2/+16 |
| * | | Replace the override macro with the override keyword. | Sadie Powell | 2019-01-25 | 1 | -10/+10 |
| |/ |
|
| * | Get rid of DummyMessageDetails in the delayjoin module. | Peter Powell | 2018-10-01 | 1 | -23/+14 |
| * | Fix the delayjoin module not hiding JOIN messages properly. | Peter Powell | 2018-10-01 | 1 | -2/+3 |
| * | Implement proper CTCP parsing in MessageDetails. | Peter Powell | 2018-08-26 | 1 | -1/+11 |
| * | Implement IRCv3 message tag support.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com>
| Peter Powell | 2018-08-13 | 1 | -16/+47 |
| * | Rework message handling.•••- 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.
| Peter Powell | 2018-01-06 | 1 | -6/+9 |
| * | Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs.
| Peter Powell | 2017-11-21 | 1 | -1/+1 |
| * | Add support for setting the unset rank in ModeHandler. | Peter Powell | 2017-11-06 | 1 | -1/+1 |
| * | Specify which Extensible subclass an ExtensionItem is valid for | Attila Molnar | 2015-01-18 | 1 | -1/+3 |
| * | Remove some unnecessary NULL checks | Attila Molnar | 2015-01-10 | 1 | -5/+1 |
| * | Merge insp20 | Attila Molnar | 2014-10-27 | 1 | -0/+4 |
| |\ |
|
| | * | m_delayjoin Only send JOIN on mode change if the mode being changed is a pref... | Attila Molnar | 2014-10-17 | 1 | -0/+5 |
| * | | Remove typedef UserMembCIter, use Channel::MemberMap::const_iterator instead | Attila Molnar | 2014-07-14 | 1 | -2/+2 |
| * | | Rename UserMembList to Channel::MemberMap, switch all code to use it | Attila Molnar | 2014-07-14 | 1 | -2/+2 |