aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_repeat.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-6/+6
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2022-01-031-1/+2
|\
| * Update copyright headers.Gravatar InspIRCd Robot2021-12-301-1/+2
| |
* | Make all extensibles use kebab-case for names where possible.Gravatar Sadie Powell2021-12-261-1/+1
| |
* | Promote ExtensionItem::ExtensibleType to a top level enum class.Gravatar Sadie Powell2021-12-231-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-12-141-1/+1
|\|
| * If a user has a unique username then include it in bans.Gravatar Sadie Powell2021-12-141-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-11-241-2/+5
|\|
| * Use a mode reference in the repeat module.Gravatar Sadie Powell2021-11-161-2/+5
| |
* | Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-3/+3
| |
* | Mark more mode classes as final.Gravatar Sadie Powell2021-10-011-1/+1
| |
* | Mark all mode classes as final.Gravatar Sadie Powell2021-10-011-1/+2
| |
* | Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-09-231-0/+3
|\|
| * Add the channels/ignore-repeat priv to exempt opers from +E.Gravatar David Schultz2021-09-211-0/+3
| |
* | Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-21/+19
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-111-2/+2
|\|
| * Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-271-1/+1
| |
* | Add a new map-based method for building link data.Gravatar Sadie Powell2021-05-101-8/+9
| | | | | | | | | | The new link data is not currently used but will be in the near future.
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-3/+2
| |
* | Pascalize Unset in extension item classes.Gravatar Sadie Powell2021-03-171-1/+1
| |
* | Pascalize Set in extension item classes.Gravatar Sadie Powell2021-03-171-2/+2
| |
* | Pascalize Get in extension item classes.Gravatar Sadie Powell2021-03-171-2/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-281-0/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-02-261-0/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-01-181-1/+10
|\|
| * Implemented configurable kick message for the repeat module (#1835).Gravatar iwalkalone2021-01-181-1/+9
| |
* | Convert ConfigTag from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-10-311-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-3/+4
| |
* | Use C++11 inline initialisation for class members.Gravatar Sadie Powell2020-02-061-8/+6
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-0/+6
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-0/+6
| |
* | 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-13/+10
|\|
| * Show the mode syntax in ERR_INVALIDMODEPARAM.Gravatar Peter Powell2019-06-121-9/+9
| |
| * m_repeat: Fix parsing mode parameterGravatar linuxdaemon2019-06-051-4/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-1/+1
|\|
| * Some more text fixes and improvements (#1618).Gravatar Robby2019-04-281-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-03-301-3/+3
|\|
| * Various text improvements: consistency, syntax, help and doc updates/fixes.Gravatar Robby2019-02-181-3/+3
| |
* | ModuleManager: remove fakederef.Gravatar Sadie Powell2019-02-071-1/+1
| |
* | ModeParser: remove fakederef.Gravatar Sadie Powell2019-02-071-2/+2
| |
* | Remove all 2.0 config compatibility code.Gravatar Sadie Powell2019-01-251-1/+1
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-6/+6
|/
* Only parse valid durations, don't treat invalid multipliers as seconds (#1538)Gravatar linuxdaemon2018-12-211-2/+5
|
* Fix ParamModeBase::OnUnset() not being virtual.Gravatar Peter Powell2018-12-161-1/+1
| | | | Closes #1536.
* Fix conversion issues by replacing ConvToInt with ConvToNum<T>.Gravatar Peter Powell2018-12-121-3/+3
| | | | | | | 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.
* Add ConfigTag::getUInt for reading unsigned config values.Gravatar Peter Powell2018-04-161-4/+4
|