summaryrefslogtreecommitdiff
path: root/doc/fr/weechat_user.fr.adoc
AgeCommit message (Collapse)Author
2020-06-13javascript: disable build by default and remove Debian packaging of ↵Sébastien Helleu
JavaScript plugin (issue #360)
2020-06-06doc: add URL to the Debian download page in user's guideSébastien Helleu
2020-05-18doc: add missing non-breaking spaces before colons and semicolons in French docsSébastien Helleu
2020-05-16core: add bar items with nicklist groups and nicks/groups (closes #1506)Sébastien Helleu
The bar item "buffer_nicklist_count" is now the number of displayed nicks only (not groups). New bar items: - "buffer_nicklist_count_groups": number of groups displayed - "buffer_nicklist_count_all": number of nicks and groups displayed
2020-05-10core: add default key alt-enter to insert a newline (issue #1498)Sébastien Helleu
2020-05-03doc: merge 53 autogen files into 11 files, move them to includes directorySébastien Helleu
2020-05-02doc: move files cmdline_options.xx.adoc and man.xx.adoc into "includes" ↵Sébastien Helleu
directory
2020-05-02doc: merge files cmdline_options_debug.xx.adoc into cmdline_options.xx.adocSébastien Helleu
2020-04-24doc: protect monospace text with plus characters (user's guide)Sébastien Helleu
2020-04-24core: add default key alt-shift-N to toggle nicklist barSébastien Helleu
2020-04-24buflist: add default key alt-shift-B to toggle buflistSébastien Helleu
2020-04-18doc: fix table sizes on small screensSébastien Helleu
2020-04-18doc: update default trigger cmd_pass in user's guideSébastien Helleu
2020-04-18core: make GnuTLS a required dependencySébastien Helleu
2020-04-12trigger: evaluate arguments of command when the trigger is created (closes ↵Sébastien Helleu
#1472)
2020-03-01script: call function string_hash in script_repo_sha512sum_file to compute ↵Sébastien Helleu
SHA512 hash This removes dependency on libgcrypt in script plugin.
2020-02-06doc: add keys and actions on fset and script buffers in user's guideSébastien Helleu
2019-11-24doc: list the things removed by WeeChat on /plugin unload (user's guide)Sébastien Helleu
2019-10-22doc: add keys to type for the example message with color codes (user's guide)Sébastien Helleu
2019-10-08doc: add value -1 for notify level in trigger of type line (user's guide)Sébastien Helleu
2019-10-06doc: translate description of logger masks in user's guideSébastien Helleu
2019-09-18doc: set minimum Ruby version to 1.9.1 in user's guide (closes #1404)Sébastien Helleu
This is now required after the changes introduced by commit 156d855787475deab27833219a188a4accf42558 in version 2.6.
2019-08-15doc: translate new Freenode Tor Hidden Service (user's guide)Sébastien Helleu
2019-08-06core: replace python-dev by python3-dev in dependencies (user's guide)Sébastien Helleu
2019-07-31doc: update note on Python recommended version in user's guideSébastien Helleu
2019-07-31core: fix help on python to build with Python 2 (issue #1382)Sébastien Helleu
2019-07-01doc: rename option ENABLE_PYTHON3 to ENABLE_PYTHON2 in user's guideSébastien Helleu
2019-06-28doc: update chapter on colors in user's guide (issue #1343, issue #1345)Sébastien Helleu
2019-06-12doc: remove obsolete options for "brew install" command (user's guide)Sébastien Helleu
2019-06-12doc: improve tree with log files in user's guideSébastien Helleu
2019-06-07doc: replace "cmake" by "CMake"Sébastien Helleu
2019-05-27doc: add example of WeeChat command to setup the password in a WeeChat IRC ↵Sébastien Helleu
relay client (user's guide)
2019-05-27doc: disambiguate key binding "l", which is lower "L" (not "1")Sébastien Helleu
2019-05-26doc: add links to WeeChat directories and files (user's guide)Sébastien Helleu
2019-05-24doc: fix styles in user's guideSébastien Helleu
2019-05-23doc: fix style in bar items chapter (user's guide)Sébastien Helleu
2019-05-12doc: update chapter on relay unix domain sockets; add translations (user's ↵Sébastien Helleu
guide)
2019-04-13trigger: add hook "info_hashtable"Sébastien Helleu
2019-04-13trigger: add hook "info"Sébastien Helleu
2019-04-11doc: fix styles in user guide and plugin API referenceSébastien Helleu
2019-03-31core: 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-25core: set CMake minimum version required to 3.0Sébastien Helleu
This is required for add_library() with INTERFACE library type.
2019-03-24doc: improve description of CMake option ENABLE_PYTHON3 in user's guideSébastien Helleu
2019-03-24doc: fix typo Gnutls -> GnuTLS in user's guideSébastien Helleu
2019-03-24doc: fix description of man/doc CMake options in user's guideSébastien Helleu
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-02-26doc: move spell chapter after scripts in user's guideSé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-01-31doc: remove obsolete note about gcrypt in chapter on IRC SASL authentication ↵Sébastien Helleu
(user's guide)
2019-01-26doc: fix regex examples to be compatible with 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).