| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2024-06-07 | 1 | -4/+4 | |
| | | |||||
| * | Allow mutating the status message type in OnUserPre(Tag)Message. | 2024-05-06 | 1 | -1/+1 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2023-12-22 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2023-12-22 | 1 | -1/+1 | |
| | | | |||||
| * | | Fix a typo in the alias module. | 2023-11-14 | 1 | -2/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2023-11-14 | 1 | -0/+5 | |
| |\| | |||||
| | * | Allow using $address for the user IP address in alias templates. | 2023-11-12 | 1 | -0/+5 | |
| | | | | | | | | | Closes #2068. | ||||
| * | | Retain the "real" username properly like we do for hostnames. | 2023-06-29 | 1 | -3/+10 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This introduces the concept of a real username. This value comes from either the initial USER message or from an ident lookup. Doing this allows us to use it for bans through vidents and cloaking web client users using their remote username. While changing this I also changed all of the uses of "ident" other than RFC 1413 lookups and some compatibility cases to refer to usernames as user(name) instead of ident. Our use of ident in these places was incorrect as that only refers to the RFC 1413 response and is not commonly used in the way we used it by any other IRC server implementations. | ||||
| * | | Convert various enums to strongly typed scoped enums. | 2023-01-22 | 1 | -1/+1 | |
| | | | |||||
| * | | 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 | |
| | | | |||||
| * | | Rename session registration to connection to avoid a semantic conflict. | 2022-10-29 | 1 | -3/+1 | |
| | | | | | | | | | | | | | 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. | ||||
| * | | Use User::IsFullyConnected instead of checking for REG_ALL. | 2022-10-29 | 1 | -1/+1 | |
| | | | |||||
| * | | 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 | -2/+2 | |
| | | | |||||
| * | | Fix some warnings noticed by the readability-* clang-tidy checkers. | 2022-09-03 | 1 | -3/+4 | |
| | | | |||||
| * | | Switch from NULL to nullptr. | 2022-07-22 | 1 | -1/+1 | |
| | | | |||||
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -2/+2 | |
| | | | |||||
| * | | Fix aliases which require routing to be broadcast out. | 2022-01-19 | 1 | -5/+10 | |
| | | | |||||
| * | | Refactor CoreException and ModuleException. | 2022-01-07 | 1 | -2/+2 | |
| | | | |||||
| * | | Apply the final keyword to all module classes where appropriate. | 2021-10-04 | 1 | -1/+1 | |
| | | | |||||
| * | | Mark all module classes as final. | 2021-10-01 | 1 | -1/+2 | |
| | | | |||||
| * | | Fix some places where U-line -> service was missed. | 2021-08-29 | 1 | -1/+1 | |
| | | | |||||
| * | | Remove a bunch of unnecessary whitespace. | 2021-08-17 | 1 | -1/+0 | |
| | | | |||||
| * | | Migrate collections from insert to emplace. | 2021-04-18 | 1 | -1/+1 | |
| | | | |||||
| * | | Constify variables within loops. | 2021-04-01 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-03-05 | 1 | -2/+2 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-03-05 | 1 | -2/+2 | |
| | | | |||||
| * | | Move iterator_range to the utility directory and renamespace. | 2021-03-02 | 1 | -2/+2 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-02-28 | 1 | -4/+5 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-02-26 | 1 | -2/+2 | |
| | | | |||||
| | * | Fix the numeric sent when a U-lined alias target is not online. | 2021-02-18 | 1 | -2/+3 | |
| | | | |||||
| * | | Rename <alias:uline> to <alias:service>. | 2021-01-30 | 1 | -4/+4 | |
| | | | |||||
| * | | Use references instead of pointers for aliases. | 2020-11-11 | 1 | -18/+18 | |
| | | | |||||
| * | | Add stdalgo::equal_range and switch more stuff to iterator_range. | 2020-11-11 | 1 | -12/+12 | |
| | | | |||||
| * | | Initial support for platform-specific module file extensions. | 2020-11-04 | 1 | -1/+1 | |
| | | | |||||
| * | | Move FilePosition to fileutils.h and use in ConfigTag. | 2020-11-03 | 1 | -2/+2 | |
| | | | |||||
| * | | Convert ConfigTag from reference<> to std::shared_ptr<>. | 2020-10-31 | 1 | -1/+1 | |
| | | | |||||
| * | | 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. | ||||
| * | | Merge branch 'insp3' into master. | 2020-05-05 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fixes by misspell-fixer | 2020-04-21 | 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/+2 | |
| | | | |||||
| * | | Move FindNickOnly to UserManager. | 2020-02-09 | 1 | -1/+1 | |
| | | | |||||
| * | | Use C++11 inline initialisation for class members. | 2020-02-06 | 1 | -2/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-01-17 | 1 | -4/+9 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-11 | 1 | -4/+9 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-01-01 | 1 | -1/+1 | |
| |\| | |||||
| | * | Use FindNickOnly for finding the required nick for an alias. | 2019-12-21 | 1 | -1/+1 | |
| | | | |||||
