Age | Commit message (Collapse) | Author | |
---|---|---|---|
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: make libintl.h required if CMake option ENABLE_NLS is enabled (issue ↵ | Sébastien Helleu | |
#2031) | |||
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-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: use larger buffer for errors when creating a filter | Sébastien Helleu | |
2023-10-01 | core: make zstd dependency optional (closes #2024) | Sébastien Helleu | |
2023-10-01 | buflist: rename completions with items | Sébastien Helleu | |
Completions renamed: - "buflist_all_items" -> "buflist_items" - "buflist_used_items" -> "buflist_items_used" | |||
2023-10-01 | buflist: add support of item names in command `/buflist refresh` | Sébastien Helleu | |
2023-09-26 | core, relay: make inet_pton() return value checks more strict | LuK1337 | |
inet_pton() can return values < 0. | |||
2023-09-26 | core: replace inet_addr() with inet_pton() | LuK1337 | |
man pages as well as rpminspect suggest that we shouldn't be using inet_addr(). | |||
2023-09-25 | core: fix TOTP moving factor on big-endian systems | LuK1337 | |
2023-09-22 | irc: display "owner" for +q and "admin" for +a in output of `/names` (closes ↵ | Sébastien Helleu | |
#2020, issue #97) | |||
2023-09-22 | script: only check if return value of plugin_script_search_path is NULL ↵ | Sébastien Helleu | |
(issue #2019) | |||
2023-09-22 | script: fix removal of script in system directory while trying to install a ↵ | Sébastien Helleu | |
script (closes #2019) | |||
2023-09-20 | script: fix autoload of multiple scripts at once with `/script autoload` ↵ | Sébastien Helleu | |
(closes #2018) | |||
2023-09-16 | core: properly terminate thread and release memory in url hook | Sébastien Helleu | |
2023-09-16 | scripts: add function hook_url in scripting API | Sébastien Helleu | |
2023-09-16 | script: replace hook_process_hashtable by hook_url to download scripts and ↵ | Sébastien Helleu | |
list of scripts (closes #1723) | |||
2023-09-16 | api: add function hook_url | Sébastien Helleu | |
2023-09-15 | script: rename parameters up/down/go to -up/-down/-go in command `/script` | Sébastien Helleu | |
2023-09-14 | xfer: fix crash on `/dcc chat` | Sébastien Helleu | |
2023-09-14 | irc: add option irc.look.open_pv_buffer_echo_msg (issue #2016) | Sébastien Helleu | |
2023-09-14 | irc: update title in query buffer when remote nick is myself (issue #2016) | Sébastien Helleu | |
2023-09-14 | irc: fix title of query buffer for own messages received (issue #2016) | Sébastien Helleu | |
2023-09-14 | irc: open a query buffer on PRIVMSG received from self nick when capability ↵ | Sébastien Helleu | |
echo-message is NOT enabled (issue #2016) | |||
2023-09-14 | irc: don't open a new private buffer on `/msg` command when capability ↵ | Sébastien Helleu | |
echo-message is enabled (closes #2016) | |||
2023-09-14 | irc: fix title of private buffers wrongly set to own address when capability ↵ | Sébastien Helleu | |
echo-message is enabled (issue #2016) | |||
2023-09-13 | core: add algorithms `sha512-224`, `sha512-256`, `sha3-*`, blake2b-*` and ↵ | Sébastien Helleu | |
`blake2s-*` in option sec.crypt.hash_algo (closes #2008) | |||
2023-09-13 | api: add algorithms `sha512-224`, `sha512-256`, blake2b-*` and `blake2s-*` ↵ | Sébastien Helleu | |
in hash functions (issue #2008) | |||
2023-09-12 | core: translate error messages (issue #2013) | Sébastien Helleu | |
2023-09-12 | core: automatically backup config file read if it has an unsupported version ↵ | Sébastien Helleu | |
(closes #2013) | |||
2023-09-12 | xfer: fix memory leak on plugin unload | Sébastien Helleu | |
2023-09-12 | irc: fix unexpected message sent to server when part of the second line of ↵ | Sébastien Helleu | |
an IRC command (closes #1992) | |||
2023-09-11 | core: add path in message displayed when a config file is updated to a newer ↵ | Sébastien Helleu | |
version | |||
2023-09-11 | irc: fix autojoin of channels when private buffers are opened (closes #2012) | Sébastien Helleu | |
2023-09-11 | irc: reset filter and sort when /list buffer is closed (issue #1972) | Sébastien Helleu | |
2023-09-11 | core: display a message when a configuration file is updated to a newer version | Sébastien Helleu | |
2023-09-11 | buflist: add missing items buflist4 and buflist5 in help on command/options ↵ | Sébastien Helleu | |
and user's guide | |||
2023-09-09 | scripts: add functions config_enum and config_enum_default in scripting API ↵ | Sébastien Helleu | |
(issue #1973) |