| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | 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 | ||
| * | | Merge branch 'insp4' into master. | 2026-03-08 | 1 | -0/+20 | ||
| |\| | ||||||
| | * | Respect <security:restrictbannedusers> in setname. | 2026-03-08 | 1 | -0/+18 | ||
| * | | Make the ban checking functions able to check any list mode. | 2026-03-08 | 36 | -107/+147 | ||
| * | | Fix various minor Doxygen issues. | 2026-03-08 | 10 | -16/+21 | ||
| * | | Merge branch 'insp4' into master. | 2026-03-08 | 4 | -5/+5 | ||
| |\| | ||||||
| | * | Fix some minor doxygen warnings. | 2026-03-08 | 3 | -3/+2 | ||
| | * | Switch the NSIS installer to use something more reliable. | 2026-03-07 | 1 | -2/+3 | ||
| * | | 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 | 123 | -310/+325 | ||
| * | | Remove the unused remote user finding methods. | 2026-03-07 | 1 | -34/+0 | ||
| * | | Remove more missed v3 compatibility code. | 2026-03-07 | 3 | -18/+7 | ||
| * | | Add support for per-operator isupport. | 2026-03-06 | 6 | -15/+132 | ||
| * | | Move building TARGMAX to core_info. | 2026-03-06 | 2 | -14/+23 | ||
| * | | Add the old connect class to OnPostChangeConnectClass. | 2026-03-06 | 5 | -11/+8 | ||
| * | | Convert TranslateType to an enum class. | 2026-03-06 | 11 | -31/+33 | ||
| * | | Merge branch 'insp4' into master. | 2026-03-06 | 7 | -9/+8 | ||
| |\| | ||||||
