| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | 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. | 2024-08-27 | 5 | -9/+40 | ||
| | * | | Use GenRandom instead of GenRandomInt to populate Bcrypt entropy. | 2024-08-27 | 1 | -2/+1 | ||
| | * | | Fix the argument to BindPorts not being documented. | 2024-08-27 | 1 | -1/+2 | ||
| | * | | Fix measuring the CPU load on Windows. | 2024-08-27 | 3 | -15/+12 | ||
| | * | | Redocument ServerStats and switch members to use size_t. | 2024-08-27 | 1 | -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. | 2024-08-27 | 5 | -4/+15 | ||
| * | | | Fix the case of some InspIRCd class member variables. | 2024-08-27 | 10 | -22/+21 | ||
| * | | | Merge branch 'insp4' into master. | 2024-08-27 | 9 | -232/+217 | ||
| |\| | | ||||||
| | * | | Fix a minor doxygen warning. | 2024-08-27 | 1 | -1/+1 | ||
| | * | | Use sa_family_t instead of int. | 2024-08-27 | 6 | -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. | 2024-08-27 | 3 | -224/+209 | ||
| * | | | Replace stalgo::erase with C++20 std::erase. | 2024-08-25 | 8 | -28/+10 | ||
| * | | | Merge branch 'insp4' into master. | 2024-08-25 | 4 | -86/+4 | ||
| |\| | | ||||||
| | * | | Remove prototype for the now removed SendLegacyListModes function. | 2024-08-25 | 1 | -1/+0 | ||
| | * | | Fix broadcasting mode lists to remote v3 servers. | 2024-08-24 | 2 | -76/+41 | ||
| | * | | Fix broadcasting server information to remote v3 servers. | 2024-08-24 | 3 | -9/+35 | ||
| * | | | Disable log_json on Ubuntu CI. | 2024-08-23 | 1 | -1/+1 | ||
| * | | | Merge branch 'insp4' into master. | 2024-08-23 | 11 | -70/+116 | ||
| |\| | | ||||||
| | * | | Close loggers and notify opers if they throw any exceptions. | 2024-08-23 | 2 | -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. | 2024-08-23 | 7 | -21/+67 | ||
| | * | | Allow inverted matches in require_* functions. | 2024-08-23 | 1 | -15/+33 | ||
| * | | | Use C++20 <format> instead of fmtlib when available. | 2024-08-22 | 108 | -255/+268 | ||
| * | | | Merge branch 'insp4' into master. | 2024-08-22 | 6 | -12/+17 | ||
| |\| | | ||||||
| | * | | Modernise the contrib filenames in configure. | 2024-08-22 | 1 | -14/+14 | ||
| | * | | Fix formatting strings on C++20 compilers. | 2024-08-22 | 5 | -11/+11 | ||
| | * | | Make it clear which is the current client fingerprint. | 2024-08-19 | 1 | -1/+6 | ||
| * | | | Merge branch 'insp4' into master. | 2024-08-18 | 21 | -63/+120 | ||
| |\| | | ||||||
| | * | | Add Numeric::push_fmt(...) as shorthand for push(INSP_FORMAT(...)). | 2024-08-18 | 4 | -12/+23 | ||
| | * | | Add a formatting overload to {Membership,User}::Write(Remote)Notice. | 2024-08-18 | 17 | -37/+67 | ||
| | * | | Document Write* members in the User type correctly. | 2024-08-18 | 1 | -15/+29 | ||
| * | | | Update the example configs for <servicesintegration:disablemodes>. | 2024-08-18 | 1 | -4/+4 | ||
| * | | | Disable channel/user mode +r by default. | 2024-08-17 | 1 | -2/+2 | ||
| * | | | Fix some format strings in the services message. | 2024-08-17 | 1 | -5/+5 | ||
| * | | | Refactor "CAPAB CAPABILITIES" code. | 2024-08-17 | 1 | -31/+38 | ||
| * | | | Drop the protocol version from module capab functions. | 2024-08-16 | 1 | -8/+8 | ||
| * | | | Merge CompareModulesNew into CompareModules.•••This isn't necessary now we only support the 1205 protocol. | 2024-08-16 | 1 | -20/+11 | ||
| * | | | Merge branch 'insp4' into master. | 2024-08-16 | 7 | -79/+46 | ||
| |\| | | ||||||
| | * | | Update my nick in the INFO output. | 2024-08-12 | 1 | -1/+1 | ||
| | * | | Use 1 as the first membership id not 0.•••This doesn't change anything in the protocol but makes identifying whether a user has been assigned a membership id easier while debugging. | 2024-08-11 | 1 | -1/+1 | ||
| | * | | Add an email address for an SVN-only committer. | 2024-08-10 | 2 | -2/+2 | ||
| | * | | Make the Perl helper script somewhat cleaner.•••- Avoid duplicate check* methods. - Remove some broken valgrind behaviour. - Call executable instead of hardcoding the version. - Simplify $binpath/$executable code. | 2024-08-10 | 1 | -73/+40 | ||
| | * | | Make the slogan in the example MOTDs less bland. | 2024-08-09 | 2 | -2/+2 | ||
| * | | | Merge branch 'insp4' into master. | 2024-08-06 | 1 | -3/+12 | ||
| |\| | | ||||||
| | * | | Add a helper template for checking MySQL errors. | 2024-08-06 | 1 | -3/+12 | ||
| * | | | Add a skeleton of the account provider API. | 2024-08-06 | 2 | -1/+100 | ||
| * | | | Merge branch 'insp4' into master. | 2024-08-04 | 21 | -74/+125 | ||
| |\| | | ||||||
| | * | | Fix the pgsql module showing duplicate packages on Ubuntu.•••This is covered by the debian-like constraint above. | 2024-08-04 | 1 | -1/+0 | ||
| | * | | Fix trying to fetch more MySQL rows than are available.•••MySQL returns -1 on error in an unsigned field which was breaking this. | 2024-08-04 | 1 | -1/+2 | ||
| | * | | Fix bursting server metadata. | 2024-08-03 | 1 | -2/+2 | ||
| | * | | Release v4.2.0. v4.2.0 | 2024-08-03 | 2 | -2/+2 | ||
