aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_delaymsg.cpp
Commit message (Expand)AuthorAgeFilesLines
* Use Duration::ToHuman instead of seconds in various messages.Gravatar Sadie Powell2025-03-031-1/+3
* Update copyright headers.Gravatar InspIRCd Robot2024-07-141-1/+1
* Use auto when extracting the internal type of a message target.Gravatar Sadie Powell2024-07-131-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-3/+4
* Allow mutating the status message type in OnUserPre(Tag)Message.Gravatar Sadie Powell2024-05-061-4/+4
* Remove the ability to treat notices specially in delaymsg.Gravatar Sadie Powell2023-07-211-16/+5
* Move CheckExemption::Call to CheckExemption::EventProvider.•••Now FirstResult not a macro there's no need for this to be a free function. Gravatar Sadie Powell2023-01-251-1/+1
* Replace InspIRCd::Format with fmt::format.Gravatar Sadie Powell2023-01-231-1/+1
* Replace ModeAction with bool.•••This enum is functionally the same as bool but with weird semantics. Gravatar Sadie Powell2023-01-221-3/+3
* Convert various enums to strongly typed scoped enums.Gravatar Sadie Powell2023-01-221-1/+1
* Avoid copying shared_ptr<ConfigTag> when not necessary.Gravatar Sadie Powell2023-01-101-1/+1
* Move numeric helper classes to their own header.Gravatar Sadie Powell2022-06-261-0/+1
* Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-291-0/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-04-281-0/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-03-111-6/+13
|\|
| * Change delaymsg to use exemptchanops and have an oper priv (#1959).Gravatar iwalkalone2022-02-131-6/+13
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-3/+3
* | Promote ExtensionItem::ExtensibleType to a top level enum class.Gravatar Sadie Powell2021-12-231-1/+1
* | Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-1/+1
* | Mark all mode classes as final.Gravatar Sadie Powell2021-10-011-1/+2
* | Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-2/+2
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-6/+2
* | Constify their_param in ResolveModeConflict.•••There's no reason for this to be mutable. Gravatar Sadie Powell2021-04-061-1/+1
* | Pascalize Unset in extension item classes.Gravatar Sadie Powell2021-03-171-1/+1
* | Pascalize Set in extension item classes.Gravatar Sadie Powell2021-03-171-3/+3
* | Pascalize Get in extension item classes.Gravatar Sadie Powell2021-03-171-2/+2
* | Convert ConfigTag from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-10-311-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-04-241-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/+2
|\|
| * Add the Numerics::CannotSendTo class and switch stuff to use it.Gravatar Sadie Powell2020-04-041-1/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-1/+4
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-1/+4
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-09-231-1/+1
|\|
| * Fix some remaining uses of ato[il].Gravatar Peter Powell2019-08-131-1/+1
* | Replace LocalIntExt with IntExtItem.Gravatar Sadie Powell2019-08-131-4/+4
* | Move the Module parameter of ExtensionItem et al to the start.•••This matches what other ServiceProvider types do. Gravatar Sadie Powell2019-08-131-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-161-0/+1
|\|
| * Show the mode syntax in ERR_INVALIDMODEPARAM.Gravatar Peter Powell2019-06-121-0/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-5/+24
|\|
| * 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-3/+3
| * Update trivially-modifiable modules to handle tag messages.Gravatar Peter Powell2019-04-161-3/+22
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-7/+7
|/
* Fix ParamModeBase::OnUnset() not being virtual.•••Closes #1536. Gravatar Peter Powell2018-12-161-1/+1
* Fix conversion issues by replacing ConvToInt with ConvToNum<T>.•••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. Gravatar Peter Powell2018-12-121-3/+3
* 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. Gravatar Peter Powell2018-01-061-4/+4