| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | Fix leaking the dccallow list instead of setting it in FromInternal. | 2020-02-15 | 1 | -0/+2 | ||
| | * | Fix logic calling OnList when sending a cap notification.•••It is possible for the cap to be null when a DEL for an unloaded module is sent out so we should not blindly call it. | 2020-02-15 | 1 | -1/+1 | ||
| | * | GitHub Actions: ensure that all packages are up to date on macOS.•••This ensures that Homebrew does not explode when installing new packages because thats apparently a challenge for it. | 2020-02-15 | 1 | -0/+1 | ||
| | * | Marginally improve the error pages created by httpd and httpd_acl. | 2020-02-14 | 2 | -4/+12 | ||
| | * | Add overloads of SendIfCap to the standard replies API. | 2020-02-14 | 1 | -1/+56 | ||
| | * | Only register the sts capability when we have a valid config.•••This avoids announcing a bare sts cap when the config is wrong. | 2020-02-14 | 1 | -0/+4 | ||
| | * | Clean up ModuleDLLManager from the Module::cull() method.•••This avoids a leak which happens in some rare circumstances. | 2020-02-14 | 2 | -5/+2 | ||
| | * | Fix GitHub Actions on macOS for real this time. | 2020-02-13 | 1 | -2/+3 | ||
| | * | Update modules.conf.example to use the new --enable-extras syntax. | 2020-02-13 | 1 | -6/+6 | ||
| | * | Update the vendored http_parser library to v2.9.3. | 2020-02-13 | 3 | -12/+82 | ||
| | * | Tell people to run make with the number of CPU cores plus 1.•••This results in faster builds as there's always one job waiting. | 2020-02-10 | 2 | -2/+2 | ||
| | * | Update the pull request template for recent module changes. | 2020-02-10 | 1 | -1/+1 | ||
| | * | Remove a mistakenly repeated word in the README (#1753). | 2020-02-10 | 1 | -1/+1 | ||
| | * | Initialise batchendmsg to NULL. | 2020-02-06 | 1 | -0/+1 | ||
| * | | Move FindNickOnly to UserManager. | 2020-02-09 | 29 | -45/+48 | ||
| * | | Move FindNick to UserManager. | 2020-02-09 | 42 | -55/+59 | ||
| * | | Move FindUUID to the UserManager class. | 2020-02-09 | 24 | -45/+48 | ||
| * | | Use C++11 inline initialisation for class members. | 2020-02-06 | 96 | -493/+296 | ||
| * | | In C++11 [io]fstream has std::string constructors; use them. | 2020-02-06 | 3 | -7/+5 | ||
| * | | Make WritePID read directly from the config. | 2020-02-06 | 4 | -15/+8 | ||
| * | | Merge branch 'insp3' into master. | 2020-02-04 | 61 | -312/+857 | ||
| |\| | ||||||
| | * | Include the ABI version with the incompatible module error message. | 2020-02-04 | 2 | -6/+6 | ||
| | * | Standard replies have been ratified. | 2020-02-03 | 1 | -4/+1 | ||
| | * | Clean special chars from module conf example | 2020-02-03 | 1 | -2/+2 | ||
| | * | Make loading modules considerably more robust and user friendly. | 2020-02-02 | 8 | -95/+147 | ||
| | * | Fix GitHub Actions building on macOS.•••For some reason Homebrew is imploding on upgrade and this is making our builds fail. Let's not upgrade for now. | 2020-02-02 | 1 | -1/+0 | ||
| | * | Fix being able to see the modes of private/secret channels. | 2020-02-02 | 1 | -1/+18 | ||
| | * | Release v3.5.0. v3.5.0 | 2020-01-31 | 1 | -1/+1 | ||
| | * | Update copyright headers. | 2020-01-31 | 41 | -48/+47 | ||
| | * | Bump the ABI version. | 2020-01-31 | 1 | -1/+1 | ||
| | * | The labeled response spec is no longer a draft. | 2020-01-31 | 1 | -1/+1 | ||
| | * | Fix the chanhistory module not storing CTCP ACTIONs. | 2020-01-31 | 1 | -1/+2 | ||
| | * | Use the default OnParameterMissing in ModeUserServerNoticeMask. | 2020-01-30 | 2 | -7/+1 | ||
| | * | The KNOCK command is broadcast so we should only send local notices.•••See also: #1749. | 2020-01-29 | 1 | -1/+1 | ||
| | * | Add Channel::WriteRemoteNotice and revert WriteNotice changes.•••This is a partial reversion of 687778b72e. See also: #1749. | 2020-01-29 | 9 | -12/+16 | ||
| | * | Fix "control reaches end of non-void function" warning.•••This is harmless because it will always be set to one of the items in the TargetType enum. | 2020-01-28 | 1 | -0/+5 | ||
| | * | Implement support for the IRCv3 labeled-response specification. | 2020-01-28 | 2 | -0/+248 | ||
| | * | Add a vendor cap which rejects any attempts to enable it.•••This is similar to the oragono.io/nope capability only instead of killing the connection it just rejects the request. This should be less intrusive for users. | 2020-01-28 | 1 | -0/+18 | ||
| | * | Remove the preceding - in messages sent by opermotd and showfile. | 2020-01-24 | 2 | -2/+2 | ||
| | * | dccallow: use IsCTCP instead of parsing the message manually. | 2020-01-23 | 1 | -6/+7 | ||
| | * | dccallow: Use irc::equals for messages received over IRC. | 2020-01-23 | 1 | -2/+2 | ||
| | * | Add a method for getting the name of a MessageTarget.•••This fixes a minor bug in the filter module where the target would be blank in messages when a server-targetted message matches a filter. | 2020-01-23 | 3 | -21/+26 | ||
| | * | Use PushParam instead of PushParamRef in TagMessage#PushTarget.•••This could be a temporary string so copy it instead of risking a crash and/or dumping the contents of memory into messages. This fixes a crash introduced last week. | 2020-01-22 | 1 | -1/+1 | ||
| | * | Add an event for when a command is blocked before execution. | 2020-01-22 | 3 | -1/+24 | ||
| | * | Remove unnecessary copies of CommandBase::Params in LoopCall. | 2020-01-22 | 1 | -6/+5 | ||
| | * | Make the dynref bool operator constant. | 2020-01-22 | 1 | -1/+1 | ||
| | * | Tweak the default motd/opermotd slightly.•••Also, remove the - at the start of the MOTD field. This is cargo culted from irc2 and theres no real reason to actually do this. | 2020-01-22 | 3 | -45/+39 | ||
| | * | Move DeleteZero to stdalgo::delete_zero. | 2020-01-19 | 2 | -12/+14 | ||
| | * | Use irc::equals instead of transforming to upper case in CAP. | 2020-01-18 | 1 | -7/+5 | ||
| | * | Use case insensitive comparisons in getBool. | 2020-01-18 | 1 | -2/+3 | ||
