Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-06 | Release 2.0.14.2.0.14 | Sadie Powell | |
2023-07-11 | Allow Anope to look up multiple DNS results. | Sadie Powell | |
For fixing bug 1756. | |||
2023-07-11 | Fix sending log messages from a renamed pseudoclient. | Sadie Powell | |
If a command is named e.g. nickserv/wibble it previously tried to look up the nickserv service and if this service didn't exist then it would fall back to sending from the first available service. This caused problems if the NickServ service had been renamed to something else. Reported by @AndrioCelos on IRC. | |||
2023-07-09 | Allow customising the email content type. | Sadie Powell | |
This will allow people to send emails using HTML or non UTF-8 text. | |||
2023-07-06 | Fix a crash when a module tries to get another module's config. | Sadie Powell | |
2023-06-06 | Terminate lines with CR+LF instead of just LF when sending an email. | Sadie Powell | |
From https://www.rfc-editor.org/rfc/rfc5321#section-2.3.1: > Lines consist of zero or more data characters terminated by the > sequence ASCII character "CR" (hex value 0D) followed immediately by > ASCII character "LF" (hex value 0A). | |||
2023-06-02 | add gettext to conan deps | Adam | |
2023-06-02 | use Conan for extra's dependencies on Windows | Adam | |
conan install src\win32\conanfile.txt --build=missing cmake -B build . cmake --build build --config Release --target PACKAGE | |||
2023-06-01 | Mark as 2.0.14-git. | Sadie Powell | |
2023-06-01 | Release 2.0.13.2.0.13 | Sadie Powell | |
2023-05-28 | regchannels: remove dependency on no-delete-null-pointer-checks | Adam | |
2023-05-28 | config: remove dependency on no-delete-null-pointer-checks | Adam | |
2023-05-11 | Fix not being able to log into oper accounts when DNS fails. | Sadie Powell | |
2023-05-04 | Avoid returning null when a config tag does not exist. | Sadie Powell | |
This invokes undefined behaviour on modern compilers. | |||
2023-02-06 | Fix crashing when encountering an unterminated commented block. | Sadie Powell | |
2022-12-31 | Update the copyright headers for 2023. | Sadie Powell | |
2022-12-18 | The fantasy:name field is allowed to contain spaces. | Sadie Powell | |
2022-12-18 | Show the invalid config value in the rejection message. | Sadie Powell | |
2022-12-09 | Mark as 2.0.13-git. | Sadie Powell | |
2022-12-09 | Release 2.0.12.2.0.12 | Sadie Powell | |
2022-09-12 | Fix allowing spaces in some config fields that shouldn't contain them. | Sadie Powell | |
2022-04-22 | Release 2.0.11.2.0.11 | Sadie Powell | |
2022-01-09 | Use utf-8 encoding for outgoing email (#286) | k4bek4be | |
2022-01-09 | Add a "Network Service" (RPL_WHOISOPERATOR) line to WHOIS replies | k4be | |
2022-01-06 | Update the copyright headers for 2022. | Sadie Powell | |
2021-10-06 | Show the protocol module name when connecting to the uplink. | Sadie Powell | |
2021-08-29 | Mark as 2.0.11-git. | Sadie Powell | |
2021-08-09 | Release 2.0.10.2.0.10 | Sadie Powell | |
2021-06-17 | Fix various spelling issues (#274). | Josh Soref | |
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>. | |||
2021-06-04 | Add support for per-mode list limits. | Sadie Powell | |
2021-04-16 | Process writes to the uplink socket before quitting in all cases. | Sadie Powell | |
This allows any error that might have been sent to the IRCd to actually be sent. | |||
2021-04-08 | Use UTC in anopesmtp to fix a C++98 compat warning. | Sadie Powell | |
2021-04-08 | Log when freopen and chown fail. | Sadie Powell | |
2021-02-19 | bots: Fix dtor channel iterator being invalidated. | Matt Schatz | |
The call to UnAssign() erases the channel from the set which invalidates the iterator in this loop. Handle this in the same manner as the NickCore dtor. | |||
2021-01-07 | Update copyright to 2021. | Robby | |
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2021 Anope Team/i' {} \; | |||
2020-11-19 | Only grant an account an identifier when the identifier is needed. | Sadie Powell | |
2020-10-22 | Bump for 2.0.10-git. | Sadie Powell | |
2020-10-22 | Release 2.0.9.2.0.9 | Sadie Powell | |
2020-10-21 | Fix account identifiers conflicting with SQL row identifiers. | Sadie Powell | |
2020-10-07 | Bump for 2.0.9-git. | Sadie Powell | |
2020-10-07 | Release 2.0.8.2.0.8 | Sadie Powell | |
2020-10-07 | Fix last case check for le64toh. | Sadie Powell | |
2020-10-06 | Simplify the definition of _le64toh in the siphash implementation. | Sadie Powell | |
2020-10-02 | Remove use of the deprecated register keyword. | Sadie Powell | |
Fixes a build error on C++17 compilers. | |||
2020-09-28 | Fix musl build (gettext internals) | Sam James (sam_c) | |
__USE_GNU_GETTEXT is exposed by musl because they provide a GNU gettext-compatible interface. This doesn't mean they provide all the internals that glibc does. Check for __GLIBC__ if using internal _nl_msg_cat_cntr. Signed-off-by: Sam James (sam_c) <sam@cmpct.info> | |||
2020-09-10 | Implement support for immutable account identifiers. | Sadie Powell | |
2020-09-10 | Fix -Wclass-memaccess warning: | miwob | |
/anope/src/misc.cpp: In function ‘Anope::string Anope::Resolve(const Anope::string&, int)’: /anope/src/misc.cpp:742:60: warning: ‘void* memcpy(void*, const void*, size_t)’ copying an object of non-trivial type ‘union sockaddrs’ from an array of ‘struct sockaddr’ [-Wclass-memaccess] memcpy(&addr, addrresult->ai_addr, addrresult->ai_addrlen); ^ In file included from /anope/include/users.h:21, from /anope/include/bots.h:12, from /anope/include/regchannel.h:18, from /anope/include/config.h:16, from /anope/src/misc.cpp:16: /anope/include/sockets.h:27:18: note: ‘union sockaddrs’ declared here union CoreExport sockaddrs ^~~~~~~~~ | |||
2020-01-04 | Update copyright to 2020. | Robby | |
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2020 Anope Team/i' {} \; | |||
2019-12-14 | Fix a bunch of broken indentation. | Peter Powell | |
2019-11-02 | Bump for 2.0.8-git | Adam | |