summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
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-18irc: optimize and reuse irc_channel_rejoinSimmo Saan
2023-05-18irc: use key when /join-ing in open channel bufferSimmo Saan
2023-05-18alias: use dynamic string to replace alias argumentsSébastien Helleu
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-17irc: start from the beginning of nicks at automatic reconnection (closes #337)arza
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-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-16core: move creation of info_hashtable "secured_data" in plugin-api-info.cSébastien Helleu
2023-05-16typing: remove nicks typing even when option typing.look.enabled_self is off ↵Sébastien Helleu
(closes #1718)
2023-05-16typing: fix type and name of variable for key in hashtable typing_status_nicksSébastien Helleu
2023-05-16irc: display command 437 on server buffer when nickname cannot change while ↵Sébastien Helleu
banned on channel (closes #88)
2023-05-15irc: add modifier "irc_cap_sync_req" (closes #1767)Sébastien Helleu
2023-05-15irc: add comments in "cap" callbackSébastien Helleu
2023-05-15irc: remove unused variableSébastien Helleu
2023-05-15irc: fix use of uninitialized variableSébastien Helleu
2023-05-15trigger: use new format for IRC tags in messagesSébastien Helleu
2023-05-14irc: 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-14irc: do not display multiline message if capability "draft/multiline" is not ↵Sébastien Helleu
enabled (issue #1923)
2023-05-14irc: ignore BATCH commands when capability "batch" is not enabled (issue #1292)Sébastien Helleu
2023-05-14irc: do not allow send of empty messages (single line or multiline)Sébastien Helleu
2023-05-14irc: set "input_multiline" to 1 in buffers only if capability ↵Sébastien Helleu
draft/multiline is enabled (issue #1923)
2023-05-14irc: add support of "LINELEN" in message 005 (max message length in bytes) ↵Sébastien Helleu
(closes #1927)
2023-05-14irc: reset all internal servers variables when disconnectingSébastien Helleu
2023-05-14irc: add support of capability "draft/multiline" (closes #1923)Sébastien Helleu
2023-05-14irc: return arraylist instead of hashtable in function irc_server_sendf ↵Sébastien Helleu
(issue #1923)
2023-05-14irc: don't split messages on "\n" in function irc_server_sendf (issue #1923)Sébastien Helleu
The function now allows only a single message. Newline chars ("\n") are allowed in messages but not used as message separator. This is a preparation work for the support of capability "draft/multiline".
2023-05-13irc: rename constant IRC_COMMAND_CAP_SUPPORTED_COMPLETION to ↵Sébastien Helleu
IRC_COMMAND_CAP_SUPPORTED
2023-05-13core: add quotes around paths in CMake files (closes #29)Sébastien Helleu
2023-05-04api: don't split on newline by default in functions `command` and ↵Sébastien Helleu
`command_options` when input_multiline is set to 0 The API functions `command` and `command_options` (when `split_newline` = 0, which is the default value) don't split on newline and then the first line is executed and the subsequent lines (after "\n") are ignored. There are no changes when the input has multiple lines filled by the user: the split is done and multiple commands are executed (for example if the user is pasting multiple commands to execute).
2023-05-03irc: add support of capability "batch" (closes #1292)Sébastien Helleu
2023-05-01trigger: add translation for first line of displayed triggersSébastien Helleu
2023-05-01core: remove options trigger.color.trigger and ↵Sébastien Helleu
trigger.color.trigger_disabled (issue #1820) These options are used instead: - weechat.color.chat_status_disabled - weechat.color.chat_status_enabled
2023-05-01irc: fix help on `sort` option in command `/autojoin` (issue #1876)Sébastien Helleu
2023-05-01irc: add option `buffer` in command `/autojoin sort` (closes #1876)Sébastien Helleu
2023-04-27irc: add `${username}` in server options "nicks" and "username", change ↵Sébastien Helleu
their default values to use it
2023-04-27fset: change default value of option fset.color.value_selected from 80 to ↵Sébastien Helleu
159 (issue #1920)
2023-04-26irc: change default colors (issue #1920)Sébastien Helleu
Default values changed: - irc.color.reason_quit: default -> 244 - irc.color.topic_new: white -> 36 - irc.color.topic_old: default -> 244
2023-04-26logger: change default colors (issue #1920)Sébastien Helleu
Default values changed: - logger.color.backlog_end: default -> 246 - logger.color.backlog_line: default -> 246