Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-10-22 | core: add number of processes in command `/sys waitpid` | Sébastien Helleu | |
2023-10-20 | core: fix random timeouts when a lot of concurrent processes are launched ↵ | Sébastien Helleu | |
with hook_process (closes #2033) | |||
2023-10-20 | core: update translations (issue #2005) | Sébastien Helleu | |
2023-10-20 | logger: add description for examples in help on command `/logger` (issue #2005) | Sébastien Helleu | |
2023-10-20 | irc: add description for examples in help on some commands (issue #2005) | Sébastien Helleu | |
Help is updated on these commands: - `/allchan` - `/allpv` - `/allserv` | |||
2023-10-20 | core: add description for examples in help on some commands (issue #2005) | Sébastien Helleu | |
Help is updated on these commands: - `/allbuf` - `/bar` - `/print` - `/repeat` - `/secure` - `/wait` | |||
2023-10-19 | core: update translations (issue #194, issue #2032) | Sébastien Helleu | |
2023-10-19 | irc: revert compute of nick colors to case sensitive way, deprecate again ↵ | Sébastien Helleu | |
IRC nick color infos (issue #194, issue #2032) | |||
2023-10-17 | core: update translations (issue #2005) | Sébastien Helleu | |
2023-10-17 | xfer: format and translate commands line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | trigger: format and translate command line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | spell: format and translate command line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | relay: format and translate command line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | script: format and translate commands line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | logger: format and translate command line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | irc: format and translate commands line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | fset: format and translate command line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | fifo: format and translate command line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | exec: format and translate command line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | charset: format and translate command line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | buflist: format and translate command line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | alias: format and translate command line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | core: format and translate commands line by line (issue #2005) | Sébastien Helleu | |
2023-10-17 | api: add support of format/translation of command arguments description line ↵ | Sébastien Helleu | |
by line (issue #2005) | |||
2023-10-17 | api: add function string_concat (issue #2005) | Sébastien Helleu | |
2023-10-15 | irc: add option irc.look.ignore_tag_messages (closes #989) | Sébastien Helleu | |
2023-10-15 | irc: add structure with context sent as unique parameter to IRC protocol ↵ | Sébastien Helleu | |
callbacks (issue #989) | |||
2023-10-15 | core: update ChangeLog (closes #1956) | Sébastien Helleu | |
2023-10-15 | core: update translations (issue #1956) | Sébastien Helleu | |
2023-10-15 | alias: allow wildcard in command `/alias del` (issue #1956) | Sébastien Helleu | |
2023-10-15 | core: allow wildcard in command `/proxy del` (issue #1956) | Sébastien Helleu | |
2023-10-15 | core: allow wildcard in command `/item del` (issue #1956) | Sébastien Helleu | |
2023-10-15 | core: allow wildcard in command `/bar del` (issue #1956) | Sébastien Helleu | |
2023-10-15 | core: allow wildcard in command `/filter` (issue #1956) | Sébastien Helleu | |
A mask with wildcards is now allowed in the following commands: - `/filter enable` - `/filter disable` - `/filter toggle` - `/filter del` | |||
2023-10-15 | trigger: allow wildcard in command `/trigger` (issue #1956) | Sébastien Helleu | |
A mask with wildcards is now allowed in the following commands: - `/trigger enable` - `/trigger disable` - `/trigger toggle` - `/trigger restart` - `/trigger del` - `/trigger restore` | |||
2023-10-15 | core: update French translations | Sébastien Helleu | |
2023-10-15 | core: make libintl.h required if CMake option ENABLE_NLS is enabled (issue ↵ | Sébastien Helleu | |
#2031) | |||
2023-10-15 | Version 4.2.0-dev | Sébastien Helleu | |
2023-10-15 | Version 4.1.0 | Sébastien Helleu | |
2023-10-15 | debian: update changelog | Sébastien Helleu | |
2023-10-13 | core: call curl init and cleanup functions | Sébastien Helleu | |
This is to prevent issues when these functions are not thread-safe. | |||
2023-10-13 | core: only print hook_url errors when debug is enabled | Trygve Aaberge | |
Errors from hook_url should be handled by the caller, so don't print them to the core buffer by default. Only print them when weechat_debug_core is enabled. This was already the behavior for the timeout error. | |||
2023-10-13 | core: add error codes to output in hook_url | Trygve Aaberge | |
When hook_url fails, add an error_code field in the output in addition to the error field. This is so the caller can get which error happened programatically, without having to parse the (possibly translated) error string. It uses the same error codes as the return_code in hook_process, and in addition adds 5 for an error from pthread_create and 6 for a timeout error. If the error is from pthread_create, an additional field `error_code_pthread` with the error code from pthread_create is added. If the error is from curl, an additional field `error_code_curl` with the error code from curl is added. | |||
2023-10-13 | core: run hook_url callback when pthread_create failed | Trygve Aaberge | |
2023-10-13 | core: set "error" field of "output" hashtable in hook_url in case of ↵ | Sébastien Helleu | |
transfer timeout | |||
2023-10-11 | core: update German translations | Nils Görs | |
2023-10-10 | core: fix zombie processes remaining after the end of forked processes ↵ | Sébastien Helleu | |
(closes #1994) The clean of processes with waitpid() is now delayed after the kill(), so that there are no more zombies. In addition, this can be done manually if needed with `/sys waitpid`. | |||
2023-10-09 | irc: move value `-all` at the end of completions for command `/ignore del` | Sébastien Helleu | |
2023-10-07 | irc: fix memory leak when joining channels with keys | Sébastien Helleu | |
2023-10-05 | core: fix build error if CMake option ENABLE_NLS is turned to off or if ↵ | Sébastien Helleu | |
required dependencies are not found (closes #2026) |