summaryrefslogtreecommitdiff
path: root/doc/en
AgeCommit message (Collapse)Author
2022-08-03irc: mention how to remove capability in /help capSébastien Helleu
2022-07-31buflist: add variable "${hotlist_priority_number}" (integer version of ↵Sébastien Helleu
"${hotlist_priority}")
2022-07-24core: add option weechat.look.highlight_disable_regex and buffer property ↵Sébastien Helleu
"highlight_disable_regex" (closes #1798)
2022-07-22doc: use non-breaking spaces before links to notesSébastien Helleu
2022-07-22doc/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-20api: add arguments "index_start" and "index_end" in function ↵Sébastien Helleu
string_rebuild_split_string
2022-07-20api: rename function string_build_with_split_string to ↵Sébastien Helleu
string_rebuild_split_string
2022-07-10api: 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-28doc/quickstart: add command /autojoin and server option autojoin_dynamicSébastien Helleu
2022-06-27doc/scripting: add arrow and open external links in new tabSébastien Helleu
2022-06-26doc/relay: add arrow and open external links in new tabSébastien Helleu
2022-06-26doc/quickstart: add arrow and open external links in new tabSébastien Helleu
2022-06-26doc/api: add arrow and open external links in new tabSébastien Helleu
2022-06-26doc/faq: add arrow and open external links in new tabSébastien Helleu
2022-06-26doc/dev: add arrow and open external links in new tabSébastien Helleu
2022-06-26doc/user: add arrow and open external links in new tabSébastien Helleu
2022-06-26doc/user: replace TOR by TorSébastien Helleu
2022-06-25doc/user: add a chapter on supported IRCv3 extensionsSébastien Helleu
2022-06-23doc: change formatting in asciidoctor tablesSébastien Helleu
2022-06-18core: add trailing slashes in URLsSébastien Helleu
2022-06-18doc: add trailing slashes in URLsSébastien Helleu
2022-06-18doc/user: add missing server option "autojoin_dynamic"Sébastien Helleu
2022-06-18irc: update translationsSébastien Helleu
2022-06-10doc/user: fix column sizeSébastien Helleu
2022-06-07doc/user: add chapter on custom bar itemsSébastien Helleu
2022-06-06doc/faq: mention command /autojoin to edit the "autojoin" server optionSébastien Helleu
2022-05-30doc/user: fix links to commandsSébastien Helleu
2022-05-27core: update translationsSébastien Helleu
2022-05-11core: allow to remove multiple filters at once with command /filter delSébastien Helleu
2022-05-09doc/relay: add missing version 3.5 in command "init"Sébastien Helleu
2022-04-29doc/faq: rename option autojoin_record to autojoin_dynamicSébastien Helleu
2022-04-24api: allow to catch multiple signals in functions hook_signal and ↵Sébastien Helleu
hook_hsignal (closes #1780)
2022-04-24doc/api: remove word "and" in text with updated versionsSébastien Helleu
2022-04-24core: move detailed list of hooks from command "/plugin listfull" to "/debug ↵Sébastien Helleu
hooks <plugin>"
2022-04-23doc: update auto-generated files with commandsSébastien Helleu
2022-04-18core: add case conversion in evaluation of expressions (closes #1778)Sébastien Helleu
2022-04-18core: add bar item "spacer"Sébastien Helleu
2022-04-09doc/user: add install of binary package with brew on macOSSébastien Helleu
2022-03-28doc/user: add chapter on containersSébastien Helleu
2022-03-23doc: use unicode symbol for greater-than or equal toSébastien Helleu
2022-03-13Add FreeBSD installation instructionsMateusz Piotrowski
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-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-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-11irc: add option "sort" in command /autojoinSébastien Helleu