summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-05-23doc/user: move IRCv3 chapter outside "Servers"Sébastien Helleu
2023-05-23irc: add support of capability "echo-message" (closes #139)Sébastien Helleu
2023-05-23irc: fix display of status privmsg/notice, add missing tags in messages ↵Sébastien Helleu
(issue #139) The status PRIVMSG and NOTICE are now displayed the same way for outgoing and received messages: Msg(alice) -> @#test: message for ops Notice(alice) -> @#test: notice for ops And any message like this is displayed with these tags if the nick is self nick (case of a bouncer or if capability "echo-message" is enabled): "self_msg", "notify_none", "no_highlight".
2023-05-23irc: fix order of tags in outgoing messagesSébastien Helleu
The order of tags in message doesn't matter, but this is for the sake of consistency with the other messages displayed.
2023-05-23irc: add missing tags "irc_cap" and "log3" in cap messages (client capability)Sébastien Helleu
2023-05-23irc: add missing tag "log3" in notify messagesSébastien Helleu
2023-05-23tests: check tags in messages displayed by IRC pluginSébastien Helleu
2023-05-22tests: separate prefix from message in recorded messagesSébastien Helleu
The record functions are moved to tests-record.cpp.
2023-05-22script: remove trailing "J" (line feed char) in source of scripts displayedSébastien Helleu
Regression was indirectly caused by commit d18f68e497c4244404ff8f4f50de82717b178e09 in core that allows to display all control chars in buffers. But the fix is in script plugin: when the script is downloaded and read line by line, trailing "\r" and "\n" are removed, and therefore not displayed.
2023-05-21core: add note about config files incompatibility in release notesSébastien Helleu
2023-05-20irc: add batch files for translationsSébastien Helleu
2023-05-20logger: add option logger.file.log_conditions (closes #1942)Sébastien Helleu
2023-05-20xfer: create buffer with function buffer_new_props (issue #1942)Sébastien Helleu
With this function, buffer properties are set when the buffer is created and can be read immediately by other plugins/scripts, for example in a callback of signal "buffer_opened".
2023-05-20trigger: create buffer with function buffer_new_props (issue #1942)Sébastien Helleu
With this function, buffer properties are set when the buffer is created and can be read immediately by other plugins/scripts, for example in a callback of signal "buffer_opened".
2023-05-20script: create buffer with function buffer_new_props (issue #1942)Sébastien Helleu
With this function, buffer properties are set when the buffer is created and can be read immediately by other plugins/scripts, for example in a callback of signal "buffer_opened".
2023-05-20relay: create buffers with function buffer_new_props (issue #1942)Sébastien Helleu
With this function, buffer properties are set when the buffer is created and can be read immediately by other plugins/scripts, for example in a callback of signal "buffer_opened".
2023-05-20fset: create buffer with function buffer_new_props (issue #1942)Sébastien Helleu
With this function, buffer properties are set when the buffer is created and can be read immediately by other plugins/scripts, for example in a callback of signal "buffer_opened".
2023-05-20exec: create buffer with function buffer_new_props (issue #1942)Sébastien Helleu
With this function, buffer properties are set when the buffer is created and can be read immediately by other plugins/scripts, for example in a callback of signal "buffer_opened".
2023-05-20irc: create server/channel/raw buffers with function buffer_new_props (issue ↵Sébastien Helleu
#1942) With this function, buffer properties are set when the buffer is created and can be read immediately by other plugins/scripts, for example in a callback of signal "buffer_opened".
2023-05-20doc: reduce toc levels and numbering in sections (user/API/scripting/relay/dev)Sébastien Helleu
2023-05-20doc: move toc and section asciidoctor attributes from docs to CMakeLists.txtSébastien Helleu
2023-05-18core: update ChangeLog (closes #1260)Sébastien Helleu
2023-05-18irc: optimize and reuse irc_channel_rejoinSimmo Saan
2023-05-18irc: use key when /join-ing in open channel bufferSimmo Saan
2023-05-18core: update ChangeLog (closes #1140, closes #1190)Sébastien Helleu
2023-05-18core: update translationsSébastien Helleu
2023-05-18alias: use dynamic string to replace alias argumentsSébastien Helleu
2023-05-18tests: add tests on alias functionsSébastien Helleu
Functions tested: - alias_valid - alias_search - alias_string_add_word - alias_string_add_word_range - alias_string_add_arguments - alias_replace_args
2023-05-18alias: return empty string instead of NULL in function alias_replace_argsSébastien Helleu
2023-05-18alias: return NULL if alias or user arguments are NULL in function ↵Sébastien Helleu
alias_replace_args
2023-05-18alias: add example in comment of function alias_replace_argsSébastien Helleu
2023-05-18alias: add "$&" in comment of function alias_replace_argsSébastien Helleu
2023-05-18alias: add auto-escaping special variablenobody
2023-05-18relay: rename variable "ptr_option" to "ptr_path"Sébastien Helleu
2023-05-18relay: make TLS certificate/key loading error handling more verbose (closes ↵Sébastien Helleu
#1558)
2023-05-18core: fix refresh of bar item "input_search" after buffer switch in root ↵Sébastien Helleu
bars (closes #1939)
2023-05-18core: add note in GitHub question issue templateSébastien Helleu
The question must be first asked on the #weechat channel.
2023-05-17core: update ChangeLog (closes #337, closes #965)Sébastien Helleu
2023-05-17irc: start from the beginning of nicks at automatic reconnection (closes #337)arza
2023-05-17core: update ChangeLog (closes #1688)Sébastien Helleu
2023-05-17irc: get value of "msg_max_length" from isupport token "LINELEN" on upgrade ↵Sébastien Helleu
from WeeChat < 4.0.0 (issue #1927)
2023-05-17irc: add field "utf8only" in IRC server structureSébastien Helleu
2023-05-17irc: Implement the UTF8ONLY IRCv3 specificationValentin Lorentz
https://ircv3.net/specs/extensions/utf8-only
2023-05-17core: add variable CTEST_OUTPUT_ON_FAILURE in release scriptSébastien Helleu
2023-05-16trigger: make default triggers compatible with multiline input (closes #1935)Sébastien Helleu
Changed triggers: - cmd_pass - cmd_pass_register - server_pass
2023-05-16irc: update secure data when server autojoin option contains ↵Sébastien Helleu
`${sec.data.xxx}` and option autojoin_dynamic is enabled (closes #1934)
2023-05-16doc/api: add note about hashtable removal in function info_get_hashtableSébastien Helleu
2023-05-16core: move creation of info_hashtable "secured_data" in plugin-api-info.cSébastien Helleu
2023-05-16core: fix partial completion when the common prefix found is empty (closes #340)Sébastien Helleu
2023-05-16typing: remove nicks typing even when option typing.look.enabled_self is off ↵Sébastien Helleu
(closes #1718)