Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-15 | core: add comments in function to print a line | Sébastien Helleu | |
2018-08-15 | core: fix destruction of line prefix in weechat_print modifier | Sébastien Helleu | |
2018-08-15 | core: fix comparison of strings in weechat_print modifier | Sébastien Helleu | |
2018-08-15 | trigger: add missing initialization of variable "tags" in hook line callback | Sébastien Helleu | |
2018-08-15 | api: fix memory leak in function string_split | Sébastien Helleu | |
2018-08-15 | trigger: fix memory leak in hook_line trigger callback | Sébastien Helleu | |
2018-08-15 | core: fix memory leak when removing a line hook | Sébastien Helleu | |
2018-08-15 | trigger: add missing values for line trigger | Sébastien Helleu | |
2018-08-14 | core: fix type of variables "buffer_name" and "buffer_type" sent to the ↵ | Sébastien Helleu | |
hook_line callback | |||
2018-08-14 | core: split wee-hook.c into multiple sources | Sébastien Helleu | |
2018-08-12 | api: add function hook_line | Sébastien Helleu | |
2018-08-12 | core: fix check of tags in lines | Sébastien Helleu | |
All changes: - fix check of tags in lines: check lines without tags, fix check of tags with negation ("!tag") - add string functions string_split_tags and string_free_split_tags - add tests on function gui_line_match_tags | |||
2018-07-27 | Merge pull request #1225 from weechatter/partial_completion | Sébastien Helleu | |
gui: fix uncleared completion item (#1162) | |||
2018-07-27 | core: allow partial buffer name in command /buffer close (closes #1226) | Sébastien Helleu | |
2018-07-25 | scripts: fix duplicated lines in output of script eval (python, perl, ruby, ↵ | Sébastien Helleu | |
lua and guile) When there was a call to a hook callback during the eval, the output buffer was cleared too late, and displayed multiple times in the buffer. This commit clears the buffer even before we display it (this display can trigger a hook callback). | |||
2018-07-21 | gui: fix uncleared completion item (#1162) | Nils Görs | |
2018-07-15 | core: send signal "key_pressed" for mouse code only if the string is UTF-8 ↵ | Sébastien Helleu | |
valid (closes #1220) | |||
2018-07-15 | core: improve instructions to report the crash | Jos Ahrens | |
2018-07-13 | lua: fix macros used to return values | Sébastien Helleu | |
2018-07-13 | relay: fix compiler warnings on calls to snprintf | Sébastien Helleu | |
2018-07-13 | core: fix compiler warnings on calls to snprintf | Sébastien Helleu | |
2018-07-12 | python: fix crash when loading a script with Python >= 3.7 (closes #1219) | Sébastien Helleu | |
2018-07-11 | irc: 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-10 | buflist: fix crash when setting the option buflist.look.signals_refresh with ↵ | Sébastien Helleu | |
a list of signals | |||
2018-07-08 | fset: fix memory leak when switching the format with ctrl-X | Sébastien Helleu | |
2018-07-08 | fset: fix truncation of option values when the length is greater than 4096 ↵ | Sébastien Helleu | |
(closes #1218) | |||
2018-07-01 | relay: 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-24 | irc: add channel color in message 354 with missing parameters (issue #1212) | Sébastien Helleu | |
2018-06-24 | irc: 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-23 | irc: display message 354 (WHOX) received with missing parameters (closes #1212) | Sébastien Helleu | |
2018-06-14 | core: 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-14 | relay: add filtering on protocol in info "relay_client_count" (issue #1206) | Sébastien Helleu | |
2018-06-14 | core: add key alt+"-" in /help filter | Sébastien Helleu | |
2018-06-13 | Merge remote-tracking branch 'origin/pr/1196' | Sébastien Helleu | |
2018-06-11 | fset: fix crash when applying filters after closing the fset buffer (closes ↵ | Sébastien Helleu | |
#1204) | |||
2018-06-02 | core: add reverse of string in evaluation of expressions with "rev:" (closes ↵ | Sébastien Helleu | |
#1200) | |||
2018-06-02 | core: count number of chars instead of bytes for suffix in function string_cut | Sébastien Helleu | |
2018-06-02 | core: return NULL in function string_cut if string is NULL | Sébastien Helleu | |
2018-05-31 | trigger: hide password in display of command "/msg nickserv set password", ↵ | Sébastien Helleu | |
support the option "-server xxx" | |||
2018-05-31 | trigger: hide password in command "/msg nickserv set password" | Sébastien Helleu | |
2018-05-31 | core: 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-22 | core: fix delete of previous/next word (keys Ctrl+w and Alt+d) (closes #1195) | Sébastien Helleu | |
2018-05-22 | core: unhook TLS handshake fd before calling connect callback | Simon 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. | |||
2018-05-21 | irc: update ircv3 URLs in comments | Sébastien Helleu | |
2018-05-21 | core: use function string_split to split list items | Sébastien Helleu | |
2018-05-21 | core: uncomment CURL option PROXY_SSL_CIPHER_LIST | Sébastien Helleu | |
2018-05-21 | core: handle lists in hook_process_hashtable for urls (closes #219) | Joseph Kichline | |
2018-05-21 | irc: display an error if memory can not be allocated in chghost callback | Sébastien Helleu | |
2018-05-21 | Merge remote-tracking branch 'origin/pr/640' | Sébastien Helleu | |
2018-05-20 | irc: add space before capability only if the string is not empty | Sébastien Helleu | |