summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-24core: update .mailmapSébastien Helleu
2022-03-23doc: use unicode symbol for greater-than or equal toSébastien Helleu
2022-03-22doc: update Serbian auto-generated filesSébastien Helleu
2022-03-22core: update Serbian translationIvan Pešić
2022-03-22doc: update Serbian translationsIvan Pešić
2022-03-21core: use unicode symbol for greater-than or equal to in ChangeLogSébastien Helleu
2022-03-20Version 3.5-rc1Sébastien Helleu
2022-03-19irc: fix memory leak in command /autojoin addraw when channels are missingSébastien Helleu
2022-03-19irc: ensure old_autojoin and ptr_autojoin are not NULL before comparing themSébastien Helleu
2022-03-17core: fix line too longSébastien Helleu
2022-03-17core: Fix regex for constants in the Python stub generatorTrygve Aaberge
In Python raw strings, newlines can't be escaped with a backslash. If you do that, both the backslash and the newline become part of the string. This meant that the regex for constants both started and ended with a newline which caused every other constant to be skipped.
2022-03-14core: add version 3.4.1Sébastien Helleu
2022-03-14core: update latest stable version to 3.4.1Sébastien Helleu
2022-03-13doc: update German documentationNils Görs
2022-03-13doc/user: translate FreeBSD installation instructions (issue #1760)Sébastien Helleu
2022-03-13Add FreeBSD installation instructionsMateusz Piotrowski
2022-03-13core: set again TLS verification functions after GnuTLS options are changed ↵Sébastien Helleu
(closes #1763) When changing the options weechat.network.gnutls_ca_system or weechat.network.gnutls_ca_user, the GnuTLS credentials are freed then allocated again, but the verification function used to check the certificate on connection is not set again. As a consequence, any TLS connection is made without checking the certificate. This regression was introduced in version 3.2, when the options were changed to automatically load system certificates without having to give the path, and to let user give an extra custom path with certificates.
2022-03-13doc: update German auto-generated filesSébastien Helleu
2022-03-13python: add function buffer_new_props in Python stub fileSébastien Helleu
2022-03-13tests: add tests on function gui_buffer_match_listSébastien Helleu
2022-03-13tests: add tests on function gui_buffer_validSébastien Helleu
2022-03-13tests: add tests on functions gui_buffer_search_type and ↵Sébastien Helleu
gui_buffer_search_notify
2022-03-13tests: add tests on functions gui_buffer_new and gui_buffer_new_propsSébastien Helleu
2022-03-13api: add function buffer_new_props (closes #1759)Sébastien Helleu
2022-03-13core: add function gui_buffer_new_props (issue #1759)Sébastien Helleu
This function allows to create a buffer and set properties via a hashtable, before the signal "buffer_opened" is sent.
2022-03-13tests: close xfer buffer after receiving some filesSébastien Helleu
2022-03-12dev/scripting: fix typoSébastien Helleu
2022-03-12doc/dev: add file test-irc-tag.cppSébastien Helleu
2022-03-12doc/dev: add file irc-typing.cSébastien Helleu
2022-03-12doc/dev: add file test-logger-backlog.cppSébastien Helleu
2022-03-12core: update ChangeLog (issue #1761)Sébastien Helleu
2022-03-12doc/scripting: translate note about Tcl constant $::weechat::WEECHAT_NULLSébastien Helleu
2022-03-12scripts: allow null values in config_new_optionTrygve Aaberge
The plugin API function config_new_option accepts null as the default_value and/or value however the scripting APIs (except for lua) didn't allow sending null as a parameter value, so it was impossible to use it this way. This allows sending a null value for these parameters. Lua already supported sending in nil for these parameters and it works as expected, so nothing is changed for this plugin. For Guile you can now send in #nil, for JavaScript null or undefined, for Perl undef, for PHP NULL, for Python None, for Ruby nil and for Tcl $::weechat::WEECHAT_NULL. In all of these languages except Tcl this is the special value indicating a missing value. However Tcl only has one type, string, so it doesn't have a null value. Therefore I created a constant with the value `\uFFFF\uFFFF\uFFFFWEECHAT_NULL\uFFFF\uFFFF\uFFFF` which is used instead. This is very unlikely to appear unintentionally. Using the unicode code point \uFFFF was suggested on https://wiki.tcl-lang.org/page/null. I tested this with these scripts: https://gist.github.com/trygveaa/f91977dde5d2876d502bf55fbf9b50cc
2022-03-12tests: close buffers of channels created for tests on ↵Sébastien Helleu
irc_join_save_channels_to_autojoin
2022-03-12Update Turkish translationsEmir SARI
2022-03-11core: update German translationsNils Görs
2022-03-11irc: add option "sort" in command /autojoinSébastien Helleu
2022-03-10tests: add missing include of string.hSébastien Helleu
2022-03-10irc: update translationsSébastien Helleu
2022-03-10irc: display only one message in /autojoin command outputSébastien Helleu
2022-03-10tests: move include of tests/tests.h outside of extern "C"Sébastien Helleu
2022-03-10tests: add tests on verbose argument of irc join functionsSébastien Helleu
2022-03-10irc: fix add of same channel with and without key in the array listSébastien Helleu
2022-03-10irc: rename server option "autojoin_record" to "autojoin_dynamic"Sébastien Helleu
2022-03-10irc: add command /autojoinSébastien Helleu
2022-03-10irc: add server option "autojoin_record"Sébastien Helleu
2022-03-07doc: fix syntax highlighting in Serbian docsSébastien Helleu
2022-03-06guile: remove disabling of guile gmp allocator with Guile ≥ 3.0.8Sébastien Helleu
This fixes the compilation warning: weechat-guile.c: In function ‘weechat_plugin_init’: weechat-guile.c:1270:5: warning: ‘scm_install_gmp_memory_functions’ is deprecated [-Wdeprecated-declarations]
2022-03-05tests: add tests on function irc_server_validSébastien Helleu
2022-03-04tests: add tests on functions irc_server_search and irc_server_casesearchSébastien Helleu