Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-17 | perl: fix context used after unload of a script | Sebastien Helleu | |
2014-02-17 | python: fix interpreter used after unload of a script | Sebastien Helleu | |
2014-02-17 | core: allow empty arguments for command /print | Sebastien Helleu | |
2014-02-16 | trigger: add option "addoff" in command /trigger (add a trigger in disabled ↵ | Sebastien Helleu | |
state) | |||
2014-02-16 | core: update ChangeLog (add option "bare" in command /window) | Sebastien Helleu | |
2014-02-16 | core: add bare display mode (for easy text selection and click on URLs) | Sebastien Helleu | |
New key: alt+"!", to swith to bare display (same key to come back to standard display). New options: - weechat.look.bare_display_exit_on_input (default: on): by default any changes in input will return to standard display - weechat.look.bare_display_time_format (default: "%H:%M"): the format of time used in bare display. | |||
2014-02-16 | core: add missing feature in ChangeLog for v0.4.3 (use one date format when ↵ | Sebastien Helleu | |
day changes from day to day+1) | |||
2014-02-15 | doc: fix typo in prototypes of functions hashtable_map/hashtable_map_string ↵ | Sebastien Helleu | |
(plugin API reference) | |||
2014-02-15 | core: move function string_replace before string_replace_regex | Sebastien Helleu | |
2014-02-15 | core: add trigger plugin in Cygwin packaging | Sebastien Helleu | |
2014-02-15 | core: add trigger plugin in debian packaging (in package weechat-plugins) | Sebastien Helleu | |
2014-02-15 | doc: add trigger plugin in docgen.py | Sebastien Helleu | |
2014-02-15 | trigger: add file trigger.conf in man page | Sebastien Helleu | |
2014-02-15 | trigger: remove triggers in /help trigger that are already default triggers | Sebastien Helleu | |
2014-02-15 | trigger: update help of options trigger.trigger.xxx.{arguments|command} | Sebastien Helleu | |
2014-02-15 | trigger: add trigger plugin in developer's guide | Sebastien Helleu | |
2014-02-14 | trigger: update description of command /trigger | Sebastien Helleu | |
2014-02-14 | trigger: remove the return code with /trigger input/output/recreate for ↵ | Sebastien Helleu | |
modifier and focus hooks | |||
2014-02-14 | trigger: fix return code of focus callback | Sebastien Helleu | |
2014-02-14 | trigger: allow restart of trigger only if trigger is enabled | Sebastien Helleu | |
2014-02-14 | trigger: add option trigger.look.enabled (can be changed with /trigger ↵ | Sebastien Helleu | |
enable|disable|toggle) | |||
2014-02-14 | trigger: add option "recreate" in command /trigger | Sebastien 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-14 | core: add asciidoc attributes in files ChangeLog/NEWS | Sebastien Helleu | |
2014-02-14 | core: fix completion template used in command completion when first argument ↵ | Sebastien Helleu | |
in template has pipes | |||
2014-02-14 | trigger: add option "copy" in command /trigger | Sebastien Helleu | |
2014-02-14 | trigger: add options "input" and "output" in command /trigger | Sebastien Helleu | |
2014-02-14 | doc: add function string_convert_escaped_chars in plugin API reference | Sebastien Helleu | |
2014-02-14 | doc: add function string_split_shell in plugin API reference | Sebastien Helleu | |
2014-02-14 | doc: add function string_replace_regex in plugin API reference | Sebastien Helleu | |
2014-02-14 | core: change text in comment of function string_replace_regex | Sebastien Helleu | |
2014-02-14 | doc: add function hashtable_dup in plugin API reference | Sebastien Helleu | |
2014-02-13 | core: use item "buffer_last_number" instead of "buffer_count" by default in ↵ | Sebastien Helleu | |
status bar | |||
2014-02-13 | core: sync debian files with debian git repository | Sebastien Helleu | |
2014-02-13 | trigger: 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-13 | trigger: add "tg_prefix" and "tg_message" in hashtable for modifier ↵ | Sebastien Helleu | |
"weechat_print" | |||
2014-02-13 | trigger: escape chars in regex replacement (when trigger is created) | Sebastien Helleu | |
2014-02-13 | api: add function string_convert_escaped_chars | Sebastien Helleu | |
2014-02-13 | trigger: display arguments of triggers on monitor buffer | Sebastien Helleu | |
2014-02-13 | trigger: evaluate regex replacement on execution of trigger (and not when ↵ | Sebastien Helleu | |
creating the trigger) | |||
2014-02-13 | trigger: fix call of IRC message parser on non-IRC messages in modifier callback | Sebastien Helleu | |
2014-02-13 | core: 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-13 | trigger: add "server" in hashtable after parsing of IRC message | Sebastien Helleu | |
2014-02-13 | trigger: parse IRC messages received in signal/modifier hook callbacks | Sebastien 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-13 | trigger: refactor some code in hook callbacks using macros | Sebastien Helleu | |
2014-02-13 | trigger: add hook focus | Sebastien Helleu | |
2014-02-13 | trigger: add hook command | Sebastien Helleu | |
2014-02-13 | trigger: add extra colors in trigger monitor buffer | Sebastien Helleu | |
2014-02-13 | trigger: add the name of buffer on trigger monitor when executing a command | Sebastien Helleu | |
2014-02-13 | irc: use a more explicit error when the creation of a temporary server failed | Sebastien Helleu | |
2014-02-13 | doc: update auto-generated files with hdata | Sebastien Helleu | |