| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix unsigned/const keyword ordering, remove unnecessary consts. | 2022-03-27 | 1 | -1/+1 | |
| | | |||||
| * | Kill vendor_directory in favour of normal include paths. | 2022-01-26 | 1 | -1/+1 | |
| | | |||||
| * | Replace consolecolors with a vendored library. | 2022-01-26 | 1 | -19/+15 | |
| | | | | | | This library supports much more than consolecolors including the Windows 8 console API. | ||||
| * | Slim the included headers down more. | 2022-01-26 | 1 | -12/+12 | |
| | | |||||
| * | Replace uses of the FileSystem class with std::filesystem. | 2022-01-15 | 1 | -7/+10 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2022-01-03 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2021-12-30 | 1 | -1/+1 | |
| | | | |||||
| * | | Remove unused time_t field from the timer system. | 2021-11-05 | 1 | -1/+1 | |
| | | | | | | | | | | | This is equivalent to calling InspIRCd::Now() and is only actually used in one place in modules. | ||||
| * | | Merge branch 'insp3' into master. | 2021-08-28 | 1 | -0/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-08-27 | 1 | -0/+1 | |
| | | | |||||
| * | | Remove a bunch of unnecessary whitespace. | 2021-08-17 | 1 | -1/+0 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-08-17 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix argv index error in 'unknown option' message. | 2021-08-10 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It looks like ya_getopt increments `optind` between reading the argument and returning. Before: ``` $ ./build/GCC-8.3/bin/inspircd --foo bar Error: unknown option 'bar'. $ ./build/GCC-8.3/bin/inspircd --help Error: unknown option '% ``` After: ``` $ ./build/GCC-8.3/bin/inspircd --foo bar Error: unknown option '--foo'. Usage: ./build/GCC-8.3/bin/inspircd [--config <file>] [--debug] [--nofork] [--nolog] [--nopid] [--runasroot] [--version] $ ./build/GCC-8.3/bin/inspircd --help Error: unknown option '--help'. Usage: ./build/GCC-8.3/bin/inspircd [--config <file>] [--debug] [--nofork] [--nolog] [--nopid] [--runasroot] [--version] ``` | ||||
| * | | Added -Wshorten-64-to-32 and fixed all warnings. | 2021-05-30 | 1 | -1/+1 | |
| | | | |||||
| * | | Move channel logic from InspIRCd to the new ChannelManager class. | 2021-05-08 | 1 | -1/+0 | |
| | | | |||||
| * | | Switch simple iterator loops to use range-based for loops. | 2021-04-07 | 1 | -2/+1 | |
| | | | |||||
| * | | Fix a ton of pedantic compiler warnings. | 2021-04-04 | 1 | -1/+1 | |
| | | | |||||
| * | | Remove the unused ExitCodes array. | 2021-04-02 | 1 | -19/+0 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-03-05 | 1 | -24/+10 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-03-05 | 1 | -5/+5 | |
| | | | |||||
| | * | Fix not being able to colour format output to stderr on Windows. | 2021-03-03 | 1 | -19/+5 | |
| | | | |||||
| * | | Refactor classbase/CullResult into Cullable/Cullable::Result. | 2021-03-02 | 1 | -2/+2 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-02-28 | 1 | -2/+2 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-02-26 | 1 | -2/+2 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-02-01 | 1 | -1/+2 | |
| |\| | |||||
| | * | Duplicate the stdout file handle when used for logging. | 2021-02-01 | 1 | -1/+2 | |
| | | | | | | | | | | | Failure to do this may result in a crash on shutdown when started in debug mode. | ||||
| * | | Merge branch 'insp3' into master. | 2021-01-18 | 1 | -3/+3 | |
| |\| | |||||
| | * | Fix showing the start header when using --version. | 2021-01-18 | 1 | -2/+2 | |
| | | | |||||
| | * | Add a new runtime directory and move the pid file to it. | 2021-01-18 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | The data directory is intended for persistent files whereas the pid file is ephemeral. This distinction doesn't matter by default but on system-wide installs ephemeral runtime files go in /var/run or /run instead. | ||||
| * | | Merge branch 'insp3' into master. | 2020-11-03 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix an off by one error in the "unknown option" message. | 2020-11-03 | 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 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-08-25 | 1 | -0/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-07-30 | 1 | -0/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-07-15 | 1 | -1/+1 | |
| |\| | |||||
| | * | Minor typo correction. | 2020-07-01 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-05-05 | 1 | -3/+3 | |
| |\| | |||||
| | * | Fixes by misspell-fixer | 2020-04-21 | 1 | -3/+3 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-04-09 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix clock skip warnings being inverted. | 2020-03-30 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-03-18 | 1 | -11/+16 | |
| |\| | |||||
| | * | Extract time skip warning code to a static function. | 2020-02-19 | 1 | -11/+16 | |
| | | | |||||
| * | | Use C++11 inline initialisation for class members. | 2020-02-06 | 1 | -6/+1 | |
| | | | |||||
| * | | Make WritePID read directly from the config. | 2020-02-06 | 1 | -6/+6 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-02-04 | 1 | -14/+4 | |
| |\| | |||||
| | * | Make loading modules considerably more robust and user friendly. | 2020-02-02 | 1 | -1/+0 | |
| | | | |||||
| | * | Move DeleteZero to stdalgo::delete_zero. | 2020-01-19 | 1 | -12/+3 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-01-17 | 1 | -9/+13 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-11 | 1 | -7/+11 | |
| | | | |||||
