Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-02-09 | doc: updated polish translation | Krzysztof Korościk | |
2019-02-04 | Version 2.4-rc1 | Sébastien Helleu | |
2019-02-04 | irc: fix parsing of whois messages in notify | Sébastien Helleu | |
2019-02-03 | core: update translations | Sébastien Helleu | |
2019-02-03 | Merge pull request #1301 from arza-zara/typos | Sébastien Helleu | |
Fix typo "part or words" -> "part of words" | |||
2019-02-03 | Fix typo "part or words" -> "part of words" | arza | |
2019-02-03 | Merge pull request #1300 from l/master/translation/ja_JP | Sébastien Helleu | |
core: update Japanese translations | |||
2019-02-03 | core: update Japanese translations | AYANOKOUZI, Ryuunosuke | |
2019-01-31 | core: add "travis_retry" on commands that can fail due to network error ↵ | Sébastien Helleu | |
(Travis CI) | |||
2019-01-31 | doc: remove obsolete note about gcrypt in chapter on IRC SASL authentication ↵ | Sébastien Helleu | |
(user's guide) | |||
2019-01-31 | irc: fix crash in parsing of IRC channel modes (issue #1296, closes #1297) | Sébastien Helleu | |
Regression was introduced by commit b38b2abe3b397af1133951fb5326cc5cbb80807e. | |||
2019-01-29 | irc: fix parsing of MODE, 341 (invite) and CHGHOST commands when there are ↵ | Sébastien Helleu | |
colons (closes #1296) | |||
2019-01-28 | relay: fix crash on /upgrade when the real IP is not set (closes #1294) | Sébastien Helleu | |
2019-01-27 | doc: update German documentation | Nils Görs | |
2019-01-27 | doc: add example with command "/input set_unread" in question about terminal ↵ | Sébastien Helleu | |
focus (issue #1295) | |||
2019-01-27 | aspell: look for suggestions only if the misspelled word has changed (closes ↵ | Sébastien Helleu | |
#1175) | |||
2019-01-26 | aspell: set a misspelled word without suggestions in local variable ↵ | Nils Görs | |
"aspell_suggest" (closes #1288) | |||
2019-01-26 | core: fix sentence in release notes | Sébastien Helleu | |
2019-01-26 | core: do not automatically add a space when completing "nick:" at the ↵ | Sébastien Helleu | |
beginning of command line The space can be added in option weechat.completion.nick_completer (this is now the default value of the option): /set weechat.completion.nick_completer ": " | |||
2019-01-26 | core: fix compilation of empty regular expression (not allowed on FreeBSD) | Sébastien Helleu | |
2019-01-26 | doc: fix regex examples to be compatible with FreeBSD | Sébastien Helleu | |
The following special sequences are not supported in regular expressions on FreeBSD: - "\w": replaced with "[a-zA-Z0-9_]" - "\S": replaced with "[^ ]" (it should be "[^ \t\n\r\f\v]", but in practice only spaces could be a problem when we use this sequence). | |||
2019-01-26 | tests: fix evaluation tests on FreeBSD | Sébastien Helleu | |
The following special sequences are not supported in regular expressions on FreeBSD: - "\w": replaced with "[a-zA-Z0-9_]" - "\S": replaced with "[^ ]" (it should be "[^ \t\n\r\f\v]", but in practice only spaces could be a problem when we use this sequence). | |||
2019-01-26 | tests: fix UTF-8 tests on FreeBSD | Sébastien Helleu | |
Tests for size on screen are made on U+2EE9 (CJK Radical Simplified Yellow) instead of U+24B62 (CJK Unified Ideograph-24B62) which returns a length of 1 on FreeBSD and 2 on Linux. | |||
2019-01-20 | script: add missing input actions "A" and "v" in /help script | Sébastien Helleu | |
2019-01-20 | tests: fix link of tests on GNU Hurd and FreeBSD | Sébastien Helleu | |
2019-01-20 | tests: add missing include of stdio.h | Sébastien Helleu | |
2019-01-20 | tests: add tests on IRC color functions | Sébastien Helleu | |
Functions tested: - irc_color_decode - irc_color_encode - irc_color_decode_ansi | |||
2019-01-20 | irc: return IRC color code instead of WeeChat color code when decoding a too ↵ | Sébastien Helleu | |
short ANSI color sequence | |||
2019-01-20 | irc: fix encoding of italic attribute when colors are removed | Sébastien Helleu | |
2019-01-20 | buflist: add alternate key codes for alt-F1/alt-F2 (xterm) | Sébastien Helleu | |
2019-01-20 | buflist: fix typo on key code for ctrl-F2 | Sébastien Helleu | |
2019-01-20 | buflist: add default keys ctrl-F1/F2 to scroll up/down one page in buflist ↵ | Sébastien Helleu | |
(same action as F1/F2) | |||
2019-01-20 | core: add default keys ctrl-F11/F12 to scroll up/down one page in nicklist ↵ | Sébastien Helleu | |
(same action as F11/F12) | |||
2019-01-20 | buflist: add alternate key codes for F1/F2 and alt-F1/alt-F2 (compatibility ↵ | Sébastien Helleu | |
with terminals) | |||
2019-01-13 | irc: fix compiler warning on GNU Hurd | Sébastien Helleu | |
This fixes the following warning: irc-ctcp.c:411:46: warning: '%s' directive output may be truncated writing up to 1023 bytes into a region of size between 0 and 1023 [-Wformat-truncation=] | |||
2019-01-13 | doc: add missing file test-irc-protocol.cpp in developer's guide | Sébastien Helleu | |
2019-01-13 | irc: do not use strptime to parse a time as float number (issue #1289) | Sébastien Helleu | |
2019-01-13 | core: update ChangeLog | Sébastien Helleu | |
2019-01-13 | tests: add tests on function irc_protocol_parse_time | Sébastien Helleu | |
2019-01-13 | irc: check return code of calls to strptime (issue #1289) | Sébastien Helleu | |
2019-01-12 | doc: update German documentation | Nils Görs | |
2019-01-12 | doc: add question about autojoin option in FAQ (closes #1287) | Sébastien Helleu | |
2019-01-11 | irc: fix parsing of "time" message tag on FreeBSD (issue #1289) | Sébastien Helleu | |
2019-01-11 | tests: add tests on function irc_config_check_autojoin | Sébastien Helleu | |
2019-01-08 | debian: switch debhelper compatibility to 12 | Sébastien Helleu | |
2019-01-08 | debian: bump Standards-Version to 4.3.0 | Sébastien Helleu | |
2019-01-01 | core: update copyright dates | Sébastien Helleu | |
2018-12-24 | core: remove obsolete directory from .gitattributes | Sébastien Helleu | |
2018-12-22 | doc: update German auto-generated file | Sébastien Helleu | |
2018-12-22 | core: update German translations | Nils Görs | |