summary refs log tree commit diff
path: root/man (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Disable qml diskcache by defaultNicolas Werner2023-02-251-0/+6
| | | | | | | Since this causes crashes on some qml module updates. Fixes #1383 Fixes #1132
* spoiler -> +warningNicolas Werner2023-01-311-3/+4
|
* document /cmark and Markdown extensions in man page (#1344)tastytea2023-01-311-0/+18
| | | | | | | | | | | | | * document /cmark in man page * document Markdown extension in man page * fix spoiler wording Co-authored-by: DeepBlueV7.X <nicolas.werner@hotmail.de> --------- Co-authored-by: DeepBlueV7.X <nicolas.werner@hotmail.de>
* Control logging via command line and environment variablesForest2022-09-101-1/+21
| | | | | | | | | | | | Nheko is very chatty in its log output, generating log noise (which complicates diagnostics) and needless disk writes (which affect power consumption and SSD life). This patch introduces command line options and environment variables to control log levels and output type. The old --debug command line option still works, at least for now. It is overridden by the new command line options when they are used. Partially addresses #665.
* Add a /command to redact all visible messages sent by a userNicolas Werner2022-07-011-0/+6
|
* Close current room on Ctrl+WLoren Burkholder2022-04-021-0/+3
|
* Add reasons to everythingNicolas Werner2022-03-301-6/+6
| | | | fixes #1030
* Add /knock commandNicolas Werner2022-03-301-0/+3
|
* Add /reset-state commandNicolas Werner2022-02-051-0/+4
|
* Rename man page so GitHub renders it.tastytea2022-01-272-1/+1
|
* Add FAQ to manpage, add sticker and custom emoji Q&Atastytea2022-01-271-0/+21
|
* Fix documentation for --profile; add completers to man pagetastytea2022-01-271-3/+24
|
* man: Document arguments for invite, kick, ban, unban, shrugtastytea2022-01-011-10/+10
|
* Fix typos and first level headings in man pagetastytea2022-01-011-5/+5
|
* Add man page (#851)tastytea2021-12-222-0/+244
This adds a man page which lists command line options, key bindings and commands. A new CMake option `MAN` is added, enabled by default on `UNIX` but not `APPLE`. The man pages are generated with either `a2x` (from asciidoc) or `asciidoctor`. If both are not found, a fatal error is signaled.