| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2024-06-07 | 1 | -3/+3 | |
| * | Allow also using a prefix chat in autoop and exemptchanops. | 2023-04-21 | 1 | -1/+6 | |
| * | Replace InspIRCd::Format with fmt::format. | 2023-01-23 | 1 | -3/+3 | |
| * | Fix calling various static functions through a type instance. | 2023-01-11 | 1 | -1/+1 | |
| * | Fix various cases of the &* being next to the name instead of type. | 2022-09-29 | 1 | -1/+1 | |
| * | Fix some warnings noticed by the readability-* clang-tidy checkers. | 2022-09-03 | 1 | -1/+1 | |
| * | Switch from NULL to nullptr. | 2022-07-22 | 1 | -2/+2 | |
| * | Add a typedef for a mode rank. | 2022-05-17 | 1 | -1/+1 | |
| * | Add ListModeBase::CanonicalizeParam, fix cleaning extban masks. | 2022-04-16 | 1 | -2/+1 | |
| * | Use a consistent message format for end of list numerics. | 2022-04-01 | 1 | -1/+1 | |
| * | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -2/+2 | |
| * | Mark all mode classes as final. | 2021-10-01 | 1 | -1/+2 | |
| * | Mark all module classes as final. | 2021-10-01 | 1 | -1/+2 | |
| * | Switch simple iterator loops to use range-based for loops. | 2021-04-07 | 1 | -4/+5 | |
| * | Convert various mode methods to take Mode::Change.•••- AccessCheck - AfterMode - BeforeMode - OnModeChange - OnRawMode | 2021-03-30 | 1 | -9/+11 | |
| * | Merge branch 'insp3' into master. | 2020-05-05 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2020-04-24 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2020-04-11 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update the module descriptions using mkversion. | 2020-04-10 | 1 | -1/+1 | |
| * | | Improve storage of module description, flags, and link data. | 2020-04-11 | 1 | -6/+3 | |
| * | | Merge branch 'insp3' into master. | 2020-02-19 | 1 | -3/+8 | |
| |\| | |||||
| | * | Add enum constants for list mode numerics. | 2020-02-18 | 1 | -3/+8 | |
| * | | Merge branch 'insp3' into master. | 2020-01-17 | 1 | -1/+4 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-11 | 1 | -1/+4 | |
| * | | Merge branch 'insp3' into master. | 2019-07-16 | 1 | -2/+4 | |
| |\| | |||||
| | * | Show the mode syntax in ERR_INVALIDMODEPARAM. | 2019-06-12 | 1 | -0/+1 | |
| | * | Check the unset level in autoop as well as the set level. | 2019-06-07 | 1 | -2/+3 | |
| * | | Merge branch 'insp3' into master. | 2019-05-15 | 1 | -1/+1 | |
| |\| | |||||
| | * | Some more text fixes and improvements (#1618). | 2019-04-28 | 1 | -1/+1 | |
| * | | ModeParser: remove fakederef. | 2019-02-07 | 1 | -3/+3 | |
| * | | Replace the override macro with the override keyword. | 2019-01-25 | 1 | -4/+4 | |
| |/ | |||||
| * | Add the <maxlist> tag and switch ListModeBase to always use it.•••The old method of doing this was: 1. Extremely inconsistently used. Some list modes used <banlist> and some used their own config tag. 2. Not documented in the slightest. There was a small reference to <maxbans> for the ban mode but nothing else. 3. In some cases conflicting with other config tags. The chanfilter module defined a <chanfilter> tag for general config whilst also using it for the max list settings. The new <maxlist> tag avoids these issues entirely. | 2018-12-19 | 1 | -1/+2 | |
| * | Fix a bunch more conflicting/unnamed numerics. | 2018-08-14 | 1 | -1/+1 | |
| * | Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs. | 2017-11-21 | 1 | -1/+1 | |
| * | Add support for setting the unset rank in ModeHandler. | 2017-11-06 | 1 | -2/+2 | |
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ... | 2016-02-25 | 1 | -4/+2 | |
| * | Reduce std::string::substr() usage•••substr() returns a new string while erase() and assign() modify the existing one | 2015-01-10 | 1 | -1/+1 | |
| * | Replace irc::modestacker usage with the new ModeParser::Process() | 2014-09-03 | 1 | -9/+3 | |
| * | Add a ModeParser::FindMode() overload that takes a mode name and a mode type | 2014-02-20 | 1 | -8/+2 | |
| * | Use WriteNumeric() everywhere we send numerics and include the user's nick au... | 2013-11-12 | 1 | -4/+4 | |
| * | Send ListModeBase modes implicitly on channel sync•••Remove Module::ProtoSendMode() and ListModeBase::DoSyncChannel() | 2013-09-12 | 1 | -5/+0 | |
| * | Keep lists of mode handlers by type | 2013-09-12 | 1 | -3/+5 | |
| * | Move prefix mode specific fields and getters into PrefixMode•••Add ModeHandler::IsPrefixMode() | 2013-09-11 | 1 | -7/+7 | |
| * | Automatically register ServiceProviders created by modules | 2013-09-08 | 1 | -6/+0 | |
| * | Replace OnRehash() with ReadConfig() that is called on boot, on module load a...•••This eliminates the need for calling OnRehash() in init() | 2013-08-30 | 1 | -1/+1 | |
| * | Automatically attach modules to events | 2013-08-04 | 1 | -3/+0 | |
| * | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -2/+0 | |
| * | Introduce ModeProcessFlags, can be passed to ModeParser::Process() to indicat...•••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-13 | 1 | -1/+1 | |
| * | Tidy up keywords on module methods.•••- 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-15 | 1 | -5/+5 | |
| * | Migrate u_listmode.h into the core, change +b to use it | 2013-04-08 | 1 | -3/+3 | |
