summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-07-12core: update Japanese translationsAYANOKOUZI, Ryuunosuke
2018-07-11irc: add nick, host and log tags in message displayed in private buffer when ↵Sébastien Helleu
the nick comes back on the server (closes #1221)
2018-07-10buflist: fix crash when setting the option buflist.look.signals_refresh with ↵Sébastien Helleu
a list of signals
2018-07-09doc: update Polish auto-generated filesSébastien Helleu
2018-07-09po: updated polish translationKrzysztof Korościk
2018-07-08doc: updated polish translationKrzysztof Korościk
2018-07-08core: add contributor in AUTHORS.adoc (issue #1216)Sébastien Helleu
2018-07-08core: split issue template into 3 files (bug report, feature request, question)Jos Ahrens
2018-07-08Version 2.2-rc1Sébastien Helleu
2018-07-08fset: fix memory leak when switching the format with ctrl-XSébastien Helleu
2018-07-08fset: fix truncation of option values when the length is greater than 4096 ↵Sébastien Helleu
(closes #1218)
2018-07-07doc: update German documentationNils Görs
2018-07-07doc: use /unset command instead of /set xxx null (quickstart guide)Sébastien Helleu
2018-07-07doc: add default triggers in user's guideSébastien Helleu
2018-07-01relay: fix socket creation for relay server on OpenBSD (closes #1213)Sébastien Helleu
The socket option IPV6_V6ONLY is not needed on OpenBSD and must not be set (it is read-only).
2018-06-24irc: add channel color in message 354 with missing parameters (issue #1212)Sébastien Helleu
2018-06-24irc: do not display message 354 with missing parameters if there's an ↵Sébastien Helleu
automatic check of WHOX on the channel (issue #1212)
2018-06-23irc: display message 354 (WHOX) received with missing parameters (closes #1212)Sébastien Helleu
2018-06-22core: add default value of option weechat.look.hotlist_add_conditions in ↵Sébastien Helleu
release notes
2018-06-17core: update ChangeLog (issue #1208)Sébastien Helleu
2018-06-17core: add contributor in AUTHORS.adoc (issue #1208)Sébastien Helleu
2018-06-15Update configure.ac for v8 pluginChris Hills
Explicitly link with -lpthread to fix detection and compilation on some Linux distributions.
2018-06-15doc: update German documentationNils Görs
2018-06-15doc: update auto-generated filesSébastien Helleu
2018-06-14core: update German translationsNils Görs
2018-06-14core: change default value of option weechat.look.hotlist_add_conditions ↵Sébastien Helleu
(closes #1206) Now if there are at least one relay client connected via weechat protocol, the buffer is always added to the hotlist.
2018-06-14relay: add filtering on protocol in info "relay_client_count" (issue #1206)Sébastien Helleu
2018-06-14core: add key alt+"-" in /help filterSébastien Helleu
2018-06-13core: update ChangeLogSébastien Helleu
2018-06-13Merge remote-tracking branch 'origin/pr/1196'Sébastien Helleu
2018-06-11fset: fix crash when applying filters after closing the fset buffer (closes ↵Sébastien Helleu
#1204)
2018-06-11doc: add gnome-terminal option in question about weird chars on screen (FAQ)Sébastien Helleu
2018-06-10doc: update Japanese auto-generated filesSébastien Helleu
2018-06-10Merge pull request #1203 from l/master/translation/ja_JPSébastien Helleu
core: update Japanese translations
2018-06-11core: update Japanese translationsAYANOKOUZI, Ryuunosuke
2018-06-02doc: update German auto-generated fileSébastien Helleu
2018-06-02core: update German translationsNils Görs
2018-06-02core: add reverse of string in evaluation of expressions with "rev:" (closes ↵Sébastien Helleu
#1200)
2018-06-02tests: add missing tests on function string_cutSébastien Helleu
2018-06-02core: count number of chars instead of bytes for suffix in function string_cutSébastien Helleu
2018-06-02core: return NULL in function string_cut if string is NULLSébastien Helleu
2018-06-02tests: fix test of function utf8_strlen_screen on Han char (U+24B62)Sébastien Helleu
2018-05-31trigger: hide password in display of command "/msg nickserv set password", ↵Sébastien Helleu
support the option "-server xxx"
2018-05-31trigger: hide password in command "/msg nickserv set password"Sébastien Helleu
2018-05-31core: send buffer pointer (when possible) in signal "hotlist_changed" ↵Sébastien Helleu
(closes #1133) When a buffer is added or updated in the hotlist, the buffer pointer is sent. When the hotlist is cleared or resorted, the buffer pointer is NULL.
2018-05-26doc: update Japanese auto-generated filesSébastien Helleu
2018-05-26Merge pull request #1199 from l/master/translation/ja_JPSébastien Helleu
core: update Japanese translations
2018-05-26core: update Japanese translationsAYANOKOUZI, Ryuunosuke
2018-05-22core: fix delete of previous/next word (keys Ctrl+w and Alt+d) (closes #1195)Sébastien Helleu
2018-05-22core: unhook TLS handshake fd before calling connect callbackSimon Arlott
When there are multiple addresses for a server and a TLS handshake failure occurs, the next server in the list will connect and then timeout without performing any TLS handshake. This is because irc_server_close_connection closes server->sock so the next pipe to be created reuses that fd, but the hook for the handshake fd still exists when the next connection attempt is started. The hook for network_connect_child_read_cb is never added because a hook for the reused fd number still exists. Resolve this by removing the handshake hook before calling the connect callback.