diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/snac.1 | 15 | ||||
| -rw-r--r-- | doc/snac.8 | 14 | ||||
| -rw-r--r-- | doc/style.css | 1 |
3 files changed, 29 insertions, 1 deletions
| @@ -110,6 +110,9 @@ URLs to RSS feeds of ActivityPub objects are also allowed | |||
| 110 | .It Blocked hashtags... | 110 | .It Blocked hashtags... |
| 111 | Enter here the list of hashtags you want to block, one | 111 | Enter here the list of hashtags you want to block, one |
| 112 | per line, with or without the # symbol. | 112 | per line, with or without the # symbol. |
| 113 | .It Muted words... | ||
| 114 | Enter here a list of words to be silenced. If a post includes | ||
| 115 | any of this words, it's hidden behind a dropdown. | ||
| 113 | .El | 116 | .El |
| 114 | .Pp | 117 | .Pp |
| 115 | The user setup dialog allows some user information to be | 118 | The user setup dialog allows some user information to be |
| @@ -218,13 +221,20 @@ also private and cannot be liked nor boosted. | |||
| 218 | For each entry in the timeline, a set of reasonable actions | 221 | For each entry in the timeline, a set of reasonable actions |
| 219 | in the form of buttons will be shown. These can be: | 222 | in the form of buttons will be shown. These can be: |
| 220 | .Bl -tag -offset indent | 223 | .Bl -tag -offset indent |
| 221 | .It Reply | 224 | .It Reply... |
| 222 | Unveils a text area to write your intelligent and acute comment | 225 | Unveils a text area to write your intelligent and acute comment |
| 223 | to an uninformed fellow. This note is sent to the original | 226 | to an uninformed fellow. This note is sent to the original |
| 224 | author as well as to your followers. The note can include | 227 | author as well as to your followers. The note can include |
| 225 | mentions in the @user@format; these people will also become | 228 | mentions in the @user@format; these people will also become |
| 226 | recipients of the message. If you reply to a boost or like, | 229 | recipients of the message. If you reply to a boost or like, |
| 227 | you are really replying to the note, not to the admirer of it. | 230 | you are really replying to the note, not to the admirer of it. |
| 231 | .It Emoji react... | ||
| 232 | Unveils a text area that allows a user to react with an emoji | ||
| 233 | by typing its identifier, that should match one of the emojis | ||
| 234 | defined in the | ||
| 235 | .Pa emojis.json | ||
| 236 | file. By now, only those emoji identifiers surrounded by colons | ||
| 237 | can be used. | ||
| 228 | .It Like | 238 | .It Like |
| 229 | Click this if you admire this post. The poster and your | 239 | Click this if you admire this post. The poster and your |
| 230 | followers will be informed. | 240 | followers will be informed. |
| @@ -405,6 +415,9 @@ Removes an existing list. | |||
| 405 | Adds an account (by its @name@host handle or actor URL) to a list. | 415 | Adds an account (by its @name@host handle or actor URL) to a list. |
| 406 | .It Cm list_del Ar basedir Ar uid Ar name Ar actor_url | 416 | .It Cm list_del Ar basedir Ar uid Ar name Ar actor_url |
| 407 | Deletes an actor (by its actor URL) from a list. | 417 | Deletes an actor (by its actor URL) from a list. |
| 418 | .It Cm top_ten Ar basedir Ar uid Op N | ||
| 419 | Returns the ids of the top ten (or top N) most popular posts (considering the | ||
| 420 | sum of likes and boosts). | ||
| 408 | .El | 421 | .El |
| 409 | .Ss Migrating an account to/from Mastodon | 422 | .Ss Migrating an account to/from Mastodon |
| 410 | See | 423 | See |
| @@ -296,6 +296,20 @@ outgoing messages (default: 15). Anyway, whenever any incoming activity from a | |||
| 296 | failed instance is detected, this counter is reset for it. | 296 | failed instance is detected, this counter is reset for it. |
| 297 | .It Ic vkey | 297 | .It Ic vkey |
| 298 | Public vapid key. Used for notification on some client. | 298 | Public vapid key. Used for notification on some client. |
| 299 | .It Ic disable_emojireact | ||
| 300 | If set to true, all EmojiReact support (for input and output) is disabled. | ||
| 301 | .It Ic strip_exif | ||
| 302 | If set to true, EXIF and other metadata will be stripped from uploaded images (jpg, png, webp, heic, avif, tiff, gif, bmp) and videos (mp4, m4v, mov, webm, mkv, avi). This requires the | ||
| 303 | .Nm mogrify | ||
| 304 | (from ImageMagick) and | ||
| 305 | .Nm ffmpeg | ||
| 306 | tools to be installed. If | ||
| 307 | .Nm snac | ||
| 308 | cannot find or execute these tools at startup, it will refuse to run. | ||
| 309 | .It Ic mogrify_path | ||
| 310 | Overrides the default "mogrify" command name or path. Use this if the tool is not in the system PATH or has a different name. | ||
| 311 | .It Ic ffmpeg_path | ||
| 312 | Overrides the default "ffmpeg" command name or path. Use this if the tool is not in the system PATH or has a different name. | ||
| 299 | .El | 313 | .El |
| 300 | .Pp | 314 | .Pp |
| 301 | You must restart the server to make effective these changes. | 315 | You must restart the server to make effective these changes. |
diff --git a/doc/style.css b/doc/style.css index 2981926..9c8764a 100644 --- a/doc/style.css +++ b/doc/style.css | |||
| @@ -40,3 +40,4 @@ blockquote { font-style: italic; } | |||
| 40 | a { color: #7799dd } | 40 | a { color: #7799dd } |
| 41 | a:visited { color: #aa99dd } | 41 | a:visited { color: #aa99dd } |
| 42 | } | 42 | } |
| 43 | select { max-width: 40%; } | ||