summaryrefslogtreecommitdiff
path: root/src/plugins/irc
AgeCommit message (Collapse)Author
2020-03-30irc: add missing modifier "irc_color_decode_ansi" in comment on function ↵Sébastien Helleu
irc_color_modifier_cb
2020-03-28irc: move functions irc_protocol_get_message_tags and ↵Sébastien Helleu
irc_protocol_parse_time before protocol callbacks
2020-03-28irc: remove empty linesSébastien Helleu
2020-03-27irc: fix typo in description of message 001Sébastien Helleu
2020-03-27irc: add examples of NOTICE and PRIVMSG messages to channel opsSébastien Helleu
2020-03-21irc: use larger buffer for message in function ↵Sébastien Helleu
irc_message_split_authenticate, just in case
2020-03-21irc: split AUTHENTICATE message in 400-byte chunks (closes #1459)Sébastien Helleu
2020-03-21irc: replace "char *" by "const char *" in arguments of split functionsSébastien Helleu
2020-03-20api: add info "auto_connect" (closes #1453)Sébastien Helleu
2020-03-15irc: set channel modes to NULL instead of "+" when no modes are remainingSébastien Helleu
2020-03-15irc: add another example of MODE messageSébastien Helleu
2020-03-15irc: remove unused variable "modes" from function ↵Sébastien Helleu
irc_bar_item_buffer_name_content
2020-03-12irc: fix variable name in function irc_server_connect when GnuTLS is disabledSébastien Helleu
2020-03-10irc: rename argument in function irc_protocol_is_numeric_commandSébastien Helleu
2020-03-10irc: return 0 in function irc_protocol_is_numeric_command if the command is ↵Sébastien Helleu
NULL or empty
2020-03-09irc: add support of fake servers (no I/O, for testing purposes)Sébastien Helleu
2020-03-08irc: copy temporary server flag in command /server copySébastien Helleu
2020-02-10irc: use irc_server_prefix_chars_default if server->prefix_chars is NULLSébastien Helleu
2020-02-10irc: fix crash when receiving a malformed message 352 (who)Sébastien Helleu
Thanks to Stuart Nevans Locke for reporting the issue.
2020-02-09irc: fix crash when a new message 005 is received with longer nick prefixesSébastien Helleu
Thanks to Stuart Nevans Locke for reporting the issue.
2020-02-08irc: fix crash when receiving a malformed message 324 (channel mode)Sébastien Helleu
Thanks to Stuart Nevans Locke for reporting the issue.
2020-02-07irc: remove nested switches in function irc_color_decode_ansi_cbSébastien Helleu
2020-02-05irc: use dynamic string in function irc_color_encodeSébastien Helleu
2020-02-05irc: replace realloc by dynamic string in function irc_color_decodeSébastien Helleu
2020-02-01irc: add nick changes in the hotlist (except self nick change)Sébastien Helleu
2020-01-11irc: case-insensitive comparison on incoming CTCP command, force upper case ↵Sébastien Helleu
on CTCP replies (closes #1439)
2020-01-04core: update copyright datesSébastien Helleu
2019-12-15irc: fix memory leak when the channel topic is changedSébastien Helleu
2019-12-13irc: add GnuTLS >= 3.1.0 requirement to ssl_password option help (issue #115)Simmo Saan
2019-12-13irc: fix compilation with GnuTLS < 3.1.0 (issue #115)Simmo Saan
Due to this ssl_password will be partially unused with GnuTLS < 3.1.0. In that case an encrypted SSL client cert import will simply fail.
2019-11-21irc: do not automatically open a channel with name "0" (closes #1429)Sébastien Helleu
"0" is a special channel name which causes a client to leave all the channels it is presently on. Note that when option irc.look.buffer_open_before_join is on, WeeChat may still open channel buffers with an invalid channel name like "1". The server should reply something like that, displayed on the server buffer: 1: No such channel
2019-11-15irc: mention /filter command in /help irc.look.smart_filterSébastien Helleu
2019-11-08irc: set option irc.look.display_pv_warning_address to off by default (issue ↵Sébastien Helleu
#892) This is because the bitlbee server causes the warning to be displayed when it is not expected (the address of remote nick changes multiple times on login).
2019-11-03irc: fix typo and examples in /help serverSébastien Helleu
2019-11-03irc: set raw filter to "*" if local variable "filter" was not set after ↵Sébastien Helleu
/upgrade on raw buffer
2019-11-03irc: restore irc raw filter after /upgrade (issue #1000)Sébastien Helleu
2019-11-03irc: add filters on raw buffer (closes #1000)Sébastien Helleu
2019-10-23plugins: sort options added in configuration sectionsSébastien Helleu
2019-10-11irc: add option irc.look.display_pv_warning_address (closes #892)Sébastien Helleu
If the address of remote nick changes in a private buffer, a warning is displayed.
2019-10-09irc: add server option ssl_password for SSL certificate private key password ↵Simmo Saan
(closes #115)
2019-10-09irc: fix compiler warning on uninitialized variableSébastien Helleu
2019-10-06irc: use path from option xfer.file.upload_path to complete filename in ↵Sébastien Helleu
command "/dcc send" (closes #60)
2019-10-04irc: fix typo in /help linksSébastien Helleu
2019-10-01core: fix typos in commentsSébastien Helleu
2019-10-01core: fix style in CMake filesSébastien Helleu
2019-09-27irc: add "user" in output of irc_message_parse (closes #136)Sébastien Helleu
2019-09-23irc: add separate options for kick/kill message coloring (closes #683)Simmo Saan
Add new options irc.color.message_kick and irc.color.reason_kick to be used for coloring KICK and KILL messages.
2019-09-22irc: remove option irc.network.channel_encode, add server option ↵Sébastien Helleu
"charset_message" (closes #832) This new option controls which part of the IRC message is decoded/encoded to the target charset, and the new default behavior is to decode/encode the whole IRC message (behavior in WeeChat >= 1.3 was to decode/encode only the text by default).
2019-08-24irc: fix parsing of message 346, 348 and 728 when there is a colon before ↵Sébastien Helleu
the timestamp (issue #1396) IRC Messages: - 346: invite list - 348: exception list - 728: quiet list
2019-08-21irc: fix parsing of message 367 (banlist) when there is a colon before the ↵iwalkalone
timestamp (closes #1396)