summaryrefslogtreecommitdiff
path: root/ChangeLog.asciidoc
AgeCommit message (Collapse)Author
2016-01-23relay: 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-23core: fix number of arguments returned by string_splitSé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-17irc: add missing completion "*" for target in command /msgSébastien Helleu
2016-01-17irc: fix /msg command with multiple targets including "*"Sébastien Helleu
2016-01-17core: update ChangeLog (closes #204)Sébastien Helleu
2016-01-10Version 1.4Sébastien Helleu
2016-01-06irc: 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-06core: move line in ChangeLogSébastien Helleu
2016-01-05alias: do not allow slashes and spaces in alias name (closes #646)Sébastien Helleu
2016-01-02irc: evaluate content of server option "addresses"Sébastien Helleu
2015-12-31core: fix execution of empty command nameSébastien Helleu
The strings "/" and "/ " are not considered as valid commands any more.
2015-12-25core: update ChangeLogSébastien Helleu
2015-12-24tests: fix locale used to execute testsSébastien Helleu
2015-12-24core: update ChangeLogSébastien Helleu
2015-12-24core: move lines in ChangeLogSébastien Helleu
2015-12-24irc: move option irc.network.alternate_nick into servers (closes #633)Sébastien Helleu
2015-12-24core: 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-23core: fix memory leak when using multiple "-d" or "-r" in command line argumentsSébastien Helleu
2015-12-20core: update ChangeLog (closes #351)Sébastien Helleu
2015-12-20core: update ChangeLog (closes #347)Sébastien Helleu
2015-12-18core: add info about SNI in ChangeLogSébastien Helleu
2015-12-15core: add issue #260 in ChangeLogSébastien Helleu
2015-12-10irc: add support of SNI in SSL connection to IRC server (closes #620)Sébastien Helleu
2015-12-09script: add completion with languages and extensions, support search by ↵Sébastien Helleu
language/extension in /script search
2015-12-06core: add names for anchors in ChangeLogSébastien Helleu
2015-12-02fifo: add /fifo commandSébastien Helleu
2015-11-24irc: add a condition for colon before the password in PASS message (issue #602)Sébastien Helleu
Some weird IRC servers may refuse a PASS command with a colon, so we send a colon only if the password contains spaces or begins with a colon.
2015-11-24irc: add a missing colon before the password in PASS message (closes #602)Sébastien Helleu
2015-11-17irc: use current channel and current server channels first in completions ↵Sébastien Helleu
"irc_channels" and "irc_server_channels" (closes #392)
2015-11-16irc: use current channel first in completion "irc_channels" (task #12923, ↵Sébastien Helleu
issue #392)
2015-11-12core: add "tmux" and "tmux-256color" in supported $TERM values (closes #519)Sébastien Helleu
2015-10-27ruby: fix load of scripts requiring "uri" (closes #433)Sébastien Helleu
2015-10-25core: update ChangeLogSébastien Helleu
2015-10-19core: update ChangeLogSébastien Helleu
2015-10-19core: update ChangeLogSébastien Helleu
2015-10-03core: add option weechat.look.paste_auto_add_newline (closes #543)Sébastien Helleu
2015-09-30core: update ChangeLog (issue #541)Sébastien Helleu
2015-09-29core: add Czech man page and quickstart guide in ChangeLog (issue #490)Sébastien Helleu
2015-09-12alias: display completion in /alias list (closes #518)Sébastien Helleu
2015-09-09core: display a more explicit error when a filter fails to be added (closes ↵Sébastien Helleu
#522)
2015-09-08irc: fix charset decoding in incoming private messages (closes #520)Sébastien Helleu
2015-09-07ruby: fix Ruby detection when pkg-config is not installedSébastien Helleu
The package "pkgconf" is not installed by default on FreeBSD 10.2, so the detection of Ruby was failing.
2015-08-24script: add option script.scripts.download_timeoutSébastien Helleu
2015-08-24api: fix handle of invalid escape in function string_convert_escaped_chars()Sébastien Helleu
And a new test is now checking that "\" returns "".
2015-08-24irc: add command /cap (closes #8)Sébastien Helleu
2015-08-23relay: display the arrow before client id and protocol in raw bufferSébastien Helleu
This prevents the arrow to be truncated if the option weechat.look.prefix_align_max is set to a non-zero value.
2015-08-23irc: display the arrow before server name in raw bufferSébastien Helleu
This prevents the arrow to be truncated if the option weechat.look.prefix_align_max is set to a non-zero value.
2015-08-23core: fix truncated messages after a word with a length of zero on screen ↵Sébastien Helleu
(bug #40985, issue #502)
2015-08-22irc: add hex dump of messages in raw bufferSébastien Helleu
The dump of messages is displyed when the debug is enabled for irc plugin (level 2 or more), for example: /debug set irc 2
2015-08-22api: add function string_hex_dump()Sébastien Helleu