| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Release v3.9.0. v3.9.0 | 2021-02-26 | 1 | -1/+1 | |
| * | Update copyright headers. | 2021-02-26 | 8 | -7/+8 | |
| * | Implement support for multi-prefix on WHOIS. | 2021-02-25 | 1 | -0/+16 | |
| * | Allow a statusmsg to have multiple statuses and pick the lowest.•••This is pretty much useless but other implementations support it so we have to also support it for compatibility. | 2021-02-25 | 1 | -0/+1 | |
| * | Fix the numeric sent when a U-lined alias target is not online. | 2021-02-18 | 1 | -0/+1 | |
| * | Fix using the TR1 headers on compilers that support C++17. | 2021-02-01 | 1 | -1/+1 | |
| * | Add <dns:enabled>; allows disabling DNS lookups entirely.•••Ref: #1839. | 2021-01-19 | 1 | -0/+1 | |
| * | Allow converting a Cap::Reference to a Cap::Capability*. | 2021-01-19 | 1 | -0/+6 | |
| * | Add a new runtime directory and move the pid file to it.•••The data directory is intended for persistent files whereas the pid file is ephemeral. This distinction doesn't matter by default but on system-wide installs ephemeral runtime files go in /var/run or /run instead. | 2021-01-18 | 1 | -0/+4 | |
| * | Implement support for more XML and IRC colour code escapes. | 2021-01-07 | 1 | -2/+20 | |
| * | Fix core message events not being fired.•••Third time lucky eh? | 2020-12-23 | 1 | -2/+2 | |
| * | Send RPL_SAVENICK from irc2 when renaming a user to their UUID. | 2020-12-22 | 1 | -0/+1 | |
| * | Hide the server name/desc better when <options:hideserver> is set. | 2020-12-20 | 5 | -15/+21 | |
| * | Fix an inverted condition in the previous commit. | 2020-12-20 | 1 | -2/+2 | |
| * | Don't call events provided by dying or dead modules. | 2020-12-18 | 1 | -14/+23 | |
| * | Add a typedef for the data provider map. | 2020-12-04 | 1 | -1/+2 | |
| * | Improve the logging of service adding/deleting. | 2020-12-04 | 1 | -0/+3 | |
| * | Silence a harmless warning in newer versions of GCC. | 2020-11-12 | 1 | -2/+4 | |
| * | Release v3.8.0. v3.8.0 | 2020-10-30 | 1 | -1/+1 | |
| * | Update copyright headers. | 2020-10-30 | 1 | -1/+1 | |
| * | Don't kill cloaking users when hash/md5 is missing. | 2020-10-27 | 1 | -1/+1 | |
| * | Fix the behaviour of multi-value PING and PONG messages. | 2020-10-26 | 1 | -1/+4 | |
| * | Recheck users for xlines when their real hostname changes. | 2020-10-06 | 1 | -17/+79 | |
| * | Check that the values specified in <limits> are reasonable. | 2020-09-30 | 1 | -2/+2 | |
| * | Make shun block client-only tags by default. | 2020-09-27 | 1 | -0/+1 | |
| * | Silence some copy warnings on C++11 compilers. | 2020-08-01 | 1 | -0/+20 | |
| * | Release v3.7.0. v3.7.0 | 2020-07-30 | 1 | -1/+1 | |
| * | Update copyright headers. | 2020-07-30 | 1 | -0/+1 | |
| * | Make the ERR_CANNOTSENDTOCHAN extban message less misleading. | 2020-07-30 | 1 | -1/+1 | |
| * | Fix secure websocket users not being seen as secure.•••Since a TLS (SSL) module will always be the last IOHook attached to a socket, IsSSL() needs to ignore any Middle IOHooks that may also be attached. | 2020-07-27 | 2 | -3/+9 | |
| * | Add a config option that forces bots to use NOTICEs. | 2020-07-07 | 1 | -1/+1 | |
| * | ModResult is a class now. | 2020-05-22 | 2 | -4/+2 | |
| * | Document ModResult and switch the underlying type to char. | 2020-05-21 | 1 | -21/+51 | |
| * | Update copyright headers. | 2020-04-24 | 19 | -18/+22 | |
| * | Fixes by misspell-fixer | 2020-04-21 | 22 | -64/+64 | |
| * | Switch User::usertype back to an unsigned int.•••Leaving it up to the compiler to set the underlying type of the enum can result in this being a signed int. This variable will not work as intended as a 2 bit signed int. This fixes an issue with the Windows build(s) where a server trying to link would fail with "Protocol violation: Invalid source". | 2020-04-19 | 1 | -1/+1 | |
| * | Update user-facing text and comments of SSL to TLS. | 2020-04-14 | 3 | -22/+22 | |
| * | Add the inspircd.org/standard-replies capability. | 2020-04-13 | 1 | -0/+12 | |
| * | Add support for limiting what opers can subscribe to snomasks. | 2020-04-11 | 2 | -0/+12 | |
| * | Fix Numerics::CannotSendTo sending the wrong numeric for users. | 2020-04-06 | 1 | -2/+2 | |
| * | Squish the cmd_whowas header.•••There's no reason for this to be in a header and it can't be used by anything else. | 2020-04-04 | 1 | -211/+0 | |
| * | Add the Numerics::CannotSendTo class and switch stuff to use it. | 2020-04-04 | 1 | -0/+44 | |
| * | Add support for sending a standard reply with no command name. | 2020-04-02 | 1 | -1/+4 | |
| * | Document Module::Prioritize. | 2020-04-01 | 1 | -4/+3 | |
| * | Fix various documentation and formatting issues. | 2020-03-30 | 8 | -15/+14 | |
| * | Fix the signed-ness within ConvToNum char overloads.•••It should be signed int with signed char and vice-versa. Currently, anything over 127 as unsigned char would return 0. | 2020-03-24 | 1 | -4/+4 | |
| * | Add a raw source/target PRIVMSG overload for sending a status msg. | 2020-03-19 | 1 | -2/+11 | |
| * | Allow commands to override ERR_{NEEDSMOREPARAMS,NOTREGISTERED}. | 2020-03-18 | 1 | -0/+12 | |
| * | Implement support for the SERVLIST command. | 2020-03-12 | 2 | -5/+8 | |
| * | Add a CapReference class for the message-tags capability. | 2020-03-12 | 1 | -0/+11 |
