Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-03 | irc: mention how to remove capability in /help cap | Sébastien Helleu | |
2022-07-31 | buflist: add variable "${hotlist_priority_number}" (integer version of ↵ | Sébastien Helleu | |
"${hotlist_priority}") | |||
2022-07-24 | core: add option weechat.look.highlight_disable_regex and buffer property ↵ | Sébastien Helleu | |
"highlight_disable_regex" (closes #1798) | |||
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-20 | api: add arguments "index_start" and "index_end" in function ↵ | Sébastien Helleu | |
string_rebuild_split_string | |||
2022-07-20 | api: rename function string_build_with_split_string to ↵ | Sébastien Helleu | |
string_rebuild_split_string | |||
2022-07-10 | api: add info "uptime_current" | Sébastien Helleu | |
This info returns time duration between the start of the current WeeChat process and now (so upgrades with /upgrade are ignored). | |||
2022-06-28 | doc/quickstart: add command /autojoin and server option autojoin_dynamic | Sébastien Helleu | |
2022-06-27 | doc/scripting: add arrow and open external links in new tab | Sébastien Helleu | |
2022-06-26 | doc/relay: add arrow and open external links in new tab | Sébastien Helleu | |
2022-06-26 | doc/quickstart: add arrow and open external links in new tab | Sébastien Helleu | |
2022-06-26 | doc/api: add arrow and open external links in new tab | Sébastien Helleu | |
2022-06-26 | doc/faq: add arrow and open external links in new tab | Sébastien Helleu | |
2022-06-26 | doc/dev: add arrow and open external links in new tab | Sébastien Helleu | |
2022-06-26 | doc/user: add arrow and open external links in new tab | Sébastien Helleu | |
2022-06-26 | doc/user: replace TOR by Tor | Sébastien Helleu | |
2022-06-25 | doc/user: add a chapter on supported IRCv3 extensions | Sébastien Helleu | |
2022-06-23 | doc: change formatting in asciidoctor tables | Sébastien Helleu | |
2022-06-18 | core: add trailing slashes in URLs | Sébastien Helleu | |
2022-06-18 | doc: add trailing slashes in URLs | Sébastien Helleu | |
2022-06-18 | doc/user: add missing server option "autojoin_dynamic" | Sébastien Helleu | |
2022-06-18 | irc: update translations | Sébastien Helleu | |
2022-06-10 | doc/user: fix column size | Sébastien Helleu | |
2022-06-07 | doc/user: add chapter on custom bar items | Sébastien Helleu | |
2022-06-06 | doc/faq: mention command /autojoin to edit the "autojoin" server option | Sébastien Helleu | |
2022-05-30 | doc/user: fix links to commands | Sébastien Helleu | |
2022-05-27 | core: update translations | Sébastien Helleu | |
2022-05-11 | core: allow to remove multiple filters at once with command /filter del | Sébastien Helleu | |
2022-05-09 | doc/relay: add missing version 3.5 in command "init" | Sébastien Helleu | |
2022-04-29 | doc/faq: rename option autojoin_record to autojoin_dynamic | Sébastien Helleu | |
2022-04-24 | api: allow to catch multiple signals in functions hook_signal and ↵ | Sébastien Helleu | |
hook_hsignal (closes #1780) | |||
2022-04-24 | doc/api: remove word "and" in text with updated versions | Sébastien Helleu | |
2022-04-24 | core: move detailed list of hooks from command "/plugin listfull" to "/debug ↵ | Sébastien Helleu | |
hooks <plugin>" | |||
2022-04-23 | doc: update auto-generated files with commands | Sébastien Helleu | |
2022-04-18 | core: add case conversion in evaluation of expressions (closes #1778) | Sébastien Helleu | |
2022-04-18 | core: add bar item "spacer" | Sébastien Helleu | |
2022-04-09 | doc/user: add install of binary package with brew on macOS | Sébastien Helleu | |
2022-03-28 | doc/user: add chapter on containers | Sébastien Helleu | |
2022-03-23 | doc: use unicode symbol for greater-than or equal to | Sébastien Helleu | |
2022-03-13 | Add FreeBSD installation instructions | Mateusz Piotrowski | |
2022-03-13 | tests: add tests on functions gui_buffer_new and gui_buffer_new_props | Sébastien Helleu | |
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/dev: add file test-irc-tag.cpp | Sébastien Helleu | |
2022-03-12 | doc/dev: add file irc-typing.c | Sébastien Helleu | |
2022-03-12 | doc/dev: add file test-logger-backlog.cpp | Sébastien Helleu | |
2022-03-12 | doc/scripting: translate note about Tcl constant $::weechat::WEECHAT_NULL | Sébastien Helleu | |
2022-03-12 | scripts: allow null values in config_new_option | Trygve 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-11 | irc: add option "sort" in command /autojoin | Sébastien Helleu | |