| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Yet more stylistic fixes. | 2022-12-01 | 1 | -1/+3 | |
| * | Rename session registration to connection to avoid a semantic conflict.•••We previously referred to both session registration and user registration as "registration" which is confusing for users who aren't familiar with how IRC works. | 2022-10-29 | 1 | -1/+1 | |
| * | Rename the services_account module to account. | 2022-10-18 | 1 | -2/+2 | |
| * | Use auto instead of type names where the type is obvious. | 2022-09-29 | 1 | -1/+1 | |
| * | Fix various cases of the &* being next to the name instead of type. | 2022-09-29 | 1 | -3/+3 | |
| * | Default allow_empty_last_param to false. | 2022-09-07 | 1 | -1/+0 | |
| * | Fix some warnings noticed by the readability-* clang-tidy checkers. | 2022-09-03 | 1 | -2/+2 | |
| * | Modernize various minor legacy C++isms. | 2022-07-30 | 1 | -1/+1 | |
| * | Rewrite logging calls to use the new APIs. | 2022-05-01 | 1 | -4/+4 | |
| * | Merge branch 'insp3' into master. | 2022-04-29 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-04-28 | 1 | -1/+1 | |
| * | | Make extension names case insensitive. | 2022-01-31 | 1 | -1/+1 | |
| * | | Fix a bunch of weird uses of .c_str(). | 2022-01-30 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2022-01-30 | 1 | -3/+23 | |
| |\| | |||||
| | * | Abort pre-registration SASL attempts when the user fully connects.•••This makes InspIRCd work more like other IRC servers which implement the recommended behaviour from the sasl-3.1 specification: If the client completes registration (with CAP END, NICK, USER and any other necessary messages) while the SASL authentication is still in progress, the server SHOULD abort it and send a 906 numeric, then register the client without authentication. Thanks to @aaronmdjones and @edk0 for finding and reporting this. | 2022-01-30 | 1 | -3/+23 | |
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -11/+11 | |
| * | | Fix various edge cases in extensible synchronisation.•••- Fix not forwarding the accountid extensible if it is set. - Rename the variadic Set() overload to SetFwd(). - Re-add the `const T&` overload of Set(). - Move `bool synced` to SimpleExtItem from StringExtItem. - Only sync extensibles if their instance is marked as syncable. | 2022-01-21 | 1 | -1/+1 | |
| * | | Add constexpr to the initialisation of various const static fields. | 2022-01-18 | 1 | -1/+1 | |
| * | | Refactor CoreException and ModuleException. | 2022-01-07 | 1 | -1/+1 | |
| * | | Make all extensibles use kebab-case for names where possible. | 2021-12-26 | 1 | -1/+1 | |
| * | | Promote ExtensionItem::ExtensibleType to a top level enum class. | 2021-12-23 | 1 | -1/+1 | |
| * | | Consistently use `!foo` instead of `foo == NULL`. | 2021-12-03 | 1 | -1/+1 | |
| * | | Apply the final keyword to all module classes where appropriate. | 2021-10-04 | 1 | -3/+4 | |
| * | | Mark all command classes as final. | 2021-10-01 | 1 | -2/+4 | |
| * | | Mark all module classes as final. | 2021-10-01 | 1 | -1/+2 | |
| * | | Merge branch 'insp3' into master. | 2021-08-28 | 1 | -0/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-08-27 | 1 | -0/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-06-13 | 1 | -4/+6 | |
| |\| | |||||
| | * | Code refactor and minor fix (#1879) | 2021-06-12 | 1 | -1/+4 | |
| * | | Merge branch 'insp3' into master. | 2021-05-11 | 1 | -5/+5 | |
| |\| | |||||
| | * | Fix a bunch of weird indentation and spacing issues. | 2021-04-27 | 1 | -10/+10 | |
| * | | Remove the SASL fallback event.•••Nothing has ever used this and we can do better than this. | 2021-04-27 | 1 | -13/+3 | |
| * | | 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 | -35/+31 | |
| * | | Add a forwarding overload of SimpleExtItem#Set. | 2021-03-17 | 1 | -1/+1 | |
| * | | Pascalize Unset in extension item classes. | 2021-03-17 | 1 | -2/+2 | |
| * | | Pascalize Set in extension item classes. | 2021-03-17 | 1 | -1/+1 | |
| * | | Pascalize Get in extension item classes. | 2021-03-17 | 1 | -2/+2 | |
| * | | Merge branch 'insp3' into master. | 2020-12-21 | 1 | -1/+1 | |
| |\| | |||||
| | * | Use !empty instead of size when checking if containers are empty. | 2020-12-16 | 1 | -1/+1 | |
| * | | Convert FOREACH_MOD_CUSTOM to a variadic function. | 2020-11-10 | 1 | -1/+1 | |
| * | | Initial support for platform-specific module file extensions. | 2020-11-04 | 1 | -1/+1 | |
| * | | Convert ConfigTag from reference<> to std::shared_ptr<>. | 2020-10-31 | 1 | -1/+1 | |
| * | | Convert CmdResult to an 8-bit strongly typed enum. | 2020-10-27 | 1 | -7/+7 | |
| * | | Pascalize Cap::set and rename Cap::get to IsEnabled. | 2020-07-20 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2020-05-05 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-04-24 | 1 | -1/+1 | |
| * | | Replace the flags_required field with an enum. | 2020-04-14 | 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 | |
