aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Release v4.0.0 alpha 20. v4.0.0a20Gravatar Sadie Powell2023-03-011-1/+1
|
* Update the module descriptions.Gravatar Sadie Powell2023-02-281-1/+1
|
* Refactor InspIRCd::SignalHandler.Gravatar Sadie Powell2023-02-281-10/+14
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-02-281-5/+5
|\
| * Update the Windows dependencies.Gravatar Sadie Powell2023-02-281-5/+5
| | | | | | | | | | | | [skip alpine ci] [skip macos ci] [skip ubuntu ci]
* | Remove GetSID, rename sid to ServerId.Gravatar Sadie Powell2023-02-2814-29/+40
| |
* | Remove an unnecessary function call in the pbkdf2 module.Gravatar Sadie Powell2023-02-281-6/+1
| |
* | Fix missing a Doxygen parameter comment.Gravatar Sadie Powell2023-02-281-0/+1
| |
* | Refactor the password checking API.Gravatar Sadie Powell2023-02-2810-47/+42
| | | | | | | | | | | | | | | | | | | | - Rename from (On)PassCompare to (On)CheckPassword. - Fix the order of the arguments to be password, hash, value. This makes more sense than what it was previously. - Fix the code documentation to not be complete nonsense and not reference ancient outdated APIs.
* | Fix some unnecessary boolean explicit checks.Gravatar Sadie Powell2023-02-282-3/+3
| |
* | Fix a typo in the example module config.Gravatar Sadie Powell2023-02-281-1/+1
| |
* | Sort opers alphabetically in `/STATS P`.Gravatar Sadie Powell2023-02-273-0/+12
| |
* | Allow differentiating non-oper helpers from opers.Gravatar Sadie Powell2023-02-272-5/+10
| |
* | Refer to users with +h (helpop) as helpers not (help)opers.Gravatar Sadie Powell2023-02-271-16/+16
| |
* | Allow user mode +h (helpop) to override +H (hideoper) in /STATS P.Gravatar Sadie Powell2023-02-272-3/+19
| | | | | | | | | | | | | | Now we include +h users in the output inclusion doesn't inherently mean the user is an oper. Closes #1212.
* | Make module classes specify their priority manually.Gravatar Sadie Powell2023-02-2715-42/+42
| |
* | Use the stats row count instead of counting opers manually.Gravatar Sadie Powell2023-02-272-6/+3
| |
* | Allow non-opers with +h to show in `/STATS P`.Gravatar Sadie Powell2023-02-271-2/+66
| |
* | Load both help and helpmode if a user has helpop in their config.Gravatar Sadie Powell2023-02-271-0/+5
| |
* | Rename the helpop module to help.Gravatar Sadie Powell2023-02-273-145/+144
| |
* | Split the help mode out from the helpop module.Gravatar Sadie Powell2023-02-273-12/+51
| |
* | Fix missing override keyword.Gravatar Sadie Powell2023-02-261-1/+1
| |
* | Allow opting-out of cloaking by connect class.Gravatar Sadie Powell2023-02-231-0/+10
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-02-226-16/+41
|\|
| * Pin to Conan v1 until all of our dependencies are ready.Gravatar Sadie Powell2023-02-221-0/+2
| |
| * Switch to the Debian fork of the now-obsolete http_parser library.Gravatar Sadie Powell2023-02-214-16/+33
| | | | | | | | We should look to switching to its replacement (llhttp) in v4.
| * Allow applying patches to vendored libraries.Gravatar Sadie Powell2023-02-211-0/+6
| |
| * Backport the changes to the vendoring tool from master.Gravatar Sadie Powell2023-02-211-1/+3
| |
* | Clean up the cloak_md5 module slightly.Gravatar Sadie Powell2023-02-221-36/+27
| |
* | Improve the log messages when cloaking users.Gravatar Sadie Powell2023-02-201-3/+10
| |
* | Avoid setting -x+x when a reset cloak has not changed.Gravatar Sadie Powell2023-02-201-6/+19
| |
* | Merge the servprotect module into the services module.Gravatar Sadie Powell2023-02-196-135/+78
| |
* | Rename the mode fields in the services module.Gravatar Sadie Powell2023-02-191-6/+6
| |
* | Remove the ability of +k to hide the channels a service is in.Gravatar Sadie Powell2023-02-191-8/+0
| | | | | | | | This duplicates the behaviour of +I which services already use.
* | Bind IP listeners with SCTP and TCP by default.Gravatar Sadie Powell2023-02-171-16/+36
| |
* | Refactor the chanhistory mode handler and allow limiting the duration.Gravatar Sadie Powell2023-02-142-23/+48
| |
* | Allow modules to get/reset the cloak lists.Gravatar Sadie Powell2023-02-142-40/+109
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-02-144-5/+9
|\|
| * Alpine CI: disable warnings about variadic macros on C++03 for now.Gravatar Sadie Powell2023-02-131-1/+1
| |
| * Switch to the IRCv3 standard-replies cap.Gravatar Sadie Powell2023-02-134-5/+9
| | | | | | | | | | Nothing is using this so far so I'm not counting it as a breaking change.
* | Add an option so local non-SSL users can be seen as securely connected.Gravatar Sadie Powell2023-02-115-15/+35
| |
* | Add more action types to the repeat module.Gravatar Sadie Powell2023-02-053-41/+141
| |
* | Remove unnecessary mysql include file.Gravatar Sadie Powell2023-02-051-1/+0
| |
* | Warn users who have been found to be message flooding better.Gravatar Sadie Powell2023-02-041-3/+12
| |
* | Refactor the messageflood module and add more action types.Gravatar Sadie Powell2023-02-032-54/+199
| | | | | | | | | | | | | | | | This doesn't touch help yet because I want to rewrite it soon. Closes #311. Closes #471. Closes #1032.
* | Refactor reading the repeat module config.Gravatar Sadie Powell2023-02-031-18/+8
| |
* | Expose the removed away message in OnUserBack.Gravatar Sadie Powell2023-02-037-7/+10
| |
* | Allow bouncers to introduce a user as away.Gravatar Sadie Powell2023-02-032-1/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-02-032-1/+7
|\|
| * Fix missing some data when synchronising a new user over a link.Gravatar Sadie Powell2023-02-031-0/+6
| |