summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2021-05-11relay: evaluate option relay.network.ssl_cert_key (issue #1285)Sébastien Helleu
2021-05-11irc: evaluate options irc.server_default.ssl_cert and ↵Sébastien Helleu
irc.server.xxx.ssl_cert (issue #1285)
2021-05-11irc: evaluate options irc.server_default.sasl_key and ↵Sébastien Helleu
irc.server.xxx.sasl_key (issue #1285)
2021-05-11core: evaluate option weechat.plugin.path (issue #1285)Sébastien Helleu
2021-04-26xfer: make file transfer fail when option xfer.file.auto_rename is off and ↵Sébastien Helleu
file already exists (closes #1633)
2021-04-11doc: mark info "python2_bin" as deprecated since version 2.6 (plugin API ↵Sébastien Helleu
reference)
2021-04-10irc: remove unused variable ptr_address and dead codeSébastien Helleu
2021-04-10irc: remove dead assignment on variable pos_messageSébastien Helleu
2021-04-10trigger: remove useless testSébastien Helleu
2021-04-09trigger: check that option is not NULL in function trigger_search_with_optionSébastien Helleu
2021-04-08trigger: fix description of function trigger_name_validSébastien Helleu
2021-04-08trigger: check that trigger is not NULL in functions trigger_rename and ↵Sébastien Helleu
trigger_copy
2021-04-06trigger: add variables "${tg_shell_argc}" and "${tg_shell_argvN}" in command ↵Sébastien Helleu
trigger evaluated strings (closes #1624)
2021-03-21buflist: improve help on option buflist.look.sortSébastien Helleu
2021-03-21buflist: Fix wrong pointers being used in hdata_compareTrygve Aaberge
This used pointer1 and pointer2 which are pointers to the buffers, but it should use ptr_hotlist1 and ptr_hotlist1 which are pointers to the hotlists it is trying to compare.
2021-03-14api: add info "weechat_daemon"Sébastien Helleu
2021-03-14fset: add fset bar on configuration reload (issue #1618)Sébastien Helleu
2021-03-14buflist: always add buflist bar when plugin is loaded, hide bar by default ↵Sébastien Helleu
if buflist is disabled (issue #1618)
2021-03-14buflist: add buflist bar on configuration reload (issue #1618)Sébastien Helleu
2021-03-07core: add missing include of sys/time.h in C headersSébastien Helleu
2021-02-27irc: add bar item "irc_nick_prefix"Sébastien Helleu
2021-02-27irc: fix separator between nick and host in bar item "irc_nick_host"Sébastien Helleu
Use "!" instead of "@" to separate nick from host, like it is done in IRC protocol. The nick and host is now displayed as "nick!user@host" instead of "nick@user@host".
2021-02-27fset: fix description of function fset_bar_item_fset_cbSébastien Helleu
2021-02-09buflist: add option buflist.look.use_items to speed up display of buflist ↵Sébastien Helleu
(closes #1613)
2021-02-03irc: add info "irc_is_message_ignored"Sébastien Helleu
2021-01-30irc: add function irc_server_get_chantypesSébastien Helleu
2021-01-30irc: use server option "default_chantypes" as fallback in function ↵Sébastien Helleu
irc_nick_is_nick
2021-01-30irc: use server option "default_chantypes" as fallback when automatically ↵Sébastien Helleu
adding channel type on join
2021-01-30irc: improve help on server option "default_chantypes"Sébastien Helleu
2021-01-30irc: fix name of option "default_chantypes" in list of server optionsSébastien Helleu
2021-01-30irc: simplify code in function irc_channel_is_channelSébastien Helleu
2021-01-30irc: make default chantypes configurableMatti Virkkunen
2021-01-02core: update copyright datesSébastien Helleu
2021-01-02irc: remove obsolete comment on translationSébastien Helleu
2021-01-02irc: fix ambiguity on translation of word "server"Sébastien Helleu
This fixes the following warning: /usr/bin/xgettext: warning: msgid 'server' is used without plural and with plural. ./src/plugins/irc/irc-bar-item.c:136: Here is the occurrence without plural. ./src/plugins/irc/irc.c:154: Here is the occurrence with plural. Workaround: If the msgid is a sentence, change the wording of the sentence; otherwise, use contexts for disambiguation.
2020-12-19core: add options "setvar" and "delvar" in command /buffer, rename option ↵Sébastien Helleu
"localvar" to "listvar" The option "localvar" (introduced long time ago, in WeeChat 0.3.0) is still recognized by WeeChat, to stay compatible with any extension/script calling it (or referencing it in the documentation). It is deprecated and will be removed in a future release.
2020-12-15script: add status of scripts in output of command /script list in /help scriptSébastien Helleu
2020-12-06irc: fix completion of commands /halfop and /dehalfopSébastien Helleu
2020-12-06irc: add missing parameter "-yes" in /help dehalfopSébastien Helleu
2020-12-06add -yes to output of /help voicedotflac
currently /help voice does not tell you that you need -yes if you are using *. i have changed it to match /help op, /help deop and /help devoice
2020-12-05Revert "exec: return NULL immediately if the task id is invalid"Sébastien Helleu
This reverts commit dff1bf6f0f5521cf9e23e2b32a648512e13b6a72.
2020-11-22script: increase buffer size in function script_buffer_detail_labelSébastien Helleu
This fixes a compiler warning complaining about a too small buffer for snprintf, even if this should never happen.
2020-11-22core: increase buffer size in function plugin_api_info_uptime_cbSébastien Helleu
This fixes a compiler warning complaining about a too small buffer for snprintf, even if this should never happen.
2020-11-20spell: fix crash with IRC color codes in command line (closes #1589)Sébastien Helleu
2020-11-19core: add missing cast to unsigned char on first argument to function isdigitSébastien Helleu
2020-11-17core: fix and normalize error messagesSébastien Helleu
2020-11-14trigger: add variable "${tg_trigger_name}" in command trigger evaluated ↵Sébastien Helleu
strings (closes #1580) ${tg_trigger_name} is replaced by the trigger name in these command strings: - description - arguments - description of arguments - completion
2020-11-13spell: fix refresh of bar item "spell_suggest" when the input becomes empty ↵Sébastien Helleu
(closes #1586) When the input is empty, length of string is zero: when sending zero to function weechat_string_dyn_alloc, the function returns NULL and therefore we return immediately instead of handling the empty input, which is a valid value. The regression was introduced by the use of dynamic strings, commit: 299f74bfef9e0d239ad141a4df3b2dcf11a4c0da
2020-10-21trigger: add variable "tg_argc" in data set by command trigger (closes #1576)Sébastien Helleu
2020-10-18irc: remove SASL timeout message displayed by error after successful SASL ↵Sébastien Helleu
authentication (closes #1515) The SASL timer is removed immediately when the SASL authentication is successful or has failed.