Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-04-12 | irc: set gnutls_sess, tls_cert and tls_cert_key to NULL by default in server ↵ | Sébastien Helleu | |
(issue #1903) | |||
2023-03-16 | core: add configuration version, add API function config_set_version | Sébastien Helleu | |
2023-01-29 | core: force ctrl keys to lower case when they are added (closes #1875) | Sébastien Helleu | |
2023-01-04 | tests: fix long lines in scripting API tests | Sébastien Helleu | |
2023-01-04 | tests: ignore module level import not at top of file (flake8 E402) | Sébastien Helleu | |
2023-01-04 | tests: mark methods is_bool and is_number as static | Sébastien Helleu | |
2023-01-01 | core: update copyright dates | Sébastien Helleu | |
2022-10-15 | python: remove support of Python 2.x | Sébastien Helleu | |
2022-10-15 | tests: ignore pylint error unnecessary-pass | Sébastien Helleu | |
2022-10-15 | api: do not expect any return value in callbacks change/delete of ↵ | Sébastien Helleu | |
config_new_option (scripting API) | |||
2022-10-15 | tests: add tests on config functions (scripting API) | Sébastien Helleu | |
2022-09-27 | api: restrict number to integer in function string_parse_size | Sébastien Helleu | |
2022-09-27 | api: add function string_parse_size | Sébastien Helleu | |
2022-08-03 | tests: fix pylint errors | Sébastien Helleu | |
2022-08-02 | tests: fix _ast_num in script generator | Sébastien Helleu | |
2022-08-02 | tests: fix scripting API tests with Python 3.8 | Sébastien Helleu | |
2022-08-02 | tests: disable pylint errors in testapi.py | Sébastien Helleu | |
2022-08-02 | tests: add tests on hdata functions (scripting API) | Sébastien Helleu | |
2022-08-02 | tests: fix assignment in tcl script generator | Sébastien Helleu | |
2022-08-02 | tests: fix assignment in perl script generator | Sébastien Helleu | |
2022-08-02 | tests: use double quotes instead of simple quotes in ruby script generator | Sébastien Helleu | |
This allows to use escaped chars in strings. | |||
2022-08-02 | tests: add subscript in script generator | Sébastien Helleu | |
2022-08-02 | tests: fix unary op in script generator | Sébastien Helleu | |
2022-08-01 | scripts: fix issue with long interval in function hook_timer | Sébastien Helleu | |
Affected plugins: python, ruby, lua, tcl, guile, javascript, php. | |||
2022-08-01 | scripts: fix issue with year ≥ 2038 in functions print_date_tags and ↵ | Sébastien Helleu | |
print_y_date_tags Affected plugins: python, lua, tcl, guile, javascript. | |||
2022-08-01 | scripts: fix issue with year ≥ 2038 in function infolist_new_var_time | Sébastien Helleu | |
Affected plugins: python, lua, tcl, guile, javascript. | |||
2022-08-01 | tests: fix run of Guile test script | Sébastien Helleu | |
2022-03-13 | tests: add tests on functions gui_buffer_new and gui_buffer_new_props | Sébastien Helleu | |
2022-03-10 | tests: move include of tests/tests.h outside of extern "C" | Sébastien Helleu | |
2022-01-30 | core: add support of date and tags in messages displayed in buffers with ↵ | Sébastien Helleu | |
free content, add function printf_y_date_tags (closes #1746) | |||
2022-01-17 | core: update copyright dates | Sébastien Helleu | |
2021-11-06 | api: add parameters pointers, extra_vars and options in function hdata_search | Sébastien Helleu | |
2021-10-14 | tests: fix typo in comment | Sébastien Helleu | |
2021-05-11 | core: split WeeChat home in 4 directories, use XDG directories by default ↵ | Sébastien Helleu | |
(issue #1285) The 4 directories (which can be the same): - config: configuration files, certificates - data: log/upgrade files, local plugins, scripts, xfer files - cache: script repository, scripts downloaded (temporary location) - runtime: FIFO pipe, relay UNIX sockets | |||
2021-03-19 | tests: disable pylint error useless-object-inheritance | Sébastien Helleu | |
2021-01-02 | core: update copyright dates | Sébastien Helleu | |
2020-08-29 | tests: fix compilation with CppUTest ≥ 4.0 | Sébastien Helleu | |
MemoryLeakWarningPlugin::turnOnNewDeleteOverloads is replaced by MemoryLeakWarningPlugin::turnOnThreadSafeNewDeleteOverloads, which is available in both CppUTest 3.x and 4.0. | |||
2020-08-22 | api: add function string_color_code_size (issue #1547) | Sébastien Helleu | |
2020-05-17 | tests: run tests on plugins only if the plugins are enabled and compiled | Sébastien Helleu | |
2020-05-08 | core: rename functions hook_completion_{get_string|list_add} to ↵ | Sébastien Helleu | |
completion_{get_string|list_add} Old functions are kept for compatibility reasons. | |||
2020-05-03 | tests: fix pylint errors | Sébastien Helleu | |
2020-03-11 | tests: add tests on IRC protocol functions and some callbacks | Sébastien Helleu | |
Functions tested: * irc_protocol_is_numeric_command * irc_protocol_log_level_for_command * irc_protocol_tags * irc_protocol_nick_address * irc_protocol_cb_account * irc_protocol_cb_away * irc_protocol_cb_001 * irc_protocol_cb_005 | |||
2020-03-02 | tests: fix generation of test scripts with Python 3.8 | Sébastien Helleu | |
2020-01-04 | core: update copyright dates | Sébastien Helleu | |
2019-03-25 | tests: fix scripting API tests on 32-bit arch | Sébastien Helleu | |
The problem is that on 32-bit arch (like GNU/Hurd), the number 42000000000000 is converted to 42000000000000L in Python, which is causing troubles in other languages like Perl. The fix is to use a smaller number. Such large size for function string_format_size is tested in the C++ test suite anyway. | |||
2019-02-28 | api: add function command_options (issue #928) | Sébastien Helleu | |
2019-02-27 | api: add function string_match_list | Sébastien Helleu | |
2019-01-01 | core: update copyright dates | Sébastien Helleu | |
2018-11-29 | core: use https for links to GNU GPL license | Sébastien Helleu | |
2018-09-01 | core: fix copyright dates | Sébastien Helleu | |