Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-05-27 | irc: add missing host tag in self messages with cap echo-message enabled ↵ | Sébastien Helleu | |
(issue #139) | |||
2023-05-27 | irc: fix display of STATUSMSG CTCP ACTION to channel with cap echo-message ↵ | Sébastien Helleu | |
enabled (issue #139, issue #1577) | |||
2023-05-27 | irc: fix display of outgoing CTCP when channel/private buffer doesn't exist | Sébastien Helleu | |
2023-05-27 | irc: fix display of outgoing STATUSMSG CTCP ACTION without arguments | Sébastien Helleu | |
2023-05-27 | irc: remove extra space in CTCP ACTION message sent without arguments | Sébastien Helleu | |
Now when doing `/me` (without arguments), the message sent is: PRIVMSG #test :\x01ACTION\x01 instead of: PRIVMSG #test :\x01ACTION \x01 | |||
2023-05-27 | irc: fix split of CTCP message with no arguments | Sébastien Helleu | |
2023-05-27 | irc: display STATUSMSG actions differently from standard actions on channels ↵ | Sébastien Helleu | |
(closes #1577, issue #139) | |||
2023-05-27 | irc: fix send of empty action with `/me` command | Sébastien Helleu | |
2023-05-26 | core: remove WeeChat website from SRC_URI in cygport file | Sébastien Helleu | |
2023-05-26 | core: update ChangeLog | Sébastien Helleu | |
2023-05-26 | tests: add tests on IRC message/notice/action/CTCP sent with cap ↵ | Sébastien Helleu | |
echo-message enabled (issue #139) | |||
2023-05-26 | tests: remove capabilities added after the end of tests | Sébastien Helleu | |
2023-05-26 | tests: add tests on IRC message/notice/action/CTCP sent (issue #139) | Sébastien Helleu | |
2023-05-26 | irc: add missing nick tag in self CTCP ACTION displayed (issue #139) | Sébastien Helleu | |
2023-05-26 | irc: display CTCP ACTION to channel on the channel buffer (issue #139, ↵ | Sébastien Helleu | |
closes #207) | |||
2023-05-26 | doc/user: rewrite IRC smart filter chapter, add detail on all filtered messages | Sébastien Helleu | |
2023-05-26 | doc/user: display 3 levels instead of 2 in TOC | Sébastien Helleu | |
2023-05-25 | core: update German translations | Nils Görs | |
2023-05-25 | irc: display actions sent with `/me` in private buffer instead of server ↵ | Sébastien Helleu | |
buffer (issue #139) | |||
2023-05-25 | irc: fix display of actions sent with `/me` (issue #139) | Sébastien Helleu | |
2023-05-25 | irc: fix duplicated CTCP messages displayed when capability "echo-message" ↵ | Sébastien Helleu | |
is enabled (issue #139) | |||
2023-05-25 | irc: hide messages sent with `/msg` to a nick when capability "echo-message" ↵ | Sébastien Helleu | |
is enabled (issue #139) | |||
2023-05-25 | irc: hide CTCP messages sent with `/ctcp` when capability "echo-message" is ↵ | Sébastien Helleu | |
enabled (issue #139) | |||
2023-05-25 | irc: hide self actions sent with `/me` when capability "echo-message" is ↵ | Sébastien Helleu | |
enabled (issue #139) | |||
2023-05-23 | tests: remove import of unused headers | Sébastien Helleu | |
2023-05-23 | doc/user: move IRCv3 chapter outside "Servers" | Sébastien Helleu | |
2023-05-23 | irc: add support of capability "echo-message" (closes #139) | Sébastien Helleu | |
2023-05-23 | irc: 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-23 | irc: fix order of tags in outgoing messages | Sé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-23 | irc: add missing tags "irc_cap" and "log3" in cap messages (client capability) | Sébastien Helleu | |
2023-05-23 | irc: add missing tag "log3" in notify messages | Sébastien Helleu | |
2023-05-23 | tests: check tags in messages displayed by IRC plugin | Sébastien Helleu | |
2023-05-22 | tests: separate prefix from message in recorded messages | Sébastien Helleu | |
The record functions are moved to tests-record.cpp. | |||
2023-05-22 | script: remove trailing "J" (line feed char) in source of scripts displayed | Sé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-21 | core: add note about config files incompatibility in release notes | Sébastien Helleu | |
2023-05-20 | irc: add batch files for translations | Sébastien Helleu | |
2023-05-20 | logger: add option logger.file.log_conditions (closes #1942) | Sébastien Helleu | |
2023-05-20 | xfer: 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-20 | trigger: 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-20 | script: 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-20 | relay: 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-20 | fset: 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-20 | exec: 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-20 | irc: 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-20 | doc: reduce toc levels and numbering in sections (user/API/scripting/relay/dev) | Sébastien Helleu | |
2023-05-20 | doc: move toc and section asciidoctor attributes from docs to CMakeLists.txt | Sébastien Helleu | |
2023-05-18 | core: update ChangeLog (closes #1260) | Sébastien Helleu | |
2023-05-18 | irc: optimize and reuse irc_channel_rejoin | Simmo Saan | |
2023-05-18 | irc: use key when /join-ing in open channel buffer | Simmo Saan | |
2023-05-18 | core: update ChangeLog (closes #1140, closes #1190) | Sébastien Helleu | |