Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-04-02 | core: update German translations | Nils Görs | |
2019-03-31 | core: add documentation on command line debug options (in --help and man pages) | Sébastien Helleu | |
Command line debug options are now documented: * --no-dlclose: do not call the function dlclose after plugins are unloaded * --no-gnutls: do not call the init and deinit functions of GnuTLS library * --no-gcrypt: do not call the init and deinit functions of Gcrypt library These options must not be used in production, they're for debug only and can be used with tools like Valgrind or electric-fence. | |||
2019-03-31 | doc: fix generation of man page weechat-headless with autotools | Sébastien Helleu | |
2019-03-29 | doc: update German auto-generated file | Sébastien Helleu | |
2019-03-29 | core: update German translations | Nils Görs | |
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-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 | doc: improve description of CMake option ENABLE_PYTHON3 in user's guide | Sébastien Helleu | |
2019-03-24 | doc: fix typo Gnutls -> GnuTLS in user's guide | Sébastien Helleu | |
2019-03-24 | doc: fix description of man/doc CMake options in user's guide | Sébastien Helleu | |
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-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 | doc: add missing keys Ctrl+F1 and Ctrl+F2 for buflist (FAQ) | Sébastien Helleu | |
2019-03-17 | core: fix typo: Weechat -> WeeChat | Sébastien Helleu | |
2019-03-12 | doc: update German auto-generated file | Sébastien Helleu | |
2019-03-11 | relay: use empty value by default for option relay.weechat.commands (issue #928) | Sébastien Helleu | |
The relay client is supposed to be safe by default, and the relay connection should be protected by the different ways (restriction on IP address, SSL, strong password, Time-based One-Time Password, local bind address and use of SSH tunnel…). So this option lets the user add extra security by allowing only some commands (whitelist), or allowing any commands except a list of given commands (blacklist). | |||
2019-03-10 | relay: add forbidden commands /wait and /repeat in weechat protocol (issue #928) | Sébastien Helleu | |
2019-03-09 | doc: update German auto-generated file | Sébastien Helleu | |
2019-03-09 | relay: add extra forbidden commands in weechat protocol (issue #928) | Sébastien Helleu | |
Commands were already forbidden (option relay.weechat.commands): - /exec - /upgrade - /quit These extra commands are now forbidden by default: - /fset - /set - /unset - /plugin - /script - /python - /perl - /ruby - /lua - /tcl - /guile - /javascript - /php - /secure | |||
2019-02-28 | core: update German translations | Nils Görs | |
2019-02-28 | doc: fix typo in FAQ | 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 | api: add function string_match_list | Sébastien Helleu | |
2019-02-26 | doc: move spell chapter after scripts in user's guide | Sébastien Helleu | |
2019-02-24 | doc: update German auto-generated files | Sébastien Helleu | |
2019-02-23 | core: update translations (issue #1055, issue #1312) | Sébastien Helleu | |
2019-02-20 | doc: update German auto-generated files | 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-01-31 | doc: remove obsolete note about gcrypt in chapter on IRC SASL authentication ↵ | Sébastien Helleu | |
(user's guide) | |||
2019-01-27 | doc: update German documentation | Nils Görs | |
2019-01-27 | doc: add example with command "/input set_unread" in question about terminal ↵ | Sébastien Helleu | |
focus (issue #1295) | |||
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 | doc: fix regex examples to be compatible with 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-20 | script: add missing input actions "A" and "v" in /help script | 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-12 | doc: update German documentation | Nils Görs | |
2019-01-12 | doc: add question about autojoin option in FAQ (closes #1287) | Sébastien Helleu | |
2019-01-01 | core: update copyright dates | Sébastien Helleu | |
2018-12-22 | doc: update German auto-generated file | Sébastien Helleu | |
2018-12-22 | core: add note about option sec.crypt.passphrase_file in /help secure (issue ↵ | Sébastien Helleu | |
#1286) | |||
2018-12-14 | doc: update German auto-generated files | Sébastien Helleu | |
2018-12-13 | core: update German translations | Nils Görs | |
2018-12-13 | doc: add example of aspell dict for all channels of an IRC server (user's ↵ | Sébastien Helleu | |
guide) (closes #1284) | |||
2018-11-30 | doc: update German documentation | Nils Görs | |