summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-13core: update ChangeLog (closes #24)Sebastien Helleu
2014-03-13core: fix highlight problem with "(?-i)" and upper case letters in option ↵Sebastien Helleu
weechat.look.highlight
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-12core: update ChangeLogSebastien Helleu
2014-03-12core: use glibtoolize on mac instead of libtoolizeFredrik Fornwall
2014-03-12core: assume iconv usability when cross compilingFredrik Fornwall
AC_TRY_RUN needs a fallback action when cross compiling.
2014-03-12irc: add "#" before any channel in /join, even /join 0 (closes #20)Sebastien Helleu
2014-03-12core: update translationsnils_2
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-12core: update ChangeLogSebastien Helleu
2014-03-12Merge branch 'master' of git://github.com/talisein/weechat-1 into ↵Sebastien Helleu
talisein-master
2014-03-12core: update ChangeLogSebastien Helleu
2014-03-12core: update translationsSebastien Helleu
2014-03-12irc: display output of CAP LIST in server buffer (closes #10)Shawn Smith
2014-03-11xfer: Fix xfer.network.own_ip behaviorAndrew Potter
Fixes #5. xfer shouldn't try to bind() to the own_ip address. Instead, always bind to the same local address that is connected to the irc server, and just change the out_addr if own_ip is used. Also fixes a memory leak in error path.
2014-03-11core: add missing \0 at the end of stderr buffer in hook_processSebastien Helleu
2014-03-11exec: fix crash when giving bad id to command /exec -inSebastien Helleu
2014-03-11exec: add option "-del" in command /execSebastien Helleu
2014-03-11exec: add option "-bg" in command /execSebastien Helleu
2014-03-11exec: update plugin API versionSebastien Helleu
2014-03-11exec: fix typos in /help execSebastien Helleu
2014-03-11exec: add option "-set" in command /execSebastien Helleu
2014-03-11exec: replace number by id in /help execSebastien Helleu
2014-03-11exec: add list of signal names in /help execSebastien Helleu
2014-03-11exec: implement options -signal/-kill/-killall in command /execSebastien Helleu
2014-03-11exec: remove error prefix in case of unexpected end of a commandSebastien Helleu
2014-03-11exec: display command return code after output (stdout/stderr)Sebastien Helleu
2014-03-11exec: add tag "exec_rc" for line with command return code, remove empty line ↵Sebastien Helleu
displayed before
2014-03-11exec: add exec pluginSebastien Helleu
2014-03-11api: add option "detached" in function hook_process_hashtableSebastien Helleu
2014-03-11relay: search buffers by full nameSebastien Helleu
2014-03-11fifo: search buffer by full name when text is received in pipeSebastien Helleu
2014-03-11api: add support of case insensitive search and search by buffer full name ↵Sebastien Helleu
in function buffer_search (bug #34318)
2014-03-11core: update translationsSebastien Helleu
2014-03-11api: add option "signal" in function hook_set to send a signal to the child ↵Sebastien Helleu
process
2014-03-11core: fix detection of terminated process in hook_processSebastien Helleu
Check if the process is finished, even if stdout/stderr are not closed. Moreover, if the process was terminated by a signal, the return code is set to WEECHAT_HOOK_PROCESS_ERROR.
2014-03-10trigger: add plugin name in error messagesSebastien Helleu