| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge branch 'insp4' into master. | 2026-03-31 | 12 | -44/+42 | |
| * | 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 | 4 | -6/+6 | |
| * | Move some functions from stdalgo to utility/pointer. | 2026-03-29 | 2 | -2/+2 | |
| * | Avoid the direct use of intptr_t wherever possible.•••This may cause problems on systems like CheriBSD where the pointer type stores extra data. | 2026-03-29 | 2 | -6/+6 | |
| * | Switch modules from reference<> to shared_ptr<> and weak_ptr<>. | 2026-03-29 | 61 | -243/+255 | |
| * | Switch the extensible system to using shared pointers. | 2026-03-27 | 1 | -16/+17 | |
| * | Move CUList to be declared inside User. | 2026-03-26 | 3 | -3/+3 | |
| * | Switch typedefs to using statements. | 2026-03-26 | 5 | -9/+9 | |
| * | Merge branch 'insp4' into master. | 2026-03-19 | 4 | -7/+3 | |
| * | Reduce indentation in core_channel. | 2026-03-19 | 1 | -18/+13 | |
| * | Improve config compatibility with v4. | 2026-03-19 | 1 | -3/+11 | |
| * | Move some remaining channel settings to <channels>. | 2026-03-19 | 2 | -4/+4 | |
| * | Generate the credits for /INFO from Git history. | 2026-03-15 | 3 | -42/+132 | |
| * | Change ServerList to return a list of Server* not a duplicate class. | 2026-03-15 | 1 | -1/+1 | |
| * | Fix message tag parsing•••Fixes 76f3f24c03c22576324e5af199d3e61d02a79b0d | 2026-03-14 | 1 | -1/+1 | |
| * | Fix a crash caused by weirdly casting a pointer to an I/O handler. | 2026-03-14 | 1 | -0/+1 | |
| * | Rewrite portparser and move to stringutils. | 2026-03-14 | 1 | -5/+4 | |
| * | Rewrite sepstream and move to stringutils. | 2026-03-14 | 7 | -11/+11 | |
| * | Rewrite tokenstream and move to stringutils. | 2026-03-14 | 1 | -1/+2 | |
| * | Clean up the casemapping checking and comparison code. | 2026-03-13 | 16 | -16/+16 | |
| * | Move <options:{fixed,prefix,suffix}part> to <channels>. | 2026-03-12 | 2 | -5/+6 | |
| * | Move <options:modesinlist> to <channels>. | 2026-03-12 | 1 | -1/+1 | |
| * | Merge branch 'insp4' into master. | 2026-03-12 | 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 | -1/+98 | |
| * | Move channel settings to the <channels> tag. | 2026-03-12 | 1 | -6/+6 | |
| * | Rework sending server protocol messages.•••- Replace CmdBuilder with MessageBuilder. This has a less footgun API. All message building has to go through this now so we can implement other message formats in the future. - Replace the message parsing in WriteLine with an analogue to PreProcessOldProtocolMessage. This should be much faster. - Move parameter translation from the core to spanningtree. - Change EncodeParameter to return the value instead of updating in place. - Replace the OnBuild*Message events with one OnServerMessage that can now access all parts of the message and change them. | 2026-03-12 | 2 | -3/+3 | |
| * | Make the ban checking functions able to check any list mode. | 2026-03-08 | 7 | -10/+21 | |
| * | Replace IS_* with member functions.•••- All user types get an Is* function. - Only local users are cast using the old function so only local users get an As* function. | 2026-03-08 | 26 | -69/+69 | |
| * | Add support for per-operator isupport. | 2026-03-06 | 4 | -14/+130 | |
| * | Move building TARGMAX to core_info. | 2026-03-06 | 2 | -14/+23 | |
| * | Add the old connect class to OnPostChangeConnectClass. | 2026-03-06 | 1 | -7/+2 | |
| * | Convert TranslateType to an enum class. | 2026-03-06 | 2 | -2/+2 | |
| * | Merge branch 'insp4' into master. | 2026-03-06 | 1 | -1/+1 | |
| * | Add validation to silence extbans. | 2026-03-06 | 1 | -0/+3 | |
| * | Merge branch 'insp4' into master. | 2026-03-06 | 3 | -2/+49 | |
| * | Deduplicate command usability checks into Command::IsUsableBy. | 2026-03-05 | 1 | -16/+1 | |
| * | Fix kicking with multiple channels. | 2026-03-02 | 1 | -2/+3 | |
| * | Switch parameter count fields to use size_t. | 2026-03-02 | 2 | -2/+2 | |
| * | Abolish FMT_PTR, this does the same for both formatters. | 2026-03-02 | 2 | -5/+5 | |
| * | Rename ServiceProvider::creator to service_creator and add GetSource. | 2026-03-02 | 7 | -29/+29 | |
| * | 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 | 4 | -7/+7 | |
| * | Move the event/ prefix of events to the parent class. | 2026-03-02 | 7 | -10/+10 | |
| * | Rename ServiceProvider methods to avoid shadowing issues. | 2026-03-02 | 10 | -16/+15 | |
| * | Merge branch 'insp4' into master. | 2026-02-28 | 3 | -16/+15 | |
| * | Merge branch 'insp4' into master. | 2026-02-28 | 2 | -1/+1 | |
| * | Merge branch 'insp4' into master. | 2026-02-28 | 1 | -4/+6 | |
| * | Implement support for per-command maximum targets.•••Closes #2157. | 2026-02-27 | 12 | -1/+25 | |
| * | Move ERR_USERONCHANNEL to the global numeric header. | 2026-02-26 | 1 | -1/+0 | |
| * | Add a numeric helper for ERR_NOPRIVILEGES. | 2026-02-26 | 2 | -4/+5 | |
| * | Add support for local-only X-lines, remove K-lines. | 2026-01-20 | 7 | -154/+71 |
