summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-10-15core: update translations (issue #1956)Sébastien Helleu
2023-10-15alias: allow wildcard in command `/alias del` (issue #1956)Sébastien Helleu
2023-10-15core: allow wildcard in command `/proxy del` (issue #1956)Sébastien Helleu
2023-10-15core: allow wildcard in command `/item del` (issue #1956)Sébastien Helleu
2023-10-15core: allow wildcard in command `/bar del` (issue #1956)Sébastien Helleu
2023-10-15core: 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-15trigger: 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-15core: update French translationsSébastien Helleu
2023-10-15core: make libintl.h required if CMake option ENABLE_NLS is enabled (issue ↵Sébastien Helleu
#2031)
2023-10-15Version 4.2.0-devSébastien Helleu
2023-10-15Version 4.1.0Sébastien Helleu
2023-10-15debian: update changelogSébastien Helleu
2023-10-13core: call curl init and cleanup functionsSébastien Helleu
This is to prevent issues when these functions are not thread-safe.
2023-10-13core: only print hook_url errors when debug is enabledTrygve 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-13core: add error codes to output in hook_urlTrygve 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-13core: run hook_url callback when pthread_create failedTrygve Aaberge
2023-10-13core: set "error" field of "output" hashtable in hook_url in case of ↵Sébastien Helleu
transfer timeout
2023-10-11core: update German translationsNils Görs
2023-10-10core: 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-09irc: move value `-all` at the end of completions for command `/ignore del`Sébastien Helleu
2023-10-07irc: fix memory leak when joining channels with keysSébastien Helleu
2023-10-05core: fix build error if CMake option ENABLE_NLS is turned to off or if ↵Sébastien Helleu
required dependencies are not found (closes #2026)
2023-10-05core: use larger buffer for errors when creating a filterSébastien Helleu
2023-10-05core: update German translationsNils Görs
2023-10-01core: update ChangeLog (issue #2024)Sébastien Helleu
2023-10-01core: make zstd dependency optional (closes #2024)Sébastien Helleu
2023-10-01buflist: rename completions with itemsSébastien Helleu
Completions renamed: - "buflist_all_items" -> "buflist_items" - "buflist_used_items" -> "buflist_items_used"
2023-10-01buflist: add support of item names in command `/buflist refresh`Sébastien Helleu
2023-09-26core, relay: make inet_pton() return value checks more strictLuK1337
inet_pton() can return values < 0.
2023-09-26core: add contributorSébastien Helleu
2023-09-26core: replace inet_addr() with inet_pton()LuK1337
man pages as well as rpminspect suggest that we shouldn't be using inet_addr().
2023-09-25core: update ChangeLogSébastien Helleu
2023-09-25core: fix TOTP moving factor on big-endian systemsLuK1337
2023-09-25tests: use correct data type method in hdata testsLuK1337
2023-09-25tests: cast infolist time variable value to the correct data typeLuK1337
2023-09-24core: add version 4.0.5Sébastien Helleu
2023-09-22irc: display "owner" for +q and "admin" for +a in output of `/names` (closes ↵Sébastien Helleu
#2020, issue #97)
2023-09-22core: update translationsSébastien Helleu
2023-09-22script: only check if return value of plugin_script_search_path is NULL ↵Sébastien Helleu
(issue #2019)
2023-09-22script: fix removal of script in system directory while trying to install a ↵Sébastien Helleu
script (closes #2019)
2023-09-20script: fix autoload of multiple scripts at once with `/script autoload` ↵Sébastien Helleu
(closes #2018)
2023-09-20tests: fix condition on libgcrypt version for algorithms `sha512-224` and ↵Sébastien Helleu
`sha512-256` (issue #2008)
2023-09-16doc/api: use a table for file_in/file_out options in function hook_urlSébastien Helleu
2023-09-16doc/api: add link to hook_url in hook_process_hashtable for Curl optionsSébastien Helleu
2023-09-16core: properly terminate thread and release memory in url hookSébastien Helleu
2023-09-16doc/api: add function hook_urlSébastien Helleu
2023-09-16scripts: add function hook_url in scripting APISébastien Helleu
2023-09-16script: replace hook_process_hashtable by hook_url to download scripts and ↵Sébastien Helleu
list of scripts (closes #1723)
2023-09-16api: add function hook_urlSébastien Helleu
2023-09-16doc/faq: add question about move of WeeChat config to another deviceSébastien Helleu