summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2023-12-15core: fix crash on plugin reload when using musl libs (closes #2052)Sébastien Helleu
2023-12-14core: fix styleSébastien Helleu
2023-12-10irc: add option irc.look.display_host_wallopsSébastien Helleu
2023-12-02api: add info "mouse"Sébastien Helleu
2023-12-02api: return NULL instead of empty infolist "key" when context is not foundSébastien Helleu
2023-12-02core: check that directory is not NULL in function plugin_api_info_absolute_pathSébastien Helleu
2023-12-02core: rename variable "version" to "compilation_date"Sébastien Helleu
2023-11-29irc: display messages 730/731 even if command `/notify` was not used (closes ↵Sébastien Helleu
#2049)
2023-11-29core: update translations (issue #1039)Sébastien Helleu
2023-11-29irc: 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-29irc: 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-26irc: remove trailing "\r\n" in signals "irc_out" and "irc_outtags" when ↵Sébastien Helleu
messages are queued
2023-11-24irc: add option irc.look.list_bufferSébastien Helleu
2023-11-21api: remove script hooks before buffers/bar items/configsSébastien Helleu
This prevents a crash in some scripts that could use options after they are freed, with the call to hook config callback that has been enabled by commit 22602147977b42f4211697d77263be67c9506414.
2023-11-11buflist: jump to previous/next buffer displayed in buflist item with ↵Sébastien Helleu
ctrl+wheel up/down on a buflist item (closes #1473)
2023-11-07irc: fix target buffer of IRC message 337 (whois reply: "is hiding their ↵Sébastien Helleu
idle time")
2023-11-04relay: close properly connection with the IRC client in case of server ↵Sébastien Helleu
disconnection (closes #2038)
2023-11-03relay: change default value of option relay.network.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-03irc: 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-01irc: update help on color remap options, update translations (issue #2025)Sébastien Helleu
2023-11-01irc: add option irc.color.term_remap (closes #2025)Sébastien Helleu
2023-11-01irc: 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-01core, 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-30trigger: rename local variable "trigger_filter" to "filter" on monitor ↵Sébastien Helleu
buffer (closes #2037)
2023-10-30logger: remove dead assignmentSébastien Helleu
2023-10-30xfer: fix use of uninitialized variable when adding a new xferSébastien Helleu
2023-10-30xfer: fix use of NULL pointer in strrchr()Sébastien Helleu
2023-10-30ruby: fix use of NULL variable when displaying exceptionSébastien Helleu
2023-10-30irc: add tags "nick_xxx" and "host_xxx" in all messages, including self and ↵Sébastien Helleu
server messages
2023-10-22core: add number of processes in command `/sys waitpid`Sébastien Helleu
2023-10-20logger: add description for examples in help on command `/logger` (issue #2005)Sébastien Helleu
2023-10-20irc: 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-19irc: revert compute of nick colors to case sensitive way, deprecate again ↵Sébastien Helleu
IRC nick color infos (issue #194, issue #2032)
2023-10-17xfer: format and translate commands line by line (issue #2005)Sébastien Helleu
2023-10-17trigger: format and translate command line by line (issue #2005)Sébastien Helleu
2023-10-17spell: format and translate command line by line (issue #2005)Sébastien Helleu
2023-10-17relay: format and translate command line by line (issue #2005)Sébastien Helleu
2023-10-17script: format and translate commands line by line (issue #2005)Sébastien Helleu
2023-10-17logger: format and translate command line by line (issue #2005)Sébastien Helleu
2023-10-17irc: format and translate commands line by line (issue #2005)Sébastien Helleu
2023-10-17fset: format and translate command line by line (issue #2005)Sébastien Helleu
2023-10-17fifo: format and translate command line by line (issue #2005)Sébastien Helleu
2023-10-17exec: format and translate command line by line (issue #2005)Sébastien Helleu
2023-10-17charset: format and translate command line by line (issue #2005)Sébastien Helleu
2023-10-17buflist: format and translate command line by line (issue #2005)Sébastien Helleu
2023-10-17alias: format and translate command line by line (issue #2005)Sébastien Helleu
2023-10-17api: add support of format/translation of command arguments description line ↵Sébastien Helleu
by line (issue #2005)
2023-10-17api: add function string_concat (issue #2005)Sébastien Helleu
2023-10-15irc: add option irc.look.ignore_tag_messages (closes #989)Sébastien Helleu
2023-10-15irc: add structure with context sent as unique parameter to IRC protocol ↵Sébastien Helleu
callbacks (issue #989)