summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-20doc: update German auto-generated filesSébastien Helleu
2019-02-20core: update German translationsNils Görs
2019-02-20core: update German translationsNils Görs
2019-02-19core: add command to change key alt+s in release notesSébastien Helleu
2019-02-19core: add command /spell and default key alt+s in release notesSébastien Helleu
2019-02-19core: add reason of aspell renaming in release notesSébastien Helleu
2019-02-19core: add extra instructions about spell plugin in release notesSébastien Helleu
2019-02-19core: update translations (issue #1299)Sébastien Helleu
2019-02-19core: force new API version to prevent the old aspell plugin to load (issue ↵Sébastien Helleu
#1299)
2019-02-19spell: rename "aspell" plugin to "spell" (issue #1299)Sébastien Helleu
The following things have been renamed: - file aspell.conf -> spell.conf - options aspell.* -> spell.* - bar item aspell_dict -> spell_dict - bar item and local variable aspell_suggest -> spell_suggest - info aspell_dict -> spell_dict
2019-02-19core: update ChangeLog (issue #1306, issue #1307)Sébastien Helleu
2019-02-19Merge remote-tracking branch 'origin/pr/1307'Sébastien Helleu
2019-02-18core: fix compilation on Mac OS (closes #1308)Sébastien Helleu
This adds the missing include "unistd.h" for function "mkdtemp" (required on Mac OS only).
2019-02-18aspell: optimize stripping of nick_completer (issue #1306)Simmo Saan
2019-02-18aspell: strip trailing spaces from nick_completer (closes #1306)Simmo Saan
2019-02-17Version 2.5-devSébastien Helleu
2019-02-17Version 2.4Sébastien Helleu
2019-02-16core: add contributor in AUTHORS.adoc (issue #1304)Sébastien Helleu
2019-02-16Merge pull request #1304 from ZethJack/patch-1Sébastien Helleu
Fix czech translation kick message
2019-02-15Fix czech translation kick messageZethJack
original: <op> byl vykopnut <user> results in confusing message caused by mistranslation: op was kicked user proposed fix: <op> vykopnul <user> should result in more understandeable message: op has kicked user
2019-02-09doc: update Polish auto-generated filesSébastien Helleu
2019-02-09updated polish translationKrzysztof Korościk
2019-02-09doc: updated polish translationKrzysztof Korościk
2019-02-04Version 2.4-rc1Sébastien Helleu
2019-02-04irc: fix parsing of whois messages in notifySébastien Helleu
2019-02-03core: update translationsSébastien Helleu
2019-02-03Merge pull request #1301 from arza-zara/typosSébastien Helleu
Fix typo "part or words" -> "part of words"
2019-02-03Fix typo "part or words" -> "part of words"arza
2019-02-03Merge pull request #1300 from l/master/translation/ja_JPSébastien Helleu
core: update Japanese translations
2019-02-03core: update Japanese translationsAYANOKOUZI, Ryuunosuke
2019-01-31core: add "travis_retry" on commands that can fail due to network error ↵Sébastien Helleu
(Travis CI)
2019-01-31doc: remove obsolete note about gcrypt in chapter on IRC SASL authentication ↵Sébastien Helleu
(user's guide)
2019-01-31irc: fix crash in parsing of IRC channel modes (issue #1296, closes #1297)Sébastien Helleu
Regression was introduced by commit b38b2abe3b397af1133951fb5326cc5cbb80807e.
2019-01-29irc: fix parsing of MODE, 341 (invite) and CHGHOST commands when there are ↵Sébastien Helleu
colons (closes #1296)
2019-01-28relay: fix crash on /upgrade when the real IP is not set (closes #1294)Sébastien Helleu
2019-01-27doc: update German documentationNils Görs
2019-01-27doc: add example with command "/input set_unread" in question about terminal ↵Sébastien Helleu
focus (issue #1295)
2019-01-27aspell: look for suggestions only if the misspelled word has changed (closes ↵Sébastien Helleu
#1175)
2019-01-26aspell: set a misspelled word without suggestions in local variable ↵Nils Görs
"aspell_suggest" (closes #1288)
2019-01-26core: fix sentence in release notesSébastien Helleu
2019-01-26core: 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-26core: fix compilation of empty regular expression (not allowed on FreeBSD)Sébastien Helleu
2019-01-26doc: fix regex examples to be compatible with FreeBSDSé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-26tests: fix evaluation tests on FreeBSDSé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-26tests: fix UTF-8 tests on FreeBSDSé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-20script: add missing input actions "A" and "v" in /help scriptSébastien Helleu
2019-01-20tests: fix link of tests on GNU Hurd and FreeBSDSébastien Helleu
2019-01-20tests: add missing include of stdio.hSébastien Helleu
2019-01-20tests: add tests on IRC color functionsSébastien Helleu
Functions tested: - irc_color_decode - irc_color_encode - irc_color_decode_ansi
2019-01-20irc: return IRC color code instead of WeeChat color code when decoding a too ↵Sébastien Helleu
short ANSI color sequence