Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-31 | doc: fix generation of man page weechat-headless with autotools | Sébastien Helleu | |
2019-03-29 | core: don't execute command scheduled by /repeat if the buffer does not ↵ | Sébastien Helleu | |
exist any more | |||
2019-03-29 | core: don't execute command scheduled by /wait if the buffer does not exist ↵ | Sébastien Helleu | |
any more | |||
2019-03-29 | core: use seconds by default in /repeat interval, allow unit for the interval | Sébastien Helleu | |
2019-03-29 | core: allow text in addition to a command in command /repeat | Sébastien Helleu | |
2019-03-28 | core: update ChangeLog | Sébastien Helleu | |
2019-03-25 | core: set CMake minimum version required to 3.0 | Sébastien Helleu | |
This is required for add_library() with INTERFACE library type. | |||
2019-03-24 | core: add CMake option "ENABLE_CODE_COVERAGE" to compile with code coverage ↵ | Sébastien Helleu | |
options This option is OFF by default and should be enabled only for tests, to measure test coverage. | |||
2019-03-23 | lua: add detection of Lua 5.3 with autotools | Sébastien Helleu | |
2019-03-21 | irc: fix length of string for SHA-512, SHA-256 and SHA-1 in help on ↵ | Sébastien Helleu | |
ssl_fingerprint option | |||
2019-03-19 | irc: display an error with /allchan -current or /allpv -current if the ↵ | Sébastien Helleu | |
current buffer is not an irc buffer (closes #1325) | |||
2019-03-18 | irc: fix update of channels modes with arguments when joining a channel ↵ | Sébastien Helleu | |
(closes #1324) | |||
2019-03-12 | core: set max length to 4096 for /secure passphrase (closes #1323) | Sébastien Helleu | |
2019-03-10 | core: replace argument "keep_eol" by "flags" in function string_split ↵ | Sébastien Helleu | |
(closes #1322) | |||
2019-03-01 | core: update ChangeLog (issue #1319) | Sébastien Helleu | |
2019-02-28 | script: use SHA-512 instead of MD5 for script checksum | Sébastien Helleu | |
Related to weechat/weechat.org@66a8b72ab17784e7476b142e36c0fd8c7ae9c7c3 | |||
2019-02-28 | relay: add option relay.weechat.commands (closes #928) | Sébastien Helleu | |
2019-02-28 | api: add function command_options (issue #928) | Sébastien Helleu | |
2019-02-27 | php: fix memory leak in functions using hashtable parameters | Sébastien Helleu | |
Functions fixed in PHP plugin: - string_eval_expression - string_eval_path_home - key_bind - hook_process_hashtable - hook_hsignal_send - info_get_hashtable - hdata_update | |||
2019-02-27 | api: add function string_match_list | Sébastien Helleu | |
2019-02-26 | core: remove parentheses after function names in ChangeLog | Sébastien Helleu | |
2019-02-23 | core: update ChangeLog (issue #1055, issue #1312) | Sébastien Helleu | |
2019-02-23 | core: update ChangeLog (issue #1309, issue #1311) | Sébastien Helleu | |
2019-02-22 | fset: fix slow refresh of fset buffer during /reload (closes #1313) | Sébastien Helleu | |
2019-02-19 | spell: 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-19 | core: update ChangeLog (issue #1306, issue #1307) | Sébastien Helleu | |
2019-02-18 | core: 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-17 | Version 2.4 | Sébastien Helleu | |
2019-02-04 | irc: fix parsing of whois messages in notify | Sébastien Helleu | |
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 | aspell: look for suggestions only if the misspelled word has changed (closes ↵ | Sébastien Helleu | |
#1175) | |||
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 | 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 | 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 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 | core: update ChangeLog | 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 | |
2018-11-18 | core: replace "Mac OS X" and "OS X" by "macOS" (issue #1272) | Sébastien Helleu | |
2018-11-17 | exec: add option exec.command.shell to customize the shell used with /exec -sh | Sébastien Helleu | |
2018-11-17 | core: add command line option "-t" (or "--temp-dir") to create a temporary ↵ | Sébastien Helleu | |
WeeChat home (deleted on exit) | |||
2018-11-14 | core: fix forced highlight on messages sent to other buffers (closes #1277) | Sébastien Helleu | |
The C compiler flag "-fsigned--char" is used to force "char" data type to be always signed (which is what WeeChat expects). On ARM systems, char is unsigned by default, which is causing problems when WeeChat stores -1 in the notify_level (type: char). | |||
2018-11-12 | relay: add support of close frame in websocket connection (closes #1281) | Sébastien Helleu | |
2018-11-08 | core: add fix of memory leak in ChangeLog | Sébastien Helleu | |