| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix stripping adjacent formatting codes. | 2024-11-27 | 1 | -0/+2 | |
| * | Use string_view in InspIRCd::Is{FQDN,Host,SID}. | 2024-09-07 | 1 | -5/+5 | |
| * | Update copyright headers. | 2024-09-07 | 1 | -2/+2 | |
| * | Fix a regression in ProcessColors.•••We should wait until v5 to be this aggressive with MOTD parsing so we dont break existing users in a minor release. | 2024-09-02 | 1 | -10/+2 | |
| * | Minor performance improvement to ProcessColors. | 2024-08-31 | 1 | -1/+1 | |
| * | Refactor InspIRCd::StripColor.•••- Only strip characters we actually recognise. - Strip the value for hex color codes. | 2024-08-30 | 1 | -21/+41 | |
| * | Add MOTD escape sequences for { and }. | 2024-08-30 | 1 | -0/+2 | |
| * | Allow using color codes by name in MOTD files. | 2024-08-29 | 1 | -1/+62 | |
| * | Refactor InspIRCd::ProcessColors. | 2024-08-29 | 1 | -44/+32 | |
| * | 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 | 1 | -3/+21 | |
| * | 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 | 1 | -1/+6 | |
| * | Update copyright headers. | 2024-07-14 | 1 | -1/+1 | |
| * | Fix using getentropy() on musl libc. | 2024-07-13 | 1 | -0/+4 | |
| * | Use getentropy() from POSIX 2024 if it is available. | 2024-07-13 | 1 | -1/+5 | |
| * | Update copyright headers. | 2024-06-07 | 1 | -6/+3 | |
| * | Update usages of stdalgo::string::equalsci to use insp::equalsci. | 2023-08-11 | 1 | -1/+2 | |
| * | Work around MSVC not implementing uniform_int_distribution<char>. | 2023-07-15 | 1 | -2/+2 | |
| * | Replace rand/rand_s/random with the C++11 random number generator. | 2023-07-15 | 1 | -16/+6 | |
| * | Retain the "real" username properly like we do for hostnames.•••This introduces the concept of a real username. This value comes from either the initial USER message or from an ident lookup. Doing this allows us to use it for bans through vidents and cloaking web client users using their remote username. While changing this I also changed all of the uses of "ident" other than RFC 1413 lookups and some compatibility cases to refer to usernames as user(name) instead of ident. Our use of ident in these places was incorrect as that only refers to the RFC 1413 response and is not commonly used in the way we used it by any other IRC server implementations. | 2023-06-29 | 1 | -2/+2 | |
| * | Rename duration to timeutils and relocate InspIRCd::TimeString. | 2023-05-10 | 1 | -2/+2 | |
| * | Move CheckPassword to helperfuncs. | 2023-05-08 | 1 | -0/+20 | |
| * | Merge branch 'insp3' into master. | 2023-04-28 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2023-04-28 | 1 | -1/+1 | |
| * | | Replace VAFORMAT/InspIRCd::Format/... with fmt::sprintf. | 2023-01-23 | 1 | -23/+0 | |
| * | | Replace InspIRCd::Format with fmt::format. | 2023-01-23 | 1 | -7/+0 | |
| * | | Move duration functions to their own header. | 2023-01-23 | 1 | -17/+13 | |
| * | | Merge branch 'insp3' into master. | 2023-01-13 | 1 | -2/+2 | |
| |\| | |||||
| | * | Fix core_dns rejecting simple hostnames. | 2023-01-13 | 1 | -2/+2 | |
| * | | Qualify auto correctly in all cases. | 2023-01-10 | 1 | -3/+3 | |
| * | | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -1/+1 | |
| * | | Use string_view in IsNick/IsIdent/IsChannel. | 2022-11-21 | 1 | -3/+3 | |
| * | | Fix various cases of the &* being next to the name instead of type. | 2022-09-29 | 1 | -3/+3 | |
| * | | Fix some warnings noticed by the readability-* clang-tidy checkers. | 2022-09-03 | 1 | -7/+7 | |
| * | | Merge branch 'insp3' into master. | 2022-06-22 | 1 | -0/+1 | |
| |\| | |||||
| | * | Add support for escaping hex colour codes•••This is not widely supported but we should have an escape regardless. | 2022-06-19 | 1 | -0/+1 | |
| * | | Merge branch 'insp3' into master. | 2022-04-29 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2022-04-28 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2022-03-11 | 1 | -8/+17 | |
| |\| | |||||
| | * | Handle negative times in InspIRCd::Duration. | 2022-02-14 | 1 | -8/+17 | |
| * | | Use vector<string> instead of file_cache in ProcessColors. | 2022-01-18 | 1 | -4/+2 | |
| * | | Add constexpr to the initialisation of various const static fields. | 2022-01-18 | 1 | -1/+1 | |
| * | | Add the final keyword to all remaining classes that can have it. | 2021-12-20 | 1 | -1/+1 | |
| * | | Added -Wshorten-64-to-32 and fixed all warnings. | 2021-05-30 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-05-11 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix a bunch of weird indentation and spacing issues. | 2021-04-27 | 1 | -1/+1 | |
| * | | Move channel logic from InspIRCd to the new ChannelManager class. | 2021-05-08 | 1 | -36/+0 | |
| * | | Refer to encryption as TLS instead of SSL in all messages. | 2021-04-08 | 1 | -1/+1 | |
| * | | Switch simple iterator loops to use range-based for loops. | 2021-04-07 | 1 | -16/+11 | |
| * | | Fix a ton of pedantic compiler warnings. | 2021-04-04 | 1 | -1/+1 | |
