Sébastien Helleu
31d0742aed
doc: remove obsolete options for "brew install" command (user's guide)
2019-06-12 23:37:17 +02:00
Sébastien Helleu
4b90549b86
doc: improve tree with log files in user's guide
2019-06-12 23:07:32 +02:00
Sébastien Helleu
f065b43b71
doc: replace "cmake" by "CMake"
2019-06-07 21:14:17 +02:00
Krzysztof Korościk
5e1174d135
doc: updated polish translation
2019-05-31 23:18:12 +02:00
Sébastien Helleu
99bb53f693
doc: add example of WeeChat command to setup the password in a WeeChat IRC relay client (user's guide)
2019-05-27 21:40:01 +02:00
Sébastien Helleu
a599e0328b
doc: disambiguate key binding "l", which is lower "L" (not "1")
2019-05-27 21:38:39 +02:00
Sébastien Helleu
c0bb243541
doc: add links to WeeChat directories and files (user's guide)
2019-05-26 14:51:14 +02:00
Sébastien Helleu
7cf4585690
doc: fix styles in user's guide
2019-05-24 21:52:35 +02:00
Sébastien Helleu
c9762c84e1
doc: fix style in bar items chapter (user's guide)
2019-05-23 21:12:40 +02:00
Sébastien Helleu
4d156ed8d7
doc: update chapter on relay unix domain sockets; add translations (user's guide)
2019-05-12 22:52:33 +02:00
Sébastien Helleu
30768d4d24
trigger: add hook "info_hashtable"
2019-04-13 13:53:16 +02:00
Sébastien Helleu
8bc06ea101
trigger: add hook "info"
2019-04-13 08:52:40 +02:00
Sébastien Helleu
f701caf5bb
doc: fix styles in user guide and plugin API reference
2019-04-11 20:56:35 +02:00
Sébastien Helleu
413aa499cc
core: add documentation on command line debug options (in --help and man pages)
...
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 23:53:54 +02:00
Sébastien Helleu
9b4fa10923
core: set CMake minimum version required to 3.0
...
This is required for add_library() with INTERFACE library type.
2019-03-25 08:52:53 +01:00
Sébastien Helleu
96d3a3834c
doc: improve description of CMake option ENABLE_PYTHON3 in user's guide
2019-03-24 09:38:43 +01:00
Sébastien Helleu
429fafd42f
doc: fix typo Gnutls -> GnuTLS in user's guide
2019-03-24 09:38:43 +01:00
Sébastien Helleu
6c41e627cd
doc: fix description of man/doc CMake options in user's guide
2019-03-24 09:38:43 +01:00
Sébastien Helleu
2612adf899
core: add CMake option "ENABLE_CODE_COVERAGE" to compile with code coverage options
...
This option is OFF by default and should be enabled only for tests, to measure
test coverage.
2019-03-24 09:38:43 +01:00
Sébastien Helleu
1ef7a55e72
core: fix typo: Weechat -> WeeChat
2019-03-17 18:34:21 +01:00
Sébastien Helleu
a10769f0f8
doc: move spell chapter after scripts in user's guide
2019-02-26 08:01:42 +01:00
Sébastien Helleu
57aa9e060e
spell: rename "aspell" plugin to "spell" (issue #1299 )
...
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 21:15:56 +01:00
Krzysztof Korościk
c2a94d93c5
doc: updated polish translation
2019-02-09 19:50:01 +01:00
Sébastien Helleu
6932810c70
doc: remove obsolete note about gcrypt in chapter on IRC SASL authentication (user's guide)
2019-01-31 21:34:02 +01:00
Sébastien Helleu
6d217ca8c5
doc: fix regex examples to be compatible with FreeBSD
...
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 10:15:35 +01:00
Sébastien Helleu
e847068a3c
buflist: add default keys ctrl-F1/F2 to scroll up/down one page in buflist (same action as F1/F2)
2019-01-20 01:29:33 +01:00
Sébastien Helleu
9d6ebeda0d
core: add default keys ctrl-F11/F12 to scroll up/down one page in nicklist (same action as F11/F12)
2019-01-20 01:29:28 +01:00
Sébastien Helleu
d9849b4efe
doc: add example of aspell dict for all channels of an IRC server (user's guide) ( closes #1284 )
2018-12-13 21:24:12 +01:00
Sébastien Helleu
342261d35b
core: use https for all links where secured http is supported
2018-11-29 23:18:55 +01:00
Sébastien Helleu
d26380a9bb
core: replace "Mac OS X" and "OS X" by "macOS" (issue #1272 )
2018-11-18 11:04:29 +01:00
Sébastien Helleu
dd0b3c5692
core: replace "web site" by "website"
2018-11-04 21:32:35 +01:00
Sébastien Helleu
738535e7f6
relay: add support of Time-based One-Time Password (TOTP) as second authentication factor in weechat protocol
2018-11-04 14:50:53 +01:00
Krzysztof Korościk
585257196d
doc: updated polish translation
2018-10-19 19:46:23 +02:00
Sébastien Helleu
669aa2741a
doc: rename variable "tg_tags" to "tags" in line trigger (user guide)
2018-08-17 08:16:14 +02:00
Sébastien Helleu
968d7ede29
trigger: add variables "tg_prefix_nocolor" and "tg_message_nocolor" in line trigger
2018-08-17 07:59:20 +02:00
Sébastien Helleu
e7096810c4
trigger: rename variable "tg_tags" to "tags" in line trigger
2018-08-17 07:43:56 +02:00
Sébastien Helleu
9105c3ba1f
trigger: allow creation of temporary variables with the regex
2018-08-16 22:47:47 +02:00
Sébastien Helleu
ba820a0172
doc: fix list of variables that can be updated in a hook_line trigger (user guide)
2018-08-15 12:28:15 +02:00
Sébastien Helleu
51bda896c8
doc: add list of variables that can be updated by type of trigger (user guide)
2018-08-15 09:07:01 +02:00
Sébastien Helleu
42be1a74a0
api: add function hook_line
2018-08-12 21:45:00 +02:00
Sébastien Helleu
48cbf3ad37
doc: add "/msg nickserv set password" in list of commands handled by default trigger "cmd_pass" (user guide)
2018-08-11 09:48:32 +02:00
Sébastien Helleu
737a16b7de
doc: fix default conditions of beep trigger (user guide)
2018-08-11 09:38:54 +02:00
Sébastien Helleu
b3fc7c1b1a
core: update weechat.org URLs to match latest version of the site
2018-07-29 11:03:24 +02:00
Jos Ahrens
738585d9e2
doc: mention there is an option to enable crash core files (user's guide)
...
For people skimming the section, it will not be immediately clear to
them, especially since everything seems to suggest this option is
enabled by default.
2018-07-15 14:18:07 +02:00
Krzysztof Korościk
0834c9c966
doc: updated polish translation
2018-07-08 17:49:28 +02:00
Sébastien Helleu
4aa0e570d0
doc: add default triggers in user's guide
2018-07-07 07:54:11 +02:00
Sébastien Helleu
ce682bb02a
Merge pull request #1164 from wking/openssl-ecparam-out
...
doc: use '-out' instead of shell redirection for openssl ecparam
2018-03-31 12:06:02 +02:00
Sébastien Helleu
330e13ac61
doc: update Ruby version in dependencies (user's guide)
2018-03-22 21:25:00 +01:00
Sébastien Helleu
8fd13eefb9
doc: update PHP packages in dependencies (user's guide)
2018-03-22 21:22:32 +01:00
W. Trevor King
5d91765da7
doc: use '-out' instead of shell redirection for openssl ecparam
...
Generated with:
$ sed -i 's|openssl ecparam -genkey -name prime256v1 >~/.weechat/ecdsa.pem|openssl ecparam -genkey -name prime256v1 -out ~/.weechat/ecdsa.pem|' $(git grep -l 'openssl ecparam')
There's no reason to involve shell redirection, which we've had since
88073243 (doc: add instructions for SASL "ecdsa-nist256p-challenge",
2015-01-21). We already use -in or -out for our other openssl
invocations, as shown by:
$ git grep 'openssl.*\(<\|>\|-in\|-out\)'
2018-03-19 15:55:34 -07:00