summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
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-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-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-02ruby: fix compilation warningSebastien Helleu
2014-02-02core: fix compilation on Android (replace calls to rindex by strrchr) (bug ↵Sebastien Helleu
#41420, patch #8301)
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-27logger: replace backslashs in name by logger replacement char under Cygwin ↵Sebastien Helleu
(bug #41207)
2014-01-25irc: add command "monitor" in /help irc.look.notify_tags_isonSebastien Helleu
2014-01-25scripts: fix script interpreter used after register during load of script in ↵Sebastien Helleu
python/perl/ruby/lua/guile plugins (bug #41345)
2014-01-23irc: use MONITOR instead of ISON for /notify when it is available on server ↵Sebastien Helleu
(task #11477) (patch from Nils Görs)
2014-01-22api: add function "infolist_search_var"Sebastien Helleu
2014-01-21irc: do not display names by default when joining a channel (task #13045)Sebastien Helleu
2014-01-21core: update translationsSebastien Helleu
2014-01-21irc: refactor code in gnutls callback to display certificates even if option ↵Sebastien Helleu
ssl_fingerprint is set
2014-01-21irc: check that server option ssl_fingerprint has exactly 40 hexadecimal ↵Sebastien Helleu
digits (when set to non-empty value)
2014-01-21irc: add server option "ssl_fingerprint" (task #12724)Maarten de Vries
2014-01-20irc: add comment with return value for function irc_server_gnutls_callbackSebastien Helleu
2014-01-20irc: display PONG answer when resulting from manual /ping commandSebastien Helleu
2014-01-18core: reformat hook_command argumentsSebastien Helleu
2014-01-11api: add stdin options in functions hook_process_hashtable and hook_set ↵Sebastien Helleu
(task #10847, task #13031) The function hook_set has been added in script API.
2014-01-11irc: fix time parsed in tag of messages on CygwinSebastien Helleu
2014-01-10xfer: add gcrypt library for link of pluginSebastien Helleu
2014-01-10irc: add missing include of netinet/in.h (fix compilation error on FreeBSD)Sebastien Helleu
2014-01-09core: optimize xxx_valid() functions: return immediately if pointer is NULLSebastien Helleu
2014-01-09core: add "POSIX extended" in description of options/commands/functions ↵Sebastien Helleu
using regular expressions
2014-01-09relay: fix memory leak on unload of relay pluginSebastien Helleu
2014-01-09xfer: add support of IPv6 for DCC chat/file (patch #7992)Andrew Potter
2014-01-06ruby: remove evil tabSebastien Helleu
2014-01-06xfer: use same infolist for hook and signals (patch #7974)Andrew Potter
2014-01-06xfer: add option xfer.file.auto_check_crc32 (patch #7963)Sebastien Helleu
Thanks to Andrew Potter for the patch.
2014-01-06ruby: fix ruby init with ruby >= 2.0 (bug #41115)Sebastien Helleu