| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge branch 'insp4' into master. | 2026-03-31 | 7 | -7/+7 | |
| |\ | |||||
| | * | Update copyright headers. | 2026-03-31 | 7 | -7/+7 | |
| * | | Kill the remaining uses of intptr_t. | 2026-03-30 | 1 | -4/+4 | |
| * | | Fix an inverted condition in SimpleExtItem::GetPtr. | 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 | -8/+33 | |
| * | | Replace some C-style array usage with Modern C++. | 2026-03-29 | 1 | -7/+10 | |
| * | | Fix various minor Doxygen issues. | 2026-03-29 | 6 | -7/+11 | |
| * | | 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 | 27 | -106/+124 | |
| * | | Fix building on older versions of Clang. | 2026-03-29 | 1 | -1/+1 | |
| * | | Remove an obsolete overload of ConvToStr.•••std::to_string is now defined by the C++ spec to use std::format so we may as well just do FMT::format in all cases. | 2026-03-29 | 1 | -10/+1 | |
| * | | Move some functions from stdalgo to utility/pointer. | 2026-03-29 | 2 | -21/+20 | |
| * | | 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 | 3 | -9/+56 | |
| * | | Delete the remainders of the old reference<> system. | 2026-03-29 | 5 | -109/+2 | |
| * | | Switch modules from reference<> to shared_ptr<> and weak_ptr<>. | 2026-03-29 | 50 | -180/+258 | |
| * | | Move service code from base to its own header. | 2026-03-27 | 3 | -42/+64 | |
| * | | Remove the now unused refcountbase. | 2026-03-27 | 1 | -29/+0 | |
| * | | Switch the extensible system to using shared pointers. | 2026-03-27 | 5 | -65/+95 | |
| * | | Move CUList to be declared inside User. | 2026-03-26 | 7 | -13/+13 | |
| * | | Switch typedefs to using statements. | 2026-03-26 | 36 | -104/+104 | |
| * | | Use server tracking from the services module in the sasl module. | 2026-03-25 | 1 | -0/+3 | |
| * | | Merge branch 'insp4' into master. | 2026-03-19 | 1 | -0/+3 | |
| |\| | |||||
| | * | Expose the maximum channel key length to services. | 2026-03-19 | 1 | -0/+3 | |
| | * | Backport the fix of copying dynamic references from git master. | 2026-03-17 | 1 | -1/+1 | |
| * | | Move some remaining channel settings to <channels>. | 2026-03-19 | 1 | -1/+1 | |
| * | | Improve support for renaming modes. | 2026-03-19 | 1 | -4/+14 | |
| * | | Fix a minor crash on shut down after copying a dynamic reference. | 2026-03-15 | 1 | -1/+1 | |
| * | | Change ServerList to return a list of Server* not a duplicate class. | 2026-03-15 | 1 | -12/+1 | |
| * | | Remove an obsolete function. | 2026-03-14 | 1 | -4/+0 | |
| * | | Convert some more stuff over to string_view. | 2026-03-14 | 2 | -4/+4 | |
| * | | Fix a crash caused by weirdly casting a pointer to an I/O handler. | 2026-03-14 | 1 | -0/+13 | |
| * | | Rewrite portparser and move to stringutils. | 2026-03-14 | 4 | -92/+80 | |
| * | | Rewrite sepstream and move to stringutils. | 2026-03-14 | 4 | -86/+70 | |
| * | | Convert some methods to use string_view. | 2026-03-14 | 3 | -15/+15 | |
| * | | Rewrite tokenstream and move to stringutils. | 2026-03-14 | 2 | -41/+75 | |
| * | | Clean up the casemapping checking and comparison code. | 2026-03-13 | 18 | -105/+146 | |
| * | | 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 | 5 | -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 | -30/+5 | |
| * | | Mark all acting extbans as MATCH_REQUIRE_CHANNEL.•••This removes the need for special behaviour in the silence module. | 2026-03-09 | 1 | -1/+1 | |
| * | | Merge branch 'insp4' into master. | 2026-03-09 | 1 | -1/+7 | |
| |\| | |||||
| | * | Add the VF_DEPRECATED flag and warn on load about deprecation. | 2026-03-09 | 1 | -1/+7 | |
| * | | Make the ban checking functions able to check any list mode. | 2026-03-08 | 4 | -36/+48 | |
| * | | Fix various minor Doxygen issues. | 2026-03-08 | 10 | -16/+21 | |
| * | | Merge branch 'insp4' into master. | 2026-03-08 | 3 | -3/+2 | |
| |\| | |||||
| | * | Fix some minor doxygen warnings. | 2026-03-08 | 3 | -3/+2 | |
| * | | 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 | 3 | -21/+20 | |
| * | | Remove the unused remote user finding methods. | 2026-03-07 | 1 | -34/+0 | |
| * | | Add support for per-operator isupport. | 2026-03-06 | 1 | -0/+1 | |
| * | | Add the old connect class to OnPostChangeConnectClass. | 2026-03-06 | 1 | -1/+2 | |
| * | | Convert TranslateType to an enum class. | 2026-03-06 | 1 | -13/+15 | |
| * | | Merge branch 'insp4' into master. | 2026-03-06 | 1 | -3/+2 | |
| |\| | |||||
