aboutsummaryrefslogtreecommitdiff
path: root/modules
Commit message (Expand)AuthorAgeFilesLines
...
* Reduce indentation in core_channel.Gravatar Sadie Powell2026-03-191-18/+13
* Improve config compatibility with v4.Gravatar Sadie Powell2026-03-191-3/+11
* Move some remaining channel settings to <channels>.Gravatar Sadie Powell2026-03-192-4/+4
* Rename servprotect to protect.Gravatar Sadie Powell2026-03-193-3/+3
* Improve support for renaming modes.Gravatar Sadie Powell2026-03-195-33/+6
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-182-1/+36
* Generate the credits for /INFO from Git history.Gravatar Sadie Powell2026-03-153-42/+132
* Change ServerList to return a list of Server* not a duplicate class.Gravatar Sadie Powell2026-03-155-23/+13
* Fix cap notifications to comply with ircv3/ircv3-specifications#480.Gravatar Sadie Powell2026-03-141-2/+2
* Fix message tag parsing•••Fixes 76f3f24c03c22576324e5af199d3e61d02a79b0d Gravatar Valentin Lorentz2026-03-141-1/+1
* Fix a crash caused by weirdly casting a pointer to an I/O handler.Gravatar Sadie Powell2026-03-143-7/+5
* Rewrite portparser and move to stringutils.Gravatar Sadie Powell2026-03-143-27/+14
* Rewrite sepstream and move to stringutils.Gravatar Sadie Powell2026-03-1445-133/+126
* Rewrite tokenstream and move to stringutils.Gravatar Sadie Powell2026-03-147-20/+22
* Clean up the casemapping checking and comparison code.Gravatar Sadie Powell2026-03-1357-127/+126
* Move <options:{fixed,prefix,suffix}part> to <channels>.Gravatar Sadie Powell2026-03-122-5/+6
* Move <options:modesinlist> to <channels>.Gravatar Sadie Powell2026-03-121-1/+1
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-121-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. Gravatar Sadie Powell2026-03-1215-30/+149
* Move channel settings to the <channels> tag.Gravatar Sadie Powell2026-03-121-6/+6
* Fix dereferencing a LocalUserIO that doesn't have a user yet.Gravatar Sadie Powell2026-03-121-1/+4
* Rewrite old banredirect entries to the new extban form.Gravatar Sadie Powell2026-03-121-0/+38
* Fix the name of the sharebans module.Gravatar Sadie Powell2026-03-121-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. Gravatar Sadie Powell2026-03-1241-701/+716
* Mark all acting extbans as MATCH_REQUIRE_CHANNEL.•••This removes the need for special behaviour in the silence module. Gravatar Sadie Powell2026-03-091-5/+1
* Reuse the ModResult variable in the redirect module.Gravatar Sadie Powell2026-03-091-4/+1
* Banish banredirect to contrib, always enable the redirect: extban.Gravatar Sadie Powell2026-03-092-375/+3
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-093-66/+228
* The realmask extban does not require a channel any more.Gravatar Sadie Powell2026-03-081-1/+1
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-081-0/+20
* Make the ban checking functions able to check any list mode.Gravatar Sadie Powell2026-03-0829-45/+73
* 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. Gravatar Sadie Powell2026-03-08112-261/+263
* Remove more missed v3 compatibility code.Gravatar Sadie Powell2026-03-072-15/+5
* Add support for per-operator isupport.Gravatar Sadie Powell2026-03-065-15/+131
* Move building TARGMAX to core_info.Gravatar Sadie Powell2026-03-062-14/+23
* Add the old connect class to OnPostChangeConnectClass.Gravatar Sadie Powell2026-03-062-8/+3
* Convert TranslateType to an enum class.Gravatar Sadie Powell2026-03-069-14/+14
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-065-5/+5
* Add validation to silence extbans.Gravatar Sadie Powell2026-03-062-1/+21
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-061-0/+116
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-069-9/+131
* Convert the uninvite module to use standard replies.Gravatar Sadie Powell2026-03-061-17/+16
* Convert the dnsbl and gateway modules to use standard replies.Gravatar Sadie Powell2026-03-052-13/+25
* Switch Reply::Type to be an enum instead of an enum class.•••This is shorter and its fully disambiguated anyway. Gravatar Sadie Powell2026-03-0513-38/+38
* Fix using the wrong parameter in the rline module.Gravatar Sadie Powell2026-03-051-2/+2
* Convert the shun and rline modules to use standard replies.Gravatar Sadie Powell2026-03-053-8/+25
* Convert the cban module to use standard replies.Gravatar Sadie Powell2026-03-051-3/+10
* Clean up the abbreviation module and move to standard replies.Gravatar Sadie Powell2026-03-051-29/+38
* Deduplicate command usability checks into Command::IsUsableBy.Gravatar Sadie Powell2026-03-051-16/+1
* Clean up ModuleManager somewhat.Gravatar Sadie Powell2026-03-041-1/+1