aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| * | Allow using color codes by name in MOTD files.Gravatar Sadie Powell2024-08-292-1/+69
| * | Refactor InspIRCd::ProcessColors.Gravatar Sadie Powell2024-08-291-44/+32
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-08-2915-95/+119
|\| |
| * | Use auto in GetLevelRequired and GetSyntax.Gravatar Sadie Powell2024-08-291-5/+2
| * | Fix the missing <nick> field in whowas RPL_WHOISACTUALY.Gravatar Sadie Powell2024-08-291-1/+1
| * | Remove the needless cast of <whowas:maxkeep> in core_whowas.Gravatar Sadie Powell2024-08-281-4/+4
| * | Tweak the whowas config defaults•••- Decrease the default number of nick groups. - Increase the days to keep records for. - Enable update on nick change by default. - Remove the upper bounds on the fields. Gravatar Sadie Powell2024-08-282-12/+13
| * | Ensure the AUTHENTICATE command always returns a response.Gravatar Sadie Powell2024-08-271-0/+6
| * | Avoid adding UUID users to the whowas database.Gravatar Sadie Powell2024-08-271-2/+3
| * | Fix the whowas database not being updated on nick change.Gravatar Sadie Powell2024-08-272-6/+19
| * | Slightly reduce the memory usage of the WHOWAS database.Gravatar Sadie Powell2024-08-271-3/+9
| * | Store the actual server name rather than the public name for WHOWAS.•••We check hideserver when sending the numeric anyway. Gravatar Sadie Powell2024-08-271-1/+1
| * | Replace the InspIRCd-specific RPL_WHOWASIP with RPL_WHOISACTUALLY.•••This makes us more compatible with other server implementations. Gravatar Sadie Powell2024-08-271-4/+5
| * | Deprecate the raw overload of GenRandomStr in favour of GenRandom.•••The raw overload was almost always misused where GenRandom would be better. While we're making changes to this code switch the printable mode to use a static array like Anope does. Gravatar Sadie Powell2024-08-275-9/+40
| * | Use GenRandom instead of GenRandomInt to populate Bcrypt entropy.Gravatar Sadie Powell2024-08-271-2/+1
| * | Fix the argument to BindPorts not being documented.Gravatar Sadie Powell2024-08-271-1/+2
| * | Fix measuring the CPU load on Windows.Gravatar Sadie Powell2024-08-273-15/+12
| * | Redocument ServerStats and switch members to use size_t.Gravatar Sadie Powell2024-08-271-25/+16
| * | Change InspIRCd::ProcessColors to take a string instead of a vector.•••This is more useful for how MOTDs are processed now as we iterate through them anyway and this allows us to avoid a needless second iteration. Gravatar Sadie Powell2024-08-275-4/+15
* | | Fix the case of some InspIRCd class member variables.Gravatar Sadie Powell2024-08-2710-22/+21
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-08-279-232/+217
|\| |
| * | Fix a minor doxygen warning.Gravatar Sadie Powell2024-08-271-1/+1
| * | Use sa_family_t instead of int.Gravatar Sadie Powell2024-08-276-8/+8
| * | Refactor the InspIRCd class to be actually readable.•••This has been long overdue as most of the comments were outdated and members were shoved into the class in no logical way. Gravatar Sadie Powell2024-08-273-224/+209
* | | Replace stalgo::erase with C++20 std::erase.Gravatar Sadie Powell2024-08-258-28/+10
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-08-254-86/+4
|\| |
| * | Remove prototype for the now removed SendLegacyListModes function.Gravatar Sadie Powell2024-08-251-1/+0
| * | Fix broadcasting mode lists to remote v3 servers.Gravatar Sadie Powell2024-08-242-76/+41
| * | Fix broadcasting server information to remote v3 servers.Gravatar Sadie Powell2024-08-243-9/+35
* | | Disable log_json on Ubuntu CI.Gravatar Sadie Powell2024-08-231-1/+1
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-08-2311-70/+116
|\| |
| * | Close loggers and notify opers if they throw any exceptions.Gravatar Sadie Powell2024-08-232-5/+43
| * | Allow building log_json against yyjson.•••This is the default if available. RapidJSON has not had a release in years and has known security vulnerabilities so we should really not be using it. Gravatar Sadie Powell2024-08-237-21/+67
| * | Allow inverted matches in require_* functions.Gravatar Sadie Powell2024-08-231-15/+33
* | | Use C++20 <format> instead of fmtlib when available.Gravatar Sadie Powell2024-08-22108-255/+268
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-08-226-12/+17
|\| |
| * | Modernise the contrib filenames in configure.Gravatar Sadie Powell2024-08-221-14/+14
| * | Fix formatting strings on C++20 compilers.Gravatar Sadie Powell2024-08-225-11/+11
| * | Make it clear which is the current client fingerprint.Gravatar Sadie Powell2024-08-191-1/+6
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-08-1821-63/+120
|\| |
| * | Add Numeric::push_fmt(...) as shorthand for push(INSP_FORMAT(...)).Gravatar Sadie Powell2024-08-184-12/+23
| * | Add a formatting overload to {Membership,User}::Write(Remote)Notice.Gravatar Sadie Powell2024-08-1817-37/+67
| * | Document Write* members in the User type correctly.Gravatar Sadie Powell2024-08-181-15/+29
* | | Update the example configs for <servicesintegration:disablemodes>.Gravatar Sadie Powell2024-08-181-4/+4
* | | Disable channel/user mode +r by default.Gravatar Sadie Powell2024-08-171-2/+2
* | | Fix some format strings in the services message.Gravatar Sadie Powell2024-08-171-5/+5
* | | Refactor "CAPAB CAPABILITIES" code.Gravatar Sadie Powell2024-08-171-31/+38
* | | Drop the protocol version from module capab functions.Gravatar Sadie Powell2024-08-161-8/+8
* | | Merge CompareModulesNew into CompareModules.•••This isn't necessary now we only support the 1205 protocol. Gravatar Sadie Powell2024-08-161-20/+11
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-08-167-79/+46
|\| |