| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge branch 'insp4' into master. | 2026-03-31 | 35 | -69/+67 | |
| * | Use SetFwd in the override module. | 2026-03-30 | 1 | -1/+1 | |
| * | Switch some modules to use GetRef instead of Get. | 2026-03-30 | 2 | -19/+8 | |
| * | Switch dccallow to ValuePtr and Create. | 2026-03-30 | 1 | -5/+3 | |
| * | Call the correct creation method in the silence module. | 2026-03-30 | 1 | -1/+1 | |
| * | Stop deleting the spanningtree utilities on unload.•••This is not an owning pointer now. | 2026-03-30 | 1 | -1/+1 | |
| * | Add methods to ListExtItem to encode individual elements.•••This allows its use with non-string lists. | 2026-03-30 | 1 | -54/+6 | |
| * | 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 | 6 | -9/+9 | |
| * | Move some functions from stdalgo to utility/pointer. | 2026-03-29 | 5 | -7/+7 | |
| * | 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 | 9 | -32/+41 | |
| * | Get rid of thismod/Parent in the mysql module. | 2026-03-29 | 1 | -12/+6 | |
| * | Switch modules from reference<> to shared_ptr<> and weak_ptr<>. | 2026-03-29 | 236 | -1149/+1178 | |
| * | Switch the extensible system to using shared pointers. | 2026-03-27 | 17 | -181/+118 | |
| * | Move CUList to be declared inside User. | 2026-03-26 | 25 | -46/+46 | |
| * | Switch typedefs to using statements. | 2026-03-26 | 37 | -56/+56 | |
| * | Merge branch 'insp4' into master. | 2026-03-26 | 1 | -0/+303 | |
| * | General clean up of the sasl module. | 2026-03-25 | 1 | -52/+50 | |
| * | Use server tracking from the services module in the sasl module. | 2026-03-25 | 2 | -98/+30 | |
| * | Merge branch 'insp4' into master. | 2026-03-19 | 7 | -14/+12 | |
| * | 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 | |
| * | Rename servprotect to protect. | 2026-03-19 | 3 | -3/+3 | |
| * | Improve support for renaming modes. | 2026-03-19 | 5 | -33/+6 | |
| * | Merge branch 'insp4' into master. | 2026-03-18 | 2 | -1/+36 | |
| * | 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 | 5 | -23/+13 | |
| * | Fix cap notifications to comply with ircv3/ircv3-specifications#480. | 2026-03-14 | 1 | -2/+2 | |
| * | 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 | 3 | -7/+5 | |
| * | Rewrite portparser and move to stringutils. | 2026-03-14 | 3 | -27/+14 | |
| * | Rewrite sepstream and move to stringutils. | 2026-03-14 | 45 | -133/+126 | |
| * | Rewrite tokenstream and move to stringutils. | 2026-03-14 | 7 | -20/+22 | |
| * | Clean up the casemapping checking and comparison code. | 2026-03-13 | 57 | -127/+126 | |
| * | 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 | 15 | -30/+149 | |
| * | Move channel settings to the <channels> tag. | 2026-03-12 | 1 | -6/+6 | |
| * | Fix dereferencing a LocalUserIO that doesn't have a user yet. | 2026-03-12 | 1 | -1/+4 | |
| * | Rewrite old banredirect entries to the new extban form. | 2026-03-12 | 1 | -0/+38 | |
| * | Fix the name of the sharebans module. | 2026-03-12 | 1 | -0/+0 | |
| * | 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 | 41 | -701/+716 | |
| * | Mark all acting extbans as MATCH_REQUIRE_CHANNEL.•••This removes the need for special behaviour in the silence module. | 2026-03-09 | 1 | -5/+1 | |
| * | Reuse the ModResult variable in the redirect module. | 2026-03-09 | 1 | -4/+1 | |
| * | Banish banredirect to contrib, always enable the redirect: extban. | 2026-03-09 | 2 | -375/+3 | |
| * | Merge branch 'insp4' into master. | 2026-03-09 | 3 | -66/+228 | |
| * | The realmask extban does not require a channel any more. | 2026-03-08 | 1 | -1/+1 | |
| * | Merge branch 'insp4' into master. | 2026-03-08 | 1 | -0/+20 | |
| * | Make the ban checking functions able to check any list mode. | 2026-03-08 | 29 | -45/+73 |
