| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix various minor Doxygen issues. | 2026-03-29 | 1 | -1/+1 | |
| * | Move service types to their own namespace.•••- ServiceProvider is now Service::Provider - DataProvider is now Service::SimpleProvider (the old name does not really make sense now we don't have SERVICE_DATA and the only difference is automatic registration. - Some members of ModuleManager have been elevated to the Service namespace in case other code wants to use them. | 2026-03-29 | 1 | -3/+3 | |
| * | Switch modules from reference<> to shared_ptr<> and weak_ptr<>. | 2026-03-29 | 1 | -6/+6 | |
| * | Switch typedefs to using statements. | 2026-03-26 | 1 | -7/+7 | |
| * | Improve support for renaming modes. | 2026-03-19 | 1 | -4/+14 | |
| * | Clean up the casemapping checking and comparison code. | 2026-03-13 | 1 | -1/+1 | |
| * | Move <options:defaultmodes> to <channels> and rework.•••- The default prefix modes are now separate from the default channel modes. This should result in less accidentally broken configs. - The privs are now pre-parsed to a list of mode references. This should improve performance slightly as the repeated mode lookups are gone. It also allows us to write warnings to the debug log when the default privs are invalid. - Channels can now have a default topic. | 2026-03-12 | 1 | -0/+3 | |
| * | Fix various minor Doxygen issues. | 2026-03-08 | 1 | -1/+1 | |
| * | Get rid of the ModuleRef typedef.•••Eventually this will be moved to shared_ptr but for now the typedef is just hiding the constness of the reference. | 2026-03-04 | 1 | -1/+1 | |
| * | Massive rework of how internal service providers work.•••- ServiceType is dead. All modules use RegisterService now. - Modules can implement UnregisterService which is called from DelService now. - Split the service type prefix into its own field. - Renamed Service::name to Service::service_name. This revealed a few bugs. | 2026-03-02 | 1 | -2/+4 | |
| * | Unify command_parse and ctables. | 2026-02-15 | 1 | -1/+1 | |
| * | Update copyright headers. | 2024-09-07 | 1 | -1/+1 | |
| * | Use auto in GetLevelRequired and GetSyntax. | 2024-08-29 | 1 | -5/+2 | |
| * | Update copyright headers. | 2024-06-21 | 1 | -1/+1 | |
| * | Update copyright headers. | 2024-06-07 | 1 | -2/+2 | |
| * | Retain the "real" username properly like we do for hostnames.•••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. | 2023-06-29 | 1 | -2/+2 | |
| * | Replace ModeAction with bool.•••This enum is functionally the same as bool but with weird semantics. | 2023-01-22 | 1 | -16/+7 | |
| * | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -1/+1 | |
| * | | Fix some types which were missed when making stuff final. | 2022-10-30 | 1 | -1/+1 | |
| * | | Fix various inappropriate uses of UINT_MAX. | 2022-10-14 | 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 | -2/+2 | |
| * | | Switch from NULL to nullptr. | 2022-07-22 | 1 | -6/+6 | |
| * | | Fix the modehandlers array being bigger than necessary•••We now pack the positions within this array so we can shrink it. | 2022-06-23 | 1 | -5/+2 | |
| * | | Use size_t instead of `unsigned int` in ModeParser. | 2022-06-11 | 1 | -1/+1 | |
| * | | Add a typedef for a mode rank. | 2022-05-17 | 1 | -9/+13 | |
| * | | Store a set of list mode pointers in Membership instead of characters. | 2022-05-17 | 1 | -0/+9 | |
| * | | Fix various Doxygen comment issues. | 2022-05-02 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2022-04-29 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2022-04-28 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2022-04-16 | 1 | -0/+6 | |
| |\| | |||||
| | * | Add a method for finding the next prefix mode above a rank. | 2022-04-11 | 1 | -0/+6 | |
| * | | Replace duplicated documentation with @copydoc. | 2022-04-16 | 1 | -24/+5 | |
| * | | Pack the mode set more efficiently and add support for numeric modes. | 2022-03-27 | 1 | -0/+4 | |
| * | | Add a typedef for the mode status bitset. | 2022-03-27 | 1 | -0/+3 | |
| * | | Fix unsigned/const keyword ordering, remove unnecessary consts. | 2022-03-27 | 1 | -2/+2 | |
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -13/+13 | |
| * | | Fix a few Doxygen comment errors. | 2022-01-24 | 1 | -1/+1 | |
| * | | Add constexpr to the initialisation of various const static fields. | 2022-01-18 | 1 | -3/+3 | |
| * | | Refactor CoreException and ModuleException. | 2022-01-07 | 1 | -1/+1 | |
| * | | Add the final keyword to all remaining classes that can have it. | 2021-12-20 | 1 | -6/+11 | |
| * | | Remove a bunch of unnecessary whitespace. | 2021-08-17 | 1 | -1/+0 | |
| * | | Merge branch 'insp3' into master. | 2021-07-04 | 1 | -3/+7 | |
| |\| | |||||
| | * | Fix some "targ" usages which were missed in the earlier commit. | 2021-07-03 | 1 | -3/+7 | |
| * | | Move ModeParser::BuildPrefixes to core_mode.•••Now we've dropped support for the 1202 protocol we don't need this in the core. | 2021-07-03 | 1 | -5/+0 | |
| * | | Move ModeParser::GiveModeList to core_mode.•••Now we've dropped support for the 1202 protocol we don't need this in the core. | 2021-07-03 | 1 | -8/+0 | |
| * | | 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 | |
| * | | Rename Simple{Channel,User}ModeHandler to match other mode handlers. | 2021-06-01 | 1 | -4/+4 | |
