Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-11 | irc: use upper case for SASL in messages displayed | 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 | Merge remote-tracking branch 'origin/pr/680' | Sébastien Helleu | |
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-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 | 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-01-31 | core: fix typo in a comment | Sébastien Helleu | |
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 | 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 | 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 | 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 | |||
2016-01-15 | Add extern keyword several places to link in osx | Luis Colorado | |
2016-01-06 | core: remove unused option weechat.color.nicklist_offline | Simmo Saan | |
Added in c1c1005b364d28409339f46b5233bcb0f2f86ed7. | |||
2016-01-06 | irc: fix channel forwarding (closes #643) | Sébastien Helleu | |
The problem happens when the option irc.look.buffer_open_before_{autojoin|join} is on. | |||
2016-01-05 | trigger: add info in error messages | Sébastien Helleu | |
2016-01-05 | alias: do not allow slashes and spaces in alias name (closes #646) | Sébastien Helleu | |
2016-01-03 | irc: remove argument "clear" from command /cap (issue #8, closes #641) | Sébastien Helleu | |
2016-01-02 | irc: evaluate content of server option "addresses" | Sébastien Helleu | |
2016-01-01 | core: update copyright dates | Sébastien Helleu | |
2015-12-31 | core: fix execution of empty command name | Sébastien Helleu | |
The strings "/" and "/ " are not considered as valid commands any more. | |||
2015-12-24 | irc: fix typo | Sébastien Helleu | |
2015-12-24 | Merge pull request #634 from KamranMackey/fix-typo-in-weelog | Sébastien Helleu | |
core: fix typo in message displayed when the log file is locked | |||
2015-12-24 | irc: move option irc.network.alternate_nick into servers (closes #633) | Sébastien Helleu | |
2015-12-24 | Fixed a typo in wee-log.c | Kamran Mackey | |
Signed-off-by: Kamran Mackey <kamranm1200@gmail.com> | |||
2015-12-24 | core: add a parent name in options (closes #629) | Sébastien Helleu | |
Inherited values are now displayed in /set output when the value is null, if a parent option name is defined in option. New option: weechat.color.chat_value_null | |||
2015-12-23 | core: free global variables at the very end | Sébastien Helleu | |
2015-12-23 | core: fix memory leak when using multiple "-d" or "-r" in command line arguments | Sébastien Helleu | |
2015-12-20 | irc: add default color for +y mode prefix | Christine Dodrill | |
2015-12-20 | Merge pull request #626 from sunpoet/master | Sébastien Helleu | |
javascript: fix build on FreeBSD | |||
2015-12-20 | irc: add missing field realname in function irc_nick_print_log() | Sébastien Helleu | |
2015-12-20 | irc: fix comments | Sébastien Helleu | |
2015-12-20 | irc: fix long line | Sébastien Helleu | |
2015-12-20 | irc: fix condition in account message callback | Sébastien Helleu | |
2015-12-20 | Merge remote-tracking branch 'origin/pr/351' | Sébastien Helleu | |
2015-12-20 | relay: add option relay.irc.backlog_since_last_message | Nick | |