Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-03-05 | doc/scripting: auto-generate list of scripting functions and constants from ↵ | Sébastien Helleu | |
Python API | |||
2024-03-05 | api: add functions config_{boolean|integer|string|color|enum}_inherited in ↵ | Sébastien Helleu | |
scripting API | |||
2024-03-05 | api: add functions config_option_get_string and config_option_get_pointer in ↵ | Sébastien Helleu | |
scripting API | |||
2023-12-26 | core: store microseconds in buffer lines (closes #649) | Sébastien Helleu | |
2023-06-03 | doc: fix formatting issues with links that target a blank window | Sébastien Helleu | |
2023-05-20 | doc: move toc and section asciidoctor attributes from docs to CMakeLists.txt | Sébastien Helleu | |
2022-12-14 | core: update German translations | Nils Görs | |
2022-12-11 | scripts: Send null values to config section callbacks | Trygve Aaberge | |
The callback_read and callback_create_option functions in the scripting APIs always get the value as a string, never as null. This means that if the value is null, there is no way for the script to distinguish this from an empty string for string options. This makes it impossible to properly make options with fallback values, like the irc server and server_default options, as far as I can see. All the scripting languages except Tcl use that language's equivalent for null. For JavaScript which has both null and undefined, null is used. For Tcl, the magic null string defined in commit 197a7a01e is used and the documentation is updated to describe that. I tested this with these scripts: https://gist.github.com/trygveaa/2d49c609addf9773d2ed16e15d1e3447 You can load all of those scripts and see the result with this command (assuming you have the scripts in the current directory): weechat -t -r "/filter add script * * script; /script load $(echo script_config.*)" | |||
2022-10-15 | python: remove support of Python 2.x | Sébastien Helleu | |
2022-09-27 | api: add function string_parse_size | Sébastien Helleu | |
2022-07-28 | core: update German translations | Nils Görs | |
2022-07-22 | doc: use non-breaking spaces before links to notes | Sébastien Helleu | |
2022-07-22 | doc/scripting: add missing fields "paramN" and "num_params" in output of ↵ | Sébastien Helleu | |
"irc_message_parse" These new fields were added in version 3.4 with major improvements of the IRC message parser. | |||
2022-07-09 | doc: update German documentation | Nils Görs | |
2022-06-27 | doc/scripting: add arrow and open external links in new tab | Sébastien Helleu | |
2022-06-23 | doc: change formatting in asciidoctor tables | Sébastien Helleu | |
2022-06-18 | doc: add trailing slashes in URLs | Sébastien Helleu | |
2022-03-23 | doc: use unicode symbol for greater-than or equal to | Sébastien Helleu | |
2022-03-13 | doc: update German documentation | Nils Görs | |
2022-03-13 | api: add function buffer_new_props (closes #1759) | Sébastien Helleu | |
2022-03-12 | dev/scripting: fix typo | Sébastien Helleu | |
2022-03-12 | doc/scripting: translate note about Tcl constant $::weechat::WEECHAT_NULL | Sébastien Helleu | |
2022-02-21 | doc/scripting: fix column size in tables | 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-18 | doc: update German documentation | Nils Görs | |
2022-01-16 | doc: add example of hook_process with a script function (scripting guide) | Sébastien Helleu | |
2021-06-25 | core: update German translations | Nils Görs | |
2021-06-24 | irc: add keys/values with tags in output of irc_message_parse_to_hashtable ↵ | Sébastien Helleu | |
(issue #1654) Key is "tag_xxx" (where "xxx" is the name of tag) and value is the unescaped tag value. | |||
2021-05-25 | doc: replace freenode by libera in scripting guide | Sébastien Helleu | |
2021-05-15 | core: update German translations | Nils Görs | |
2021-05-14 | doc: add missing names for anchors in scripting guide | Sébastien Helleu | |
2021-05-14 | doc: add link to Python stub in scripting guide (issue #1377) | Sébastien Helleu | |
2021-05-13 | doc: add type annotations in Python prototype (scripting guide) (issue #1377) | Sébastien Helleu | |
2021-05-13 | doc: add types of constants in scripting guide (issue #1377) | Sébastien Helleu | |
2021-05-11 | doc: add XDG directories support in docs (issue #1285) | Sébastien Helleu | |
2021-04-13 | core: update German translations | Nils Görs | |
2021-04-11 | doc: improve display of WeeChat version in info_hashtable ↵ | Sébastien Helleu | |
"irc_message_parse" (scripting guide) | |||
2020-12-19 | core: add options "setvar" and "delvar" in command /buffer, rename option ↵ | Sébastien Helleu | |
"localvar" to "listvar" The option "localvar" (introduced long time ago, in WeeChat 0.3.0) is still recognized by WeeChat, to stay compatible with any extension/script calling it (or referencing it in the documentation). It is deprecated and will be removed in a future release. | |||
2020-08-22 | api: add function string_color_code_size (issue #1547) | Sébastien Helleu | |
2020-07-04 | core: update German translations | Nils Görs | |
2020-06-21 | core: add bar option "color_bg_inactive" (issue #732) | Sébastien Helleu | |
2020-05-29 | doc: update German documentation | Nils Görs | |
2020-05-27 | doc: mention callback argument "callback_pointer" in differences with C API ↵ | Sébastien Helleu | |
(scripting guide) | |||
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-04-29 | core: update German translations | Nils Görs | |
2020-04-27 | api: add functions completion_new, completion_search and completion_free ↵ | Sébastien Helleu | |
(issue #1484) | |||
2020-04-25 | doc: protect monospace text with plus characters (scripting guide) | Sébastien Helleu | |
2020-04-18 | doc: fix table sizes on small screens | Sébastien Helleu | |
2019-10-13 | core: update German translations | Nils Görs | |
2019-10-13 | doc: fix typo in scripting guide | Sébastien Helleu | |