summaryrefslogtreecommitdiff
path: root/ChangeLog.adoc
AgeCommit message (Collapse)Author
2019-03-31doc: fix generation of man page weechat-headless with autotoolsSébastien Helleu
2019-03-29core: don't execute command scheduled by /repeat if the buffer does not ↵Sébastien Helleu
exist any more
2019-03-29core: don't execute command scheduled by /wait if the buffer does not exist ↵Sébastien Helleu
any more
2019-03-29core: use seconds by default in /repeat interval, allow unit for the intervalSébastien Helleu
2019-03-29core: allow text in addition to a command in command /repeatSébastien Helleu
2019-03-28core: update ChangeLogSébastien Helleu
2019-03-25core: set CMake minimum version required to 3.0Sébastien Helleu
This is required for add_library() with INTERFACE library type.
2019-03-24core: 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-23lua: add detection of Lua 5.3 with autotoolsSébastien Helleu
2019-03-21irc: fix length of string for SHA-512, SHA-256 and SHA-1 in help on ↵Sébastien Helleu
ssl_fingerprint option
2019-03-19irc: 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-18irc: fix update of channels modes with arguments when joining a channel ↵Sébastien Helleu
(closes #1324)
2019-03-12core: set max length to 4096 for /secure passphrase (closes #1323)Sébastien Helleu
2019-03-10core: replace argument "keep_eol" by "flags" in function string_split ↵Sébastien Helleu
(closes #1322)
2019-03-01core: update ChangeLog (issue #1319)Sébastien Helleu
2019-02-28script: use SHA-512 instead of MD5 for script checksumSébastien Helleu
Related to weechat/weechat.org@66a8b72ab17784e7476b142e36c0fd8c7ae9c7c3
2019-02-28relay: add option relay.weechat.commands (closes #928)Sébastien Helleu
2019-02-28api: add function command_options (issue #928)Sébastien Helleu
2019-02-27php: fix memory leak in functions using hashtable parametersSé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-27api: add function string_match_listSébastien Helleu
2019-02-26core: remove parentheses after function names in ChangeLogSébastien Helleu
2019-02-23core: update ChangeLog (issue #1055, issue #1312)Sébastien Helleu
2019-02-23core: update ChangeLog (issue #1309, issue #1311)Sébastien Helleu
2019-02-22fset: fix slow refresh of fset buffer during /reload (closes #1313)Sébastien Helleu
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-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-17Version 2.4Sébastien Helleu
2019-02-04irc: fix parsing of whois messages in notifySébastien Helleu
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-27aspell: look for suggestions only if the misspelled word has changed (closes ↵Sébastien Helleu
#1175)
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-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-20irc: return IRC color code instead of WeeChat color code when decoding a too ↵Sébastien Helleu
short ANSI color sequence
2019-01-20irc: fix encoding of italic attribute when colors are removedSébastien Helleu
2019-01-20buflist: add default keys ctrl-F1/F2 to scroll up/down one page in buflist ↵Sébastien Helleu
(same action as F1/F2)
2019-01-20core: add default keys ctrl-F11/F12 to scroll up/down one page in nicklist ↵Sébastien Helleu
(same action as F11/F12)
2019-01-20buflist: add alternate key codes for F1/F2 and alt-F1/alt-F2 (compatibility ↵Sébastien Helleu
with terminals)
2019-01-13core: update ChangeLogSébastien Helleu
2019-01-11irc: fix parsing of "time" message tag on FreeBSD (issue #1289)Sébastien Helleu
2019-01-11tests: add tests on function irc_config_check_autojoinSébastien Helleu
2018-11-18core: replace "Mac OS X" and "OS X" by "macOS" (issue #1272)Sébastien Helleu
2018-11-17exec: add option exec.command.shell to customize the shell used with /exec -shSébastien Helleu
2018-11-17core: add command line option "-t" (or "--temp-dir") to create a temporary ↵Sébastien Helleu
WeeChat home (deleted on exit)
2018-11-14core: 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-12relay: add support of close frame in websocket connection (closes #1281)Sébastien Helleu
2018-11-08core: add fix of memory leak in ChangeLogSébastien Helleu