Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-06-25 | doc/user: add a chapter on supported IRCv3 extensions | Sébastien Helleu | |
2022-06-24 | doc: remove underline and change color for links | Sébastien Helleu | |
2022-06-24 | doc: fix generation of python stub | Sébastien Helleu | |
2022-06-23 | doc: change formatting in asciidoctor tables | Sébastien Helleu | |
2022-06-21 | doc: update German auto-generated file | 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-10 | doc: update German documentation | Nils Görs | |
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-31 | doc: update German auto-generated files | 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-25 | doc: update German auto-generated file | 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 | doc: update German documentation | Nils Görs | |
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-04-09 | doc: Update Serbian translation | Ivan Pešić | |
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-22 | doc: update Serbian auto-generated files | Sébastien Helleu | |
2022-03-22 | doc: update Serbian translations | Ivan Pešić | |
2022-03-17 | core: fix line too long | Sébastien Helleu | |
2022-03-17 | core: Fix regex for constants in the Python stub generator | Trygve 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-13 | doc: update German documentation | Nils Görs | |
2022-03-13 | doc/user: translate FreeBSD installation instructions (issue #1760) | Sébastien Helleu | |
2022-03-13 | Add FreeBSD installation instructions | Mateusz Piotrowski | |
2022-03-13 | doc: update German auto-generated files | Sébastien Helleu | |
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 | |
2022-03-10 | irc: update translations | Sébastien Helleu | |
2022-03-10 | irc: add server option "autojoin_record" | Sébastien Helleu | |