| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Change InspIRCd::ProcessColors to take a string instead of a vector. | 2024-08-27 | 1 | -1/+1 | |
| | | | | | | | This is more useful for how MOTDs are processed now as we iterate through them anyway and this allows us to avoid a needless second iteration. | ||||
| * | Update copyright headers. | 2024-07-14 | 1 | -1/+1 | |
| | | |||||
| * | Fix MOTD parsing accidentally skipping lines which are blank. | 2024-07-05 | 1 | -1/+1 | |
| | | |||||
| * | Update copyright headers. | 2024-06-07 | 1 | -1/+1 | |
| | | |||||
| * | Replace FileReader with something more sensible. | 2023-07-03 | 1 | -6/+10 | |
| | | |||||
| * | Fix calling c_str() for parameters that can take a std::string. | 2023-05-31 | 1 | -1/+1 | |
| | | |||||
| * | Replace getInt/getUInt/getFloat with type safe templated functions. | 2023-01-25 | 1 | -3/+3 | |
| | | |||||
| * | Convert various enums to strongly typed scoped enums. | 2023-01-22 | 1 | -1/+1 | |
| | | |||||
| * | Remove some more unnecessary things from the global headers. | 2023-01-14 | 1 | -0/+1 | |
| | | |||||
| * | Avoid copying shared_ptr<ConfigTag> when not necessary. | 2023-01-10 | 1 | -2/+2 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -1/+1 | |
| | | | |||||
| * | | Rework the levels things are logged at to make more sense. | 2022-12-18 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2022-12-09 | 1 | -2/+11 | |
| |\| | |||||
| | * | Fix sending malformed MOTD and showfile messages to clients. | 2022-12-09 | 1 | -2/+12 | |
| | | | |||||
| * | | More const correctness. | 2022-10-23 | 1 | -1/+1 | |
| | | | |||||
| * | | Avoid file_cache in opermotd and showfile. | 2022-10-12 | 1 | -1/+1 | |
| | | | |||||
| * | | Make clientprotocol{msg,event} and numericbuilder non-default headers. | 2022-06-26 | 1 | -0/+1 | |
| | | | |||||
| * | | Rewrite logging calls to use the new APIs. | 2022-05-01 | 1 | -1/+1 | |
| | | | |||||
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -3/+3 | |
| | | | |||||
| * | | Refactor CoreException and ModuleException. | 2022-01-07 | 1 | -4/+4 | |
| | | | |||||
| * | | Mark all command classes as final. | 2021-10-01 | 1 | -1/+2 | |
| | | | |||||
| * | | Mark all module classes as final. | 2021-10-01 | 1 | -1/+2 | |
| | | | |||||
| * | | Added -Wshorten-64-to-32 and fixed all warnings. | 2021-05-30 | 1 | -3/+3 | |
| | | | |||||
| * | | Switch simple iterator loops to use range-based for loops. | 2021-04-07 | 1 | -4/+3 | |
| | | | |||||
| * | | Fix a ton of pedantic compiler warnings. | 2021-04-04 | 1 | -1/+1 | |
| | | | |||||
| * | | Constify variables within loops. | 2021-04-01 | 1 | -1/+1 | |
| | | | |||||
| * | | Move FilePosition to fileutils.h and use in ConfigTag. | 2020-11-03 | 1 | -1/+1 | |
| | | | |||||
| * | | Convert ConfigTag from reference<> to std::shared_ptr<>. | 2020-10-31 | 1 | -2/+2 | |
| | | | |||||
| * | | Add stdalgo::iterator_range and switch config tag reading to use it. | 2020-10-31 | 1 | -3/+1 | |
| | | | | | | | | | | | This allows us to use range-based for loops which were not possible with the previous config tag system. | ||||
| * | | Convert CmdResult to an 8-bit strongly typed enum. | 2020-10-27 | 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 | -5/+6 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-02-04 | 1 | -2/+2 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-31 | 1 | -1/+1 | |
| | | | |||||
| | * | Remove the preceding - in messages sent by opermotd and showfile. | 2020-01-24 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-01-17 | 1 | -1/+2 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-11 | 1 | -1/+2 | |
| | | | |||||
| * | | ModuleManager: remove fakederef. | 2019-02-07 | 1 | -1/+1 | |
| | | | |||||
| * | | LogManager: remove fakederef. | 2019-02-07 | 1 | -1/+1 | |
| | | | |||||
| * | | Replace the override macro with the override keyword. | 2019-01-25 | 1 | -3/+3 | |
| |/ | |||||
| * | Fix some incorrect conditions in the showfile module. | 2018-11-24 | 1 | -2/+2 | |
| | | | | | Thanks to @genius3000 for pointing this out. | ||||
| * | Improve the output of the showfile module. | 2018-11-24 | 1 | -2/+3 | |
| | | | | | | | - Omit the starting numeric if a zero numeric is specified. - Omit the ending numeric if a zero numeric is specified or if the end message is empty. | ||||
| * | Implement IRCv3 message tag support. | 2018-08-13 | 1 | -3/+4 | |
| | | | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com> | ||||
| * | Use CommandBase::Params instead of std::vector<std::string>. | 2018-07-26 | 1 | -1/+1 | |
| | | | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. | ||||
| * | Always process MOTD formatting escape codes. | 2018-04-22 | 1 | -2/+1 | |
| | | | | | | The options for disabling these were added to keep compatibility with previous 2.0 releases and are not needed any more. | ||||
| * | Move a bunch of optional module numerics to the module source file. | 2018-04-22 | 1 | -0/+9 | |
| | | |||||
| * | Add ConfigTag::getUInt for reading unsigned config values. | 2018-04-16 | 1 | -3/+3 | |
| | | |||||
| * | m_showfile Replace User::SendText() call with WriteCommand() | 2016-03-30 | 1 | -3/+4 | |
| | | |||||
