summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2014-03-25exec: add options -nf and -cl/-nocl in command /execSebastien Helleu
-nf: create a new buffer with free content -cl: clear new buffer -nocl: append in new buffer
2014-03-24irc: fix notify message: "joined" -> "connected"Sebastien Helleu
2014-03-22irc: replace "user" by "nick" in description of commandsSebastien Helleu
2014-03-22irc: fix arguments in /help unquiet: at least one nick/host is requiredSebastien Helleu
2014-03-22irc: update description of some commandsSebastien Helleu
2014-03-22irc: add command /unquiet (closes #36)Sebastien Helleu
2014-03-19irc: fix typo in /help allpvSebastien Helleu
2014-03-19irc: add command /allpv (task #13111)Sebastien Helleu
2014-03-19core: fix use of reserved C identifiers in headers (closes #31)Sebastien Helleu
2014-03-18irc: fix truncated read on socket with SSL (bug #41558)Sebastien Helleu
If there are still data on socket with SSL (if gnutls_record_check_pending(session) returns > 0), then call gnutls_record_recv() again to read all available data. The problem was that some data remained in the gnutls buffers and the recv callback was not called any more (nothing available on raw socket).
2014-03-17trigger: set default variable "tg_remaining_calls" for regex in timer callbackSebastien Helleu
2014-03-17irc: fix typo in /help kickbanSebastien Helleu
2014-03-17exec: don't use shell by default when executing commands (for security reasons)Sebastien Helleu
It is possible to force shell by default with this command: /set exec.command.default_options "-sh"
2014-03-17script: set option script.scripts.cache_expire to 1440 by defaultSebastien Helleu
2014-03-16core: fix some compilation problems on SmartOSSebastien Helleu
2014-03-16ruby: fix crash when trying to load a directory with /ruby loadSebastien Helleu
2014-03-16exec: add example with option "-pipe" in /help execSebastien Helleu
2014-03-16exec: add return code ("rc") in hashtable sent with option "-hsignal"Sebastien Helleu
2014-03-16exec: add values "irc" and "weechat" for option "-color", replace "decode" ↵Sebastien Helleu
by "auto"
2014-03-16exec: add options "-pipe" and "-hsignal" in command /execSebastien Helleu
2014-03-16trigger: fix build of hashtable in hsignal callback when values have type ↵Sebastien Helleu
"string"
2014-03-15exec: do not create/switch to buffer with option "-bg"Sebastien Helleu
2014-03-15exec: add examples in /help execSebastien Helleu
2014-03-15exec: fix typo in /help execSebastien Helleu
2014-03-15exec: fix compilation on OpenBSDSebastien Helleu
Looks like the variable name "stdout" is a problem on OpenBSD (macro?). So "stdout" and "stderr" are renamed to "out" an "err".
2014-03-15core: update translationsSebastien Helleu
2014-03-15exec: rename value "off" to "ansi" for option "-color" in command /execSebastien Helleu
2014-03-15Merge branch 'exec'Sebastien Helleu
2014-03-15irc: add decoding of bright ANSI colors (90-97, 100-107)Sebastien Helleu
2014-03-15exec: add option "-color" in command /exec (decode ANSI colors by default)Sebastien Helleu
The ANSI colors are decoded by default to WeeChat colors (for local display), or IRC colors (if output is sent to buffer with "-o").
2014-03-15irc: add modifier "irc_color_decode_ansi"Sebastien Helleu
2014-03-15core: add modifier and infos to decode ANSI colorsSebastien Helleu
New modifier: - color_decode_ansi: convert ANSI colors to WeeChat colors (or remove colors). New infos: - color_ansi_regex: regex used to parse ANSI colors in a string - color_term2rgb: convert a terminal color (0-255) to RGB - color_rgb2term: convert a RGB color to terminal color (0-255)
2014-03-13xfer: Fix segfault in DCC send.Andrew Potter
This was broken before the previous change, since remote_address was just a zero'd out struct.
2014-03-13xfer: Don't use sockaddr_storage for address_lengthAndrew Potter
Hopefully this addresses #25.
2014-03-13exec: switch to exec buffer even if it is already openedSebastien Helleu
2014-03-13exec: add missing empty lines in output of commandsSebastien Helleu
The function weechat_string_split() collapses many separators (here "\n"), so empty lines were removed and not displayed. For example, if output is "Line1\n\nEnd\n", the empty line between "Line1" and "End" was not displayed.
2014-03-13api: add callback in function string_replace_regexSebastien Helleu
2014-03-13exec: disable "output to buffer" if command is executed on an exec bufferSebastien Helleu
2014-03-13exec: add options "-rc"/"-norc" (display return code) in command /execSebastien Helleu
2014-03-13exec: execute commands from input of exec buffersSebastien Helleu
2014-03-12irc: add "#" before any channel in /join, even /join 0 (closes #20)Sebastien Helleu
2014-03-12exec: add options "-ln"/"-noln" (line numbers) in command /execSebastien Helleu
2014-03-12exec: automatically disable shell if command starts with "url:" (URL download)Sebastien Helleu
2014-03-12exec: add options "-buffer" and "-sw"/"-nosw" in command /execSebastien Helleu
2014-03-12exec: add option "-inclose" in command /execSebastien Helleu
2014-03-12exec: add missing completion of "-ns" in command /execSebastien Helleu
2014-03-12exec: add options "-n"/"-ns" in command /exec (display output in a new buffer)Sebastien Helleu
2014-03-12exec: add option exec.command.default_optionsSebastien Helleu
2014-03-12Merge branch 'master' of git://github.com/talisein/weechat-1 into ↵Sebastien Helleu
talisein-master
2014-03-12core: update translationsSebastien Helleu