summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-09-09core: display a more explicit error when a filter fails to be added (closes ↵Sébastien Helleu
#522)
2015-09-08doc: update Japanese auto-generated filesSébastien Helleu
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-09-06doc: add translations in question about SSL problems (FAQ)Sébastien Helleu
2015-09-04doc: fix "I have SSL problems"Mikaela Suomalainen
1. Freenode supports DH size 2048 nowadays, so change the network to example. 2. Freenode has valid SSL certificate, so also change that network to example. 3. Mention irc.server.example.ssl_fingerprint. I used SHA512 sum of weechat.org's certificate as it was the first one to come to mind.
2015-08-26Merge pull request #504 from l/translation_jaSébastien Helleu
core: update Japanese translations
2015-08-26core: update Japanese translationsAYANOKOUZI, Ryuunosuke
2015-08-25irc: remove blank line at the end of fileSébastien Helleu
2015-08-24script: add option script.scripts.download_timeoutSébastien Helleu
2015-08-24doc: update German auto-generated filesSébastien Helleu
2015-08-24core: update German translationsNils Görs
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: fix typos in /help ban and /help quietSébastien Helleu
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-22doc: update Japanese auto-generated filesSébastien Helleu
2015-08-22Merge pull request #500 from l/translation_jaSébastien Helleu
core: update Japanese translations
2015-08-22doc: update default search bind in Italian FAQSébastien Helleu
2015-08-22Merge pull request #497 from sim642/faq-search-hereSébastien Helleu
doc: update default search bind in FAQ
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-22relay: use API function string_hex_dump() to display raw messageSébastien Helleu
2015-08-22api: add function string_hex_dump()Sébastien Helleu
2015-08-22irc: fix display of messages sent to server in raw bufferSébastien Helleu
Since the received messages are displayed without UTF-8 conversion (ie this is really the data received), it is consistent to display the message really sent to server (ie after charset conversion), instead of the UTF-8 internal message.
2015-08-22irc: fix display of invalid UTF-8 chars in raw bufferSébastien Helleu
Invalid UTF-8 chars are now displayed as hexadecimal codes, for example: "test\xE9" instead of "test?" (the real word being "testé").
2015-08-22Merge pull request #495 from sim642/uptime-oSébastien Helleu
core: fix "/uptime -o" output for 0 days
2015-08-22core: update Japanese translationsAYANOKOUZI, Ryuunosuke
2015-08-21doc: remove trailing whitespace in Polish FAQSébastien Helleu
2015-08-20doc: update default search bind in FAQSimmo Saan
2015-08-20doc: remove blank lines at end of auto-generated filesSébastien Helleu
2015-08-19core: remove carriage returns in weechat.xpmSébastien Helleu
2015-08-18core: fix /uptime output for 0 daysSimmo Saan
2015-08-18api: add argument "length" in function utf8_is_valid()Sébastien Helleu
2015-08-16core: rename "scripts" directory to "build-scripts"Sébastien Helleu
2015-08-16Version 1.4-devSébastien Helleu
2015-08-16Version 1.3Sébastien Helleu
2015-08-16core: add note about new option irc.network.channel_encode in release notesSébastien Helleu
2015-08-16core: update Czech translationsOndřej Súkup
2015-08-15doc: update German auto-generated filesSébastien Helleu
2015-08-15core: update German translationsNils Görs
2015-08-15irc: update help on option irc.network.channel_encode (issue #218, issue #482)Sébastien Helleu
Remove mention of WeeChat <= 1.2 since the behavior is not exactly the same as old versions (when the option is enabled): only the channel/message are decoded/encoded and not the nick/host.
2015-08-14Version 1.3-rc2Sébastien Helleu
2015-08-14irc: add option irc.network.channel_encode (issue #218, issue #482)Sébastien Helleu
This is a workaround (disabled by default) to join and chat on ISO encoded channels (or another charset different from UTF-8). This option may be removed in future if a better solution is implemented.
2015-08-14doc: update Polish auto-generated filesSébastien Helleu
2015-08-14doc: update polish translationKrzysztof Korościk
2015-08-14weechat: polish translation updateKrzysztof Korościk
2015-08-13python: fix cppcheck error on variable "python2_bin" (closes #486)Sébastien Helleu
This fixes only a wrong error report from cppcheck, there was no problem in code with the variable "python2_bin".
2015-08-13api: add missing function infolist_search_var() in script API (issue #484)Sébastien Helleu