summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2022-06-25doc/user: add a chapter on supported IRCv3 extensionsSébastien Helleu
2022-06-24doc: remove underline and change color for linksSébastien Helleu
2022-06-24doc: fix generation of python stubSébastien Helleu
2022-06-23doc: change formatting in asciidoctor tablesSébastien Helleu
2022-06-21doc: update German auto-generated fileSé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-10doc: update German documentationNils Görs
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-31doc: update German auto-generated filesSé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-25doc: update German auto-generated fileSé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-18doc: update German documentationNils Görs
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-04-09doc: Update Serbian translationIvan Pešić
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-22doc: update Serbian auto-generated filesSébastien Helleu
2022-03-22doc: update Serbian translationsIvan Pešić
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-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-13doc: update German auto-generated filesSébastien Helleu
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
2022-03-10irc: update translationsSébastien Helleu
2022-03-10irc: add server option "autojoin_record"Sébastien Helleu