summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2014-03-12exec: add option exec.command.default_optionsSebastien Helleu
2014-03-11exec: fix crash when giving bad id to command /exec -inSebastien Helleu
2014-03-11exec: add option "-del" in command /execSebastien Helleu
2014-03-11exec: add option "-bg" in command /execSebastien Helleu
2014-03-11exec: update plugin API versionSebastien Helleu
2014-03-11exec: fix typos in /help execSebastien Helleu
2014-03-11exec: add option "-set" in command /execSebastien Helleu
2014-03-11exec: replace number by id in /help execSebastien Helleu
2014-03-11exec: add list of signal names in /help execSebastien Helleu
2014-03-11exec: implement options -signal/-kill/-killall in command /execSebastien Helleu
2014-03-11exec: remove error prefix in case of unexpected end of a commandSebastien Helleu
2014-03-11exec: display command return code after output (stdout/stderr)Sebastien Helleu
2014-03-11exec: add tag "exec_rc" for line with command return code, remove empty line ↵Sebastien Helleu
displayed before
2014-03-11exec: add exec pluginSebastien Helleu
2014-03-11relay: search buffers by full nameSebastien Helleu
2014-03-11fifo: search buffer by full name when text is received in pipeSebastien Helleu
2014-03-10trigger: add plugin name in error messagesSebastien Helleu
2014-03-09trigger: remove unneeded code to make C compiler happySebastien Helleu
2014-03-08trigger: fix typo in a commentSebastien Helleu
2014-03-07script: fix scroll on script buffer in the detailed view of script (closes #6)Sebastien Helleu
2014-03-07relay: fix crash on /upgrade received from a client (weechat protocol)Sebastien Helleu
Some commands like /upgrade sent by relay client can cause problems, because they were executed immediately (while relay code is running). The /upgrade command unloads all plugins, so the result is unpredictable (it can cause a crash). This commit adds a timer (1 millisecond) to delay the execution of command after we go back in the WeeChat main loop.
2014-03-05relay: add info "relay_client_count" with optional status name as argumentSebastien Helleu
Use in evaluated strings (for example in /eval or triggers): - "${info:relay_client_count}": total number of relay clients (any status) With a specific status: - "${info:relay_client_count,connecting}" - "${info:relay_client_count,waiting_auth}" - "${info:relay_client_count,connected}" - "${info:relay_client_count,auth_failed}" - "${info:relay_client_count,disconnected}"
2014-03-05relay: add signals "relay_client_xxx" for client status changes (closes #2)Sebastien Helleu
New signals: - relay_client_connecting - relay_client_waiting_auth - relay_client_connected - relay_client_auth_failed - relay_client_disconnected
2014-03-04trigger: update description of trigger pluginSebastien Helleu
2014-03-04trigger: add some missing "+" after spaces in regex of default triggers ↵Sebastien Helleu
cmd_pass/msg_auth
2014-03-04rmodifier: remove plugin (replaced by trigger)Sebastien Helleu
2014-03-02trigger: add variable "tg_notify" (notify level of a message, if different ↵Sebastien Helleu
from "none")
2014-03-02trigger: allow chars '\' and '(' as delimiter in regexSebastien Helleu
2014-03-02trigger: do not create the trigger with /trigger add if the regex is invalidSebastien Helleu
2014-03-01trigger: fix typo in /help triggerSebastien Helleu
2014-03-01trigger: fix typo in /help triggerSebastien Helleu
2014-03-01trigger: make optional the alignment on second and max calls (in hook timer)Sebastien Helleu
2014-02-28irc: fix colors in message with CTCP reply sent to another userSebastien Helleu
2014-02-28irc: evaluate content of server options "username" and "realname"Sebastien Helleu
2014-02-28trigger: allow empty return code in command /trigger {add|addoff|addreplace}Sebastien Helleu
2014-02-28xfer: replace constant by sizeof in a call to snprintfSebastien Helleu
2014-02-28rmodifier: fix size used in a snprintfSebastien Helleu
2014-02-28relay: fix size used in a snprintfSebastien Helleu
2014-02-28irc: fix size used in some snprintfSebastien Helleu
2014-02-28irc: fix some malloc sizesSebastien Helleu
2014-02-28scripts: fix size used in some snprintfSebastien Helleu
2014-02-23relay: add option relay.network.clients_purge_delaySebastien Helleu
2014-02-23relay: fix freeze after /upgrade when many disconnected clients still existSebastien Helleu
The hooks for the WeeChat disconnected clients are not created again after /upgrade (they were removed on client disconnection, so there is no reason to create them again). The hooks like nicklist sync are called often (for example on irc disconnection), which can cause long freeze if many WeeChat disconnected clients exist in relay.
2014-02-22trigger: fix potential uninitialized pointer in signal hook callbackSebastien Helleu
2014-02-22trigger: fix crash when a signal is received with type "int" and NULL ↵Sebastien Helleu
pointer in signal_data
2014-02-22scripts: fix crash when a signal is received with type "int" and NULL ↵Sebastien Helleu
pointer in signal_data
2014-02-22irc: set option irc.network.autoreconnect_delay_max to 600 by default, ↵Sebastien Helleu
increase max value to 604800 seconds (7 days)
2014-02-22relay: remove dead assignment in function relay_client_recv_cbSebastien Helleu
2014-02-22irc: remove dead assignment in function irc_ignore_checkSebastien Helleu
2014-02-22xfer: remove dead assignment in function xfer_add_cbSebastien Helleu