| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rename the error log level to critical.•••"ERROR" is apparently defined by more than just Windows. Let's pick a different name which is less likely to cause collisions. | 2023-08-11 | 1 | -1/+1 | |
| * | Update usages of stdalgo::string::equalsci to use insp::equalsci. | 2023-08-11 | 1 | -1/+2 | |
| * | Merge branch 'insp3' into master. | 2023-04-28 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2023-04-28 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2023-01-25 | 1 | -1/+2 | |
| |\| | |||||
| | * | Fix PackageInfo directives in extra modules. | 2023-01-19 | 1 | -1/+2 | |
| * | | Convert log calls to use fmtlib format strings | 2023-01-24 | 1 | -3/+3 | |
| * | | Log the versions of third-party libraries used by modules. | 2023-01-19 | 1 | -0/+16 | |
| * | | Merge branch 'insp3' into master. | 2023-01-16 | 1 | -5/+32 | |
| |\| | |||||
| | * | Fix building the pgsql connection DSN in some rare cases.•••These values need to be escaped or they will be malformed. Ref: https://www.postgresql.org/docs/15/libpq-connect.html#id-1.7.3.8.3.5 | 2023-01-14 | 1 | -5/+32 | |
| * | | Qualify auto correctly in all cases. | 2023-01-10 | 1 | -1/+1 | |
| * | | Avoid copying shared_ptr<ConfigTag> when not necessary. | 2023-01-10 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -2/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -2/+1 | |
| * | | Rework the levels things are logged at to make more sense. | 2022-12-18 | 1 | -1/+1 | |
| * | | Yet more stylistic fixes. | 2022-12-01 | 1 | -3/+9 | |
| * | | Fix various cases of the &* being next to the name instead of type. | 2022-09-29 | 1 | -3/+3 | |
| * | | Use auto in places where it is really obvious what the type is. | 2022-09-04 | 1 | -1/+1 | |
| * | | Fix some warnings noticed by the readability-* clang-tidy checkers. | 2022-09-03 | 1 | -4/+4 | |
| * | | Modernize various minor legacy C++isms. | 2022-07-30 | 1 | -4/+4 | |
| * | | Switch from NULL to nullptr. | 2022-07-22 | 1 | -5/+5 | |
| * | | Tweak the compiler flags for extra modules a bit.•••- Use pkg-config for the pgsql module. - Remove defaults from argon2, geo_maxmind, and regex_re2 (these are not needed with newer package versions). - Remove old library warning from geo_maxmind (no longer needed). [skip windows ci] | 2022-05-06 | 1 | -2/+2 | |
| * | | Rewrite logging calls to use the new APIs. | 2022-05-01 | 1 | -4/+4 | |
| * | | Slim the included headers down more. | 2022-01-26 | 1 | -2/+2 | |
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -5/+5 | |
| * | | Remove unused time_t field from the timer system.•••This is equivalent to calling InspIRCd::Now() and is only actually used in one place in modules. | 2021-11-05 | 1 | -2/+2 | |
| * | | Apply the final keyword to all module classes where appropriate. | 2021-10-04 | 1 | -4/+8 | |
| * | | Mark all module classes as final. | 2021-10-01 | 1 | -1/+2 | |
| * | | Use -isystem for the pgsql includes. | 2021-09-26 | 1 | -1/+1 | |
| * | | Require TLS by default when connecting to Postgres servers. | 2021-08-28 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-07-01 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix various spelling issues (#1883).•••Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> | 2021-06-21 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-05-11 | 1 | -4/+4 | |
| |\| | |||||
| | * | Fix a bunch of weird indentation and spacing issues. | 2021-04-27 | 1 | -1/+1 | |
| * | | Migrate collections from insert to emplace. | 2021-04-18 | 1 | -1/+1 | |
| * | | Switch simple iterator loops to use range-based for loops. | 2021-04-07 | 1 | -7/+6 | |
| * | | Fix a ton of pedantic compiler warnings. | 2021-04-04 | 1 | -2/+2 | |
| * | | Constify variables within loops. | 2021-04-01 | 1 | -1/+1 | |
| * | | Convert SQL::Field to be a typedef of optional<string>. | 2021-03-30 | 1 | -2/+2 | |
| * | | Use emplace_back where possible. | 2021-03-30 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-03-05 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-03-05 | 1 | -1/+1 | |
| * | | Refactor classbase/CullResult into Cullable/Cullable::Result. | 2021-03-02 | 1 | -4/+4 | |
| * | | 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.•••This allows us to use range-based for loops which were not possible with the previous config tag system. | 2020-10-31 | 1 | -5/+6 | |
| * | | Merge branch 'insp3' into master. | 2020-05-05 | 1 | -64/+59 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-04-24 | 1 | -1/+1 | |
| | * | Improve the pgsql connection error messages. | 2020-04-23 | 1 | -15/+18 | |
| | * | Fix reconnecting a pgsql connection if it fails. | 2020-04-23 | 1 | -9/+13 | |
| | * | Unregister pgsql connection fds when they are deleted. | 2020-04-23 | 1 | -1/+4 | |
