Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-02-01 | core: add support of base64url in encode/decode functions (issue #2066) | Sébastien Helleu | |
2024-01-22 | irc: fix random date displayed when a received message contains tags but no ↵ | Sébastien Helleu | |
"time" (closes #2064) | |||
2024-01-12 | irc: check if arguments are not NULL in some infos | Sébastien Helleu | |
Affected infos: - irc_server_isupport - irc_server_isupport_value - irc_server_cap - irc_server_cap_value | |||
2024-01-12 | irc: fix info "irc_is_message_ignored" (closes #2059) | Sébastien Helleu | |
2024-01-05 | irc: fix display of self messages in case of message split failure | Sébastien Helleu | |
When the message sends inconsistent max lengths in message 005, the split of self message fails and causes a display issue: the channel name is displayed with the message: nick | #channel :this is a test instead of: nick | this is a test | |||
2024-01-05 | irc: remove function irc_protocol_parse_time, use API function ↵ | Sébastien Helleu | |
weechat_util_parse_time (issue #649) | |||
2024-01-04 | irc: display microseconds in some user messages (issue #649) | Sébastien Helleu | |
2024-01-01 | core: update copyright dates | Sébastien Helleu | |
2023-12-26 | core: store microseconds in buffer lines (closes #649) | Sébastien Helleu | |
2023-12-15 | core: fix crash on plugin reload when using musl libs (closes #2052) | Sébastien Helleu | |
2023-12-14 | core: fix style | Sébastien Helleu | |
2023-12-10 | irc: add option irc.look.display_host_wallops | Sébastien Helleu | |
2023-11-29 | irc: display messages 730/731 even if command `/notify` was not used (closes ↵ | Sébastien Helleu | |
#2049) | |||
2023-11-29 | core: update translations (issue #1039) | Sébastien Helleu | |
2023-11-29 | irc: remove unneeded error message when an unknown server option is read in ↵ | Sébastien Helleu | |
config file (issue #1039) This is not needed because an error is already displayed by WeeChat core and the IRC error doesn't add anything relevant to the user. | |||
2023-11-29 | irc: add server option "anti_flood", remove server options ↵ | Sébastien Helleu | |
"anti_flood_prio_{high|low}" (issue #1039) The new option is set in milliseconds. | |||
2023-11-26 | irc: remove trailing "\r\n" in signals "irc_out" and "irc_outtags" when ↵ | Sébastien Helleu | |
messages are queued | |||
2023-11-24 | irc: add option irc.look.list_buffer | Sébastien Helleu | |
2023-11-07 | irc: fix target buffer of IRC message 337 (whois reply: "is hiding their ↵ | Sébastien Helleu | |
idle time") | |||
2023-11-03 | irc: change default value of server option "tls_priorities" to `NORMAL` | Sébastien Helleu | |
It is no more needed to remove `VERS-SSL3.0` because it is no longer in the default priorities since GnuTLS 3.4.0 (released on 2015-04-08). | |||
2023-11-01 | irc: update help on color remap options, update translations (issue #2025) | Sébastien Helleu | |
2023-11-01 | irc: add option irc.color.term_remap (closes #2025) | Sébastien Helleu | |
2023-11-01 | irc: add support of RGB colors in messages (issue #2025) | Sébastien Helleu | |
This is made using standard color code '\x04' followed by text color (RGB as hexadecimal) and optional background (RGB as hexadecimal). | |||
2023-11-01 | core, plugins: set error to NULL before calling strtol() | Sébastien Helleu | |
This is not strictly necessary, just in case the function strtol() doesn't update the pointer. | |||
2023-10-30 | irc: add tags "nick_xxx" and "host_xxx" in all messages, including self and ↵ | Sébastien Helleu | |
server messages | |||
2023-10-20 | irc: add description for examples in help on some commands (issue #2005) | Sébastien Helleu | |
Help is updated on these commands: - `/allchan` - `/allpv` - `/allserv` | |||
2023-10-19 | irc: revert compute of nick colors to case sensitive way, deprecate again ↵ | Sébastien Helleu | |
IRC nick color infos (issue #194, issue #2032) | |||
2023-10-17 | irc: format and translate commands line by line (issue #2005) | Sébastien Helleu | |
2023-10-15 | irc: add option irc.look.ignore_tag_messages (closes #989) | Sébastien Helleu | |
2023-10-15 | irc: add structure with context sent as unique parameter to IRC protocol ↵ | Sébastien Helleu | |
callbacks (issue #989) | |||
2023-10-09 | irc: move value `-all` at the end of completions for command `/ignore del` | Sébastien Helleu | |
2023-10-07 | irc: fix memory leak when joining channels with keys | Sébastien Helleu | |
2023-09-22 | irc: display "owner" for +q and "admin" for +a in output of `/names` (closes ↵ | Sébastien Helleu | |
#2020, issue #97) | |||
2023-09-14 | irc: add option irc.look.open_pv_buffer_echo_msg (issue #2016) | Sébastien Helleu | |
2023-09-14 | irc: update title in query buffer when remote nick is myself (issue #2016) | Sébastien Helleu | |
2023-09-14 | irc: fix title of query buffer for own messages received (issue #2016) | Sébastien Helleu | |
2023-09-14 | irc: open a query buffer on PRIVMSG received from self nick when capability ↵ | Sébastien Helleu | |
echo-message is NOT enabled (issue #2016) | |||
2023-09-14 | irc: don't open a new private buffer on `/msg` command when capability ↵ | Sébastien Helleu | |
echo-message is enabled (closes #2016) | |||
2023-09-14 | irc: fix title of private buffers wrongly set to own address when capability ↵ | Sébastien Helleu | |
echo-message is enabled (issue #2016) | |||
2023-09-12 | irc: fix unexpected message sent to server when part of the second line of ↵ | Sébastien Helleu | |
an IRC command (closes #1992) | |||
2023-09-11 | irc: fix autojoin of channels when private buffers are opened (closes #2012) | Sébastien Helleu | |
2023-09-11 | irc: reset filter and sort when /list buffer is closed (issue #1972) | Sébastien Helleu | |
2023-09-06 | irc: fix code style (issue #2004) | Sébastien Helleu | |
2023-09-06 | xfer: update command/config docs with passive DCC support. | Mario Campos | |
2023-09-06 | xfer: add passive DCC support. | Mario Campos | |
This commit also includes support for passive DCC RESUME. There was also a potential segfault with calling `atoi(pos_token)` when `pos_token` is NULL, so `token` is set to be stored as a string. Although it is an integer, we don't need to store it as such. That's really more of an implementation detail. | |||
2023-09-06 | xfer: add and identify active/passive xfer types. | Mario Campos | |
Before making any significant changes, let's identify the existing xfer types by either active or passive. | |||
2023-09-06 | xfer: reverse DCC parsing from RtL to LtR. | Mario Campos | |
This makes it easier to handle the optional "token" argument at the (right) end, which will be necessary to support passive DCC. Incidentally, this is RtL parsing order is the reason why you'd get a cryptic "0" address error when attempting to do passive DCC: the "token" argument gets misinterpreted as the "size" argument. Every argument "shifts" over by one, leaving an address (port) of "0". | |||
2023-09-06 | irc: fix comments on CTCP evaluated variables (issue #1974) | Sébastien Helleu | |
2023-09-05 | core: add note for translators on command arguments (issue #2005) | Sébastien Helleu | |
Only text between angle brackets (eg: "<name>") must be translated. | |||
2023-08-27 | irc: add count and mode filter in command `/names` (closes #98) | Sébastien Helleu | |