summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-02-15doc: add trigger plugin in docgen.pySebastien Helleu
2014-02-15trigger: add file trigger.conf in man pageSebastien Helleu
2014-02-15trigger: remove triggers in /help trigger that are already default triggersSebastien Helleu
2014-02-15trigger: update help of options trigger.trigger.xxx.{arguments|command}Sebastien Helleu
2014-02-15trigger: add trigger plugin in developer's guideSebastien Helleu
2014-02-14trigger: update description of command /triggerSebastien Helleu
2014-02-14trigger: remove the return code with /trigger input/output/recreate for ↵Sebastien Helleu
modifier and focus hooks
2014-02-14trigger: fix return code of focus callbackSebastien Helleu
2014-02-14trigger: allow restart of trigger only if trigger is enabledSebastien Helleu
2014-02-14trigger: add option trigger.look.enabled (can be changed with /trigger ↵Sebastien Helleu
enable|disable|toggle)
2014-02-14trigger: add option "recreate" in command /triggerSebastien Helleu
The "recreate" option is the same as "input" but the trigger is first deleted. So this lets you recreate the same trigger and edit some things if needed.
2014-02-14core: add asciidoc attributes in files ChangeLog/NEWSSebastien Helleu
2014-02-14core: fix completion template used in command completion when first argument ↵Sebastien Helleu
in template has pipes
2014-02-14trigger: add option "copy" in command /triggerSebastien Helleu
2014-02-14trigger: add options "input" and "output" in command /triggerSebastien Helleu
2014-02-14doc: add function string_convert_escaped_chars in plugin API referenceSebastien Helleu
2014-02-14doc: add function string_split_shell in plugin API referenceSebastien Helleu
2014-02-14doc: add function string_replace_regex in plugin API referenceSebastien Helleu
2014-02-14core: change text in comment of function string_replace_regexSebastien Helleu
2014-02-14doc: add function hashtable_dup in plugin API referenceSebastien Helleu
2014-02-13core: use item "buffer_last_number" instead of "buffer_count" by default in ↵Sebastien Helleu
status bar
2014-02-13core: sync debian files with debian git repositorySebastien Helleu
2014-02-13trigger: add strings without colors in hashtable for modifier ↵Sebastien Helleu
"weechat_print" and hook print For modifier "weechat_print", variables added: - tg_string_nocolor (same as tg_string, without colors) - tg_prefix_nocolor (same as tg_prefix, without colors) - tg_message_nocolor (same as tg_message, without colors) For hook print, variables added: - tg_prefix_nocolor (same as tg_prefix, without colors) - tg_message_nocolor (same as tg_message, without colors)
2014-02-13trigger: add "tg_prefix" and "tg_message" in hashtable for modifier ↵Sebastien Helleu
"weechat_print"
2014-02-13trigger: escape chars in regex replacement (when trigger is created)Sebastien Helleu
2014-02-13api: add function string_convert_escaped_charsSebastien Helleu
2014-02-13trigger: display arguments of triggers on monitor bufferSebastien Helleu
2014-02-13trigger: evaluate regex replacement on execution of trigger (and not when ↵Sebastien Helleu
creating the trigger)
2014-02-13trigger: fix call of IRC message parser on non-IRC messages in modifier callbackSebastien Helleu
2014-02-13core: fix freeze/crash in gnutls (bug #41576)Jason A. Donenfeld
The link is now made against pthread on all platforms. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2014-02-13trigger: add "server" in hashtable after parsing of IRC messageSebastien Helleu
2014-02-13trigger: parse IRC messages received in signal/modifier hook callbacksSebastien Helleu
The parsed message is added into hashtable "extra_vars". For example, signal "freenode,irc_in_PRIVMSG" received with the message "hello world!" on channel #weechat gives in the hashtable: extra_vars: tags: "" host: "tester!user@host.com" tg_signal: "freenode,irc_in_PRIVMSG" channel: "#weechat" tg_signal_data: ":tester!user@host.com PRIVMSG #weechat :hello world!" arguments: "#weechat :hello world!" nick: "tester" command: "PRIVMSG" message_without_tags: ":tester!user@host.com PRIVMSG #weechat :hello world!"
2014-02-13trigger: refactor some code in hook callbacks using macrosSebastien Helleu
2014-02-13trigger: add hook focusSebastien Helleu
2014-02-13trigger: add hook commandSebastien Helleu
2014-02-13trigger: add extra colors in trigger monitor bufferSebastien Helleu
2014-02-13trigger: add the name of buffer on trigger monitor when executing a commandSebastien Helleu
2014-02-13irc: use a more explicit error when the creation of a temporary server failedSebastien Helleu
2014-02-13doc: update auto-generated files with hdataSebastien Helleu
2014-02-12doc: fix typo in plugin API referenceSebastien Helleu
2014-02-12core: fix cmake warning CMP0007 on "make uninstall" (bug #41528)Sebastien Helleu
2014-02-11core: add signals "key_combo_{default|search|cursor}"Sebastien Helleu
2014-02-11core: ignore return value of 'write' in function hook_set (fix compiler warning)Sebastien Helleu
2014-02-11core: replace compiler flag -W by -Wextra (new name)Sebastien Helleu
2014-02-11core: sync debian files with debian git repositorySebastien Helleu
2014-02-10trigger: add option "show" in command /triggerSebastien Helleu
2014-02-10core: split key command when the key is created (improve speed when ↵Sebastien Helleu
executing commands of a key)
2014-02-10api: add integer return code for functions hook_{signal|hsignal}_sendSebastien Helleu
2014-02-10trigger: add option trigger.look.monitor_strip_colorsSebastien Helleu
2014-02-10trigger: add hook configSebastien Helleu