| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | Fix cap notifications to comply with ircv3/ircv3-specifications#480. | 2026-03-14 | 1 | -2/+2 | ||
| * | | Fix a minor crash on shut down after copying a dynamic reference. | 2026-03-15 | 2 | -1/+7 | ||
| * | | Generate the credits for /INFO from Git history. | 2026-03-15 | 6 | -50/+203 | ||
| * | | Update the mailmap. | 2026-03-15 | 2 | -4/+6 | ||
| * | | Change ServerList to return a list of Server* not a duplicate class. | 2026-03-15 | 6 | -35/+14 | ||
| * | | Silence a warning in the string hashing code (for real this time). | 2026-03-14 | 1 | -7/+7 | ||
| * | | Fix cap notifications to comply with ircv3/ircv3-specifications#480. | 2026-03-14 | 1 | -2/+2 | ||
| * | | Remove an obsolete function. | 2026-03-14 | 1 | -4/+0 | ||
| * | | Convert some more stuff over to string_view. | 2026-03-14 | 3 | -9/+9 | ||
| * | | Fix message tag parsing•••Fixes 76f3f24c03c22576324e5af199d3e61d02a79b0d | 2026-03-14 | 1 | -1/+1 | ||
| * | | Silence a warning in the string hashing code. | 2026-03-14 | 1 | -7/+7 | ||
| * | | Fix a crash caused by weirdly casting a pointer to an I/O handler. | 2026-03-14 | 4 | -7/+18 | ||
| * | | Rewrite portparser and move to stringutils. | 2026-03-14 | 11 | -237/+210 | ||
| * | | Rewrite sepstream and move to stringutils. | 2026-03-14 | 55 | -277/+264 | ||
| * | | Convert some methods to use string_view. | 2026-03-14 | 5 | -18/+19 | ||
| * | | Rewrite tokenstream and move to stringutils. | 2026-03-14 | 11 | -110/+168 | ||
| * | | Clean up the casemapping checking and comparison code. | 2026-03-13 | 82 | -385/+484 | ||
| * | | Move <options:{fixed,prefix,suffix}part> to <channels>. | 2026-03-12 | 3 | -18/+18 | ||
| * | | Move <options:maskinlist> and <options:maskintopic> to <channels>. | 2026-03-12 | 2 | -10/+13 | ||
| * | | Move <options:modesinlist> to <channels>. | 2026-03-12 | 2 | -10/+10 | ||
| * | | Merge branch 'insp4' into master. | 2026-03-12 | 1 | -1/+1 | ||
| |\| | ||||||
| | * | Fix clearing the help channel modes before re-reading the config. | 2026-03-12 | 1 | -1/+1 | ||
| | * | Fix reading the correct name of the <options:modesinlist> field. | 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 | 24 | -96/+182 | ||
| * | | Move channel settings to the <channels> tag. | 2026-03-12 | 2 | -61/+68 | ||
| * | | 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 some missing module compat entries. | 2026-03-12 | 1 | -1/+3 | ||
| * | | 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 | 44 | -794/+723 | ||
| * | | Mark all acting extbans as MATCH_REQUIRE_CHANNEL.•••This removes the need for special behaviour in the silence module. | 2026-03-09 | 2 | -6/+2 | ||
| * | | Reuse the ModResult variable in the redirect module. | 2026-03-09 | 1 | -4/+1 | ||
| * | | Merge branch 'insp4' into master. | 2026-03-09 | 1 | -4/+4 | ||
| |\| | ||||||
| | * | Reorder some of the extban help. | 2026-03-09 | 1 | -4/+4 | ||
| * | | Merge branch 'insp4' into master. | 2026-03-09 | 2 | -2/+3 | ||
| |\| | ||||||
| | * | Ignore the modules directory so we don't commit stuff from master. | 2026-03-09 | 1 | -0/+1 | ||
| | * | Document the short name for the redirect: extban. | 2026-03-09 | 1 | -2/+2 | ||
| * | | Banish banredirect to contrib, always enable the redirect: extban. | 2026-03-09 | 5 | -389/+5 | ||
| * | | Merge branch 'insp4' into master. | 2026-03-09 | 8 | -130/+348 | ||
| |\| | ||||||
| | * | Add a redirect extended ban to the redirect module.•••Also, deprecate the banredirect module now its behaviour has been entirely replaced. Closes #730 Closes #2043 | 2026-03-09 | 4 | -26/+117 | ||
| | * | Redocument extended bans to be easier to read. | 2026-03-09 | 1 | -58/+86 | ||
| | * | Fix not being able to ban real names that contain spaces. | 2026-03-09 | 1 | -2/+12 | ||
| | * | Expand what modes the redirect module can redirect when set.•••Closes #906 | 2026-03-09 | 2 | -51/+111 | ||
| | * | Add the VF_DEPRECATED flag and warn on load about deprecation. | 2026-03-09 | 6 | -7/+20 | ||
| | * | Fix various inconsistencies in the banredirect and redirect modules. | 2026-03-09 | 2 | -15/+29 | ||
| * | | Add a new version of mkauthors written in Python. | 2026-03-09 | 1 | -0/+104 | ||
| * | | Remove the Perl version of mkauthors. | 2026-03-09 | 1 | -71/+0 | ||
| * | | Merge branch 'insp4' into master. | 2026-03-08 | 1 | -3/+3 | ||
| |\| | ||||||
| | * | Allow Command::IsUsableBy to be used for server-originated messages. | 2026-03-08 | 1 | -2/+2 | ||
| * | | The realmask extban does not require a channel any more. | 2026-03-08 | 1 | -1/+1 | ||
