Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-07-01 | tests: fix hdata tests failure on Alpine 3.18 | Sébastien Helleu | |
2023-07-01 | tests/relay: fix crash in tests on Alpine 3.18 | Sébastien Helleu | |
2023-06-27 | core: check for newline characters in string_is_whitespace_char | Trygve Aaberge | |
This fixes a bug where if you had multiple lines in the input and pressed ctrl-w when the cursor was after the first word of any line but the first, it would delete both the word before the cursor and the last word on the preceding line. | |||
2023-06-26 | irc: fix display of country code in message 344 received as whois geo info ↵ | Sébastien Helleu | |
(issue #1736) | |||
2023-06-26 | irc: display commands 716/717 in private buffer (if present) (closes #146) | Sébastien Helleu | |
Commands 716/717 are returned if the target user has mode +g, they look like this: :server 716 my_nick bob :is in +g mode and must manually allow you to message them. Your message was discarded. :server 717 my_nick bob :has been informed that you messaged them. | |||
2023-06-25 | irc: reply to a CTCP request sent to self nick (closes #1966) | Sébastien Helleu | |
2023-06-05 | tests: fix checks on integers in relay irc protocol tests | Sébastien Helleu | |
2023-06-05 | tests: add missing include of string.h in logger tests | Sébastien Helleu | |
2023-06-05 | logger: fix display of multiline messages in backlog (closes #1926) | Sébastien Helleu | |
2023-06-05 | tests: add tests on logger tail functions (issue #1926) | Sébastien Helleu | |
2023-06-04 | irc: add tag "new_host_xxx" in message displayed for command CHGHOST (closes ↵ | Sébastien Helleu | |
#1808) | |||
2023-06-03 | relay: add support of capability "echo-message" (closes #1949) | Sébastien Helleu | |
2023-06-02 | tests: add tests on relay "irc" protocol | Sébastien Helleu | |
2023-05-31 | tests: create and close server buffer in tests on function irc_join_split | Sébastien Helleu | |
2023-05-31 | tests: fix close of channel buffers after tests on function irc_join_split | Sébastien Helleu | |
2023-05-29 | core: set word_end_offset to character after word | Trygve Aaberge | |
It seemed strange to me to have word_end_offset point to the last character in the word, rather than the character after the word, especially now with the word stopping before a newline character which meant word_end_offset would be -1 if there was no characters before the newline character. | |||
2023-05-29 | core: fix chat colors at certain positions not being applied | Trygve Aaberge | |
The new rendering of multiline lines had some issues with colors at certain positions not being applied. The color would not be applied if the color code was at either of these positions: - At the start of a line after a newline character - At the end of a line after a space and before a newline character - At a line by itself before a newline character The way I had done it by considering newline characters as a word in gui_chat_get_word_info with a variable specifying that it's newline characters became messy and didn't really make sense, so rather than doing this, I changed gui_chat_get_word_info to stop before the first newline character. That way, we can just check if we are at a newline character at the start of the loop, and don't need any more special handling. Fixes #1928 | |||
2023-05-29 | tests: add tests on manual CTCP ACTION sent to IRC channel | Sébastien Helleu | |
2023-05-29 | irc: hide password in messages to nickserv with cap echo-message enabled ↵ | Sébastien Helleu | |
(issue #139) | |||
2023-05-29 | irc: add command `/action` (closes #201, issue #1577), remove alias `action` | Sébastien Helleu | |
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: 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-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-25 | irc: fix duplicated CTCP messages displayed when capability "echo-message" ↵ | Sébastien Helleu | |
is enabled (issue #139) | |||
2023-05-23 | tests: remove import of unused headers | 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: 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-20 | logger: add option logger.file.log_conditions (closes #1942) | Sébastien Helleu | |
2023-05-18 | alias: use dynamic string to replace alias arguments | Sébastien Helleu | |
2023-05-18 | tests: add tests on alias functions | Sé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-17 | irc: add field "utf8only" in IRC server structure | Sébastien Helleu | |
2023-05-16 | irc: update secure data when server autojoin option contains ↵ | Sébastien Helleu | |
`${sec.data.xxx}` and option autojoin_dynamic is enabled (closes #1934) | |||
2023-05-16 | irc: display command 437 on server buffer when nickname cannot change while ↵ | Sébastien Helleu | |
banned on channel (closes #88) | |||
2023-05-14 | irc: fix format of IRC tags displayed in messages (closes #1929) | Sébastien Helleu | |
Changes: - use "=" to separate key from value, add it only if value is set (any string, including empty string) - do not convert "_" to "-" in key | |||
2023-05-14 | tests: reverse arguments in calls to STRCMP_EQUAL | Sébastien Helleu | |
2023-05-14 | irc: do not display multiline message if capability "draft/multiline" is not ↵ | Sébastien Helleu | |
enabled (issue #1923) | |||
2023-05-14 | irc: ignore BATCH commands when capability "batch" is not enabled (issue #1292) | Sébastien Helleu | |
2023-05-14 | irc: do not allow send of empty messages (single line or multiline) | Sébastien Helleu | |
2023-05-14 | irc: add test of privmsg message parsing with empty text | Sébastien Helleu | |
2023-05-14 | irc: set "input_multiline" to 1 in buffers only if capability ↵ | Sébastien Helleu | |
draft/multiline is enabled (issue #1923) |