Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-12 | core: update German translations | Nils Görs | |
2016-02-12 | core: add note about options to save config/layout on exit in help of ↵ | Sébastien Helleu | |
commands /layout, /save and /quit (closes #687) | |||
2016-02-12 | core: update Japanese translations | AYANOKOUZI, Ryuunosuke | |
2016-02-11 | irc: use upper case for SASL in messages displayed | Sébastien Helleu | |
2016-02-10 | doc: update German auto-generated files | Sébastien Helleu | |
2016-02-10 | core: update German translations | Nils Görs | |
2016-02-09 | doc: update Japanese auto-generated files | Sébastien Helleu | |
2016-02-08 | relay: fix the max number of clients connected on a port, allow value 0 for ↵ | Sébastien Helleu | |
"no limit" (closes #669) | |||
2016-02-07 | core: fix update of window title under tmux (closes #685) | Sébastien Helleu | |
2016-02-07 | core: update ChangeLog | Sébastien Helleu | |
2016-02-07 | Merge remote-tracking branch 'origin/pr/680' | Sébastien Helleu | |
2016-02-07 | core: add contributor in AUTHORS.asciidoc | Sébastien Helleu | |
2016-02-07 | core: add issue #676 in ChangeLog | Sébastien Helleu | |
2016-02-07 | core: fix detection of python shared libraries | Shane McCarron | |
2016-02-06 | relay: do not print final '\0' in raw message for a websocket PING message ↵ | Sébastien Helleu | |
received | |||
2016-02-06 | relay: fix websocket frame decoding, answer a PONG to PING (closes #675) | Sébastien Helleu | |
2016-02-06 | core: add issue #511 in ChangeLog | Sébastien Helleu | |
2016-02-05 | xfer: ignore signals when polling socket during file receive (closes #677) | Simmo Saan | |
When signals (e.g. SIGWINCH for terminal resize) are fired they cause poll to fail with EINTR, erroring file receival even when there wasn't a problem with it. This patch adds additional checks for EINTR and EAGAIN that cause retry of poll, since both are unrelated to actual file receival. | |||
2016-02-05 | core: add contributor in AUTHORS.asciidoc | Sébastien Helleu | |
2016-02-05 | core: update ChangeLog and release notes | Sébastien Helleu | |
2016-02-05 | trigger: fix long lines | Sébastien Helleu | |
2016-02-05 | Merge pull request #511 from juanfra684/patch-1 | Sébastien Helleu | |
trigger: add recover to cmd_pass/msg_auth, and regain to msg_auth | |||
2016-02-04 | relay: fix comment | Sébastien Helleu | |
2016-02-02 | relay: fix typo in a comment | Sébastien Helleu | |
2016-02-01 | Python plugin shared libraries missing | Shane McCarron | |
When linking against a python with shared libraries, this script ONLY asked for the LD flags, not any additional libraries. This could result in a condition where required libraries (such as libutil on Centos 6.7 against Python 2.7) are not loaded and the load of the plugin thus fails. This change asks the python being linked against which libraries it was linked using, and then ensures those are also linked against by the python plugin for weechat. | |||
2016-01-31 | core: fix typo in a comment | Sébastien Helleu | |
2016-01-30 | doc: fix typo in English quickstart guide | Sébastien Helleu | |
2016-01-30 | core: update German translations | Nils Görs | |
2016-01-29 | doc: add secured data in quickstart guide | Sébastien Helleu | |
2016-01-27 | Merge pull request #670 from l/translation_ja | Sébastien Helleu | |
core: update Japanese translations | |||
2016-01-27 | core: update Japanese translations | AYANOKOUZI, Ryuunosuke | |
2016-01-24 | doc: add an example in function string_split (plugin API reference) | Sébastien Helleu | |
2016-01-23 | relay: fix command "input" received from clients (weechat protocol) (closes ↵ | Sébastien Helleu | |
#663) The command "input" received with only spaces in content of message was ignored by WeeChat (because of the split on spaces). | |||
2016-01-23 | tests: add tests on string_split() with keep_eol set to 2 | Sébastien Helleu | |
2016-01-23 | core: fix number of arguments returned by string_split | Sébastien Helleu | |
When keep_eol is 2 and separators are found at the end of string, the function returned argc + 1 instead of argc. | |||
2016-01-17 | core: fix French translation of /help ctcp | Sébastien Helleu | |
2016-01-17 | doc: update German auto-generated files | Sébastien Helleu | |
2016-01-17 | core: update German translations | Nils Görs | |
2016-01-17 | irc: add missing completion "*" for target in command /msg | Sébastien Helleu | |
2016-01-17 | irc: fix /msg command with multiple targets including "*" | Sébastien Helleu | |
2016-01-17 | core: update ChangeLog (closes #204) | Sébastien Helleu | |
2016-01-17 | core: update translations | Sébastien Helleu | |
2016-01-17 | irc: add examples in /help ctcp | Sébastien Helleu | |
2016-01-17 | irc: add a constant with list of supported CTCPs for completion in command /ctcp | Sébastien Helleu | |
2016-01-17 | irc: add missing completion "*" for target in command /ctcp | Sébastien Helleu | |
2016-01-17 | irc: do not exit from function in case of error with "ctcp *" | Sébastien Helleu | |
When "*" is a target in the middle of a list, for example "#chan1,*,#chan2", if there's an error with "*", the CTCP should be sent to #chan1 and #chan2, even if "*" fails (and not only #chan1 like it was previously). | |||
2016-01-17 | irc: free allocated memory in case of early exit from the function | Sébastien Helleu | |
2016-01-17 | irc: fix code style | Sébastien Helleu | |
2016-01-17 | Merge remote-tracking branch 'origin/pr/493' | Sébastien Helleu | |
2016-01-16 | Merge pull request #656 from mojadita/some-externs-missing-for-osx-compiling | Sébastien Helleu | |
Add extern keyword several places to link in osx |