summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-07-24core: add option weechat.look.highlight_disable_regex and buffer property ↵Sébastien Helleu
"highlight_disable_regex" (closes #1798)
2022-07-24core: use dynamic string in function gui_bar_item_get_valueSébastien Helleu
2022-07-21irc: fix display of TOPIC message with an empty trailing parameterSébastien Helleu
2022-07-21irc: fix display of QUIT message with an empty trailing parameter (closes #1797)Sébastien Helleu
The regression was introduced with the new way to parse IRC message parameters, in version 3.4.
2022-07-21relay: fix parsing of IRC messages received from clients (closes #1796)Sébastien Helleu
The IRC parser improved in version 3.4 is now used to parse command parameters (variables "num_params" and "paramN" in output of parser function).
2022-07-20irc: use API function string_rebuild_split_string in irc_protocol_string_paramsSébastien Helleu
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-16irc: fix duplicated channels in autojoin option when autojoin_dynamic is ↵Sébastien Helleu
enabled (closes #1795)
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-07-02api: run hook_print callback also on empty messagesSébastien Helleu
2022-07-02irc: remove unneeded translation marker (issue #1772)Sébastien Helleu
2022-07-02irc: start at parameter #2 in callback of messages 524/704/705/706 (issue #1772)Sébastien Helleu
2022-07-02irc: fix comments (issue #1772)Sébastien Helleu
2022-07-02irc: add ERR_HELPNOTFOUND (issue #1772)Valentin Lorentz
2022-07-02irc: strip topic name when formatting ↵Valentin Lorentz
RPL_HELPSTART/RPL_HELPTXT/RPL_ENDOFHELP (issue #1772)
2022-06-30php: fix compilation warning about unused argumentsSébastien Helleu
2022-06-30php: Deprecate `forget_*` functions in PHP 8+Adam Saponara
These functions don't work with PHP 8+ and also don't seem to be necessary anymore when reloading scripts.
2022-06-30php: Add stubs and generate arginfo for PHP APIAdam Saponara
This was preventing the PHP plugin from working if PHP was compiled with `--enable-debug`. With this patch, `--enable-debug` builds of PHP should work.
2022-06-30php: Adjust API for PHP 8.2Adam Saponara
2022-06-25irc: update URLs to IRCv3 specificationsSébastien Helleu
2022-06-18core: add trailing slashes in URLsSébastien Helleu
2022-06-18doc: add trailing slashes in URLsSébastien Helleu
2022-06-17irc: add example with `/allchan` in `/help autojoin`Sébastien Helleu
2022-06-15irc: rename option `save` to `apply` in command `/autojoin`Sébastien Helleu
2022-05-27core: add completion of conditions and content in commands `/item add` and ↵Sébastien Helleu
`/item addreplace` (issue #808)
2022-05-27trigger: fix completion of command `/trigger add` when there are spaces in ↵Sébastien Helleu
the following arguments
2022-05-27core: add examples in /help item (issue #808)Sébastien Helleu
2022-05-27core: add display conditions in custom bar items (issue #808)Sébastien Helleu
2022-05-27trigger: fix memory leak in command `/trigger addinput`Sébastien Helleu
2022-05-27core: add command /item (closes #808)Sébastien Helleu
This allows to create custom bar items with evaluated content (like the script text_item.py does).
2022-05-11core: allow to remove multiple filters at once with command /filter delSébastien Helleu
2022-04-24irc: remove channel from autojoin option when manually closing a bufferSébastien Helleu
2022-04-24irc: fix add of channel to autojoin option when joining a channel with a ↵Sébastien Helleu
buffer still opened
2022-04-24api: allow to catch multiple signals in functions hook_signal and ↵Sébastien Helleu
hook_hsignal (closes #1780)
2022-04-24core: move detailed list of hooks from command "/plugin listfull" to "/debug ↵Sébastien Helleu
hooks <plugin>"
2022-04-24core: add functions to get short description of hooksSébastien Helleu
2022-04-23core: add missing options "dirs" and "hooks" in description of /debug ↵Sébastien Helleu
command arguments
2022-04-23trigger: check that buffer notify is not "none" to run command of default ↵Sébastien Helleu
trigger beep
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-17core: use dynamic string functions to build bar window contentSébastien Helleu
2022-04-16buflist: fix memory leak when reading config and changing option ↵Sébastien Helleu
buflist.look.sort
2022-03-30relay: fix save of channels when JOIN/PART are received from an IRC relay ↵Sébastien Helleu
client (closes #1771)
2022-03-27core: fix bad window size on startup with some terminals like kitty (closes ↵Sébastien Helleu
#1769)
2022-03-19irc: fix memory leak in command /autojoin addraw when channels are missingSébastien Helleu
2022-03-19irc: ensure old_autojoin and ptr_autojoin are not NULL before comparing themSé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-13core: set again TLS verification functions after GnuTLS options are changed ↵Sébastien Helleu
(closes #1763) When changing the options weechat.network.gnutls_ca_system or weechat.network.gnutls_ca_user, the GnuTLS credentials are freed then allocated again, but the verification function used to check the certificate on connection is not set again. As a consequence, any TLS connection is made without checking the certificate. This regression was introduced in version 3.2, when the options were changed to automatically load system certificates without having to give the path, and to let user give an extra custom path with certificates.
2022-03-13python: add function buffer_new_props in Python stub fileSébastien Helleu