summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-02-09trigger: split trigger command on creation, not when executing the callbackSebastien Helleu
2014-02-09trigger: add options trigger.color.trigger{_disabled}Sebastien Helleu
2014-02-09trigger: add option "addinput" in command /triggerSebastien Helleu
2014-02-09trigger: add missing value in trigger_hook_default_regexSebastien Helleu
2014-02-09trigger: do not sort completions for hook type (use order defined in trigger.h)Sebastien Helleu
2014-02-09trigger: add callback for changes on hook option (trigger.trigger.xxx.hook)Sebastien Helleu
2014-02-09trigger: reorder internal trigger varsSebastien Helleu
2014-02-09core: replace "regex_t *" by "void *" in string functions (fix ruby ↵Sebastien Helleu
compilation error with autotools)
2014-02-09trigger: add hook command_runSebastien Helleu
2014-02-09trigger: use case insensitive comparison when searching for a trigger nameSebastien Helleu
2014-02-09trigger: add option "restart" in command /triggerSebastien Helleu
2014-02-09trigger: remove the timer hook pointer during the last timer callSebastien Helleu
2014-02-09trigger: add completion for all arguments of command /trigger addSebastien Helleu
2014-02-09trigger: sort triggers by nameSebastien Helleu
2014-02-09trigger: split arguments like shell in "/trigger add", to create a whole ↵Sebastien Helleu
trigger with one command
2014-02-09api: add function string_split_shellSebastien Helleu
2014-02-09core: add argument "num_items" in function string_split_shellSebastien Helleu
2014-02-09trigger: add timerSebastien Helleu
2014-02-09trigger: execute callback even if regex/command are not set in the triggerSebastien Helleu
2014-02-09trigger: remove quotes around value in command /trigger setSebastien Helleu
2014-02-09trigger: add hsignalSebastien Helleu
2014-02-09api: add function hashtable_dupSebastien Helleu
2014-02-09trigger: add support of variable in regex optionSebastien Helleu
Examples with new format: /regex/text/ /regex/text/var /regex1/text1/ /regex2/text2/ /regex1/text1/var /regex2/text2/var
2014-02-09trigger: enable many trigger names and value "-all" in command /trigger ↵Sebastien Helleu
{enable|disable|toggle}
2014-02-09trigger: fix regex result in a hook printSebastien Helleu
2014-02-09trigger: display regex changes in monitor bufferSebastien Helleu
2014-02-09trigger: minor change in output of /trigger for regexSebastien Helleu
2014-02-09trigger: add more help in trigger optionsSebastien Helleu
2014-02-09trigger: add option "rename" in command /triggerSebastien Helleu
2014-02-09trigger: do not allow a name starting with "-"Sebastien Helleu
2014-02-09trigger: add trigger pluginSebastien Helleu
2014-02-09core: display a warning in case of inconsistency between the options ↵Sebastien Helleu
weechat.look.save_{config|layout}_on_exit
2014-02-09core: add more info in /help weechat.look.hotlist_sortSebastien Helleu
2014-02-07core: fix apply of layout when buffers that are not in layout are before ↵Sebastien Helleu
some buffers in layout Now when a layout is applied, the buffers in layout are inserted/sorted first in the new list. Then the other buffers (not in layout) are added after this loop, and then they are added after all layout buffers.
2014-02-06core: fix hotlist problems after apply of a layout (bug #41481)Sebastien Helleu
This commit fixes a problem when computing the value of "num_displayed" in all buffers. For merged buffers (with same number), the num_displayed of each merged buffer must be incremented (and not only the current active buffer).
2014-02-05ruby: add detection and fix compilation with Ruby 2.0 (patch #8209)Sebastien Helleu
Now the search for Ruby is first performed with pkg-config and includes detection of Ruby 2.0. If not found, the old code for detection is used (for old distros or old Ruby versions). The specific test on Ruby 1.9.0 (to disable this version) has been removed (1.9.0 was a dev/unstable version from 2007, quite old now).
2014-02-04core: fix installation of weechat-plugin.h with autotools (patch #8305)Patrick Steinhardt
2014-02-04alias: add default alias /beep => /print -stderr \aSebastien Helleu
2014-02-04core: use structure itself for sizeof in two mallocSebastien Helleu
2014-02-02ruby: fix compilation warningSebastien Helleu
2014-02-02core: fix compilation on Android (replace include of sys/termios.h by ↵Sebastien Helleu
termios.h) (bug #41434)
2014-02-02core: fix compilation on Android (replace calls to rindex by strrchr) (bug ↵Sebastien Helleu
#41420, patch #8301)
2014-02-01core: fix crash when creating two bars with same name but different case ↵Sebastien Helleu
(bug #41418)
2014-01-31irc: clear the gnutls session in all cases after SSL connection errorSebastien Helleu
2014-01-31relay: send backlog for irc private buffersSebastien Helleu
2014-01-29core: fix typos in translations and docsSebastien Helleu
2014-01-28irc: add value "353" in option irc.look.display_join_messageSebastien Helleu
So now the values mean: - 353: names on channel - 366: names count (before this commit it meant 353 + 366)
2014-01-27core: fix display of read marker when all buffers line are unreadSebastien Helleu
The bug is when all buffer lines are unread (so "last_read_line" pointer is NULL), and that the option weechat.look.read_marker_always_show is on. The read marker was displayed at bottom after switch to the buffer. Thanks to Nils Görs.
2014-01-27logger: replace backslashs in name by logger replacement char under Cygwin ↵Sebastien Helleu
(bug #41207)
2014-01-26core: fix memory leak in regex matching when evaluating expressionSebastien Helleu