mirror of
https://codeberg.org/cage/tinmop/
synced 2025-03-07 10:37:37 +01:00
- updated documentation.
This commit is contained in:
parent
743e8cda15
commit
1ec30a4b62
4
NEWS.org
4
NEWS.org
@ -9,11 +9,13 @@
|
|||||||
- [GUI]
|
- [GUI]
|
||||||
- refresh stream frame after downloading a gemini stream in background;
|
- refresh stream frame after downloading a gemini stream in background;
|
||||||
- ensured to lock the gemtext line position when zooming;
|
- ensured to lock the gemtext line position when zooming;
|
||||||
- using themes also for TOC widget.
|
- using themes also for TOC widget;
|
||||||
|
- added contextual menu button to open a link with an external default program.
|
||||||
- improved rendering of HTML;
|
- improved rendering of HTML;
|
||||||
- [fediverse] improved mentions rendering.
|
- [fediverse] improved mentions rendering.
|
||||||
- Bugfix
|
- Bugfix
|
||||||
- [GUI] ensured only a single copy of the same image is rendered when inlining images in a gemtext;
|
- [GUI] ensured only a single copy of the same image is rendered when inlining images in a gemtext;
|
||||||
|
- [TUI] prevented a crash when an external program can not be found;
|
||||||
- fixed and improved gopher protocol support;
|
- fixed and improved gopher protocol support;
|
||||||
- [fediverse]
|
- [fediverse]
|
||||||
- ensured the correct text is rendered when a boosted poll is opened;
|
- ensured the correct text is rendered when a boosted poll is opened;
|
||||||
|
@ -174,7 +174,74 @@ if suggestion window is \fBnot\fP rendered, pressing \fBup\fP and \fBdown\fP arr
|
|||||||
A folder is an object to groups messages for each timeline an arbitrary number of folders can be created, when the last message of a folder is deleted the folder is deleted as well.
|
A folder is an object to groups messages for each timeline an arbitrary number of folders can be created, when the last message of a folder is deleted the folder is deleted as well.
|
||||||
.SS "GUI"
|
.SS "GUI"
|
||||||
.PP
|
.PP
|
||||||
Calling this program with option \fB"-U"\fP will starts with a gemini client with a GUI mode. The Usage should be intuitive for persons that are used to use programs with a graphical interface and mouse interaction.
|
Calling this program with option \fB"-U"\fP will starts with a gemini client with a GUI mode. The Usage should be intuitive for persons that are used to use programs with a graphical interface and mouse interaction, here are the default keybindings:
|
||||||
|
|
||||||
|
.TP
|
||||||
|
\fBquit \fP
|
||||||
|
Control-q
|
||||||
|
.TP
|
||||||
|
\fBsearch \fP
|
||||||
|
Alt-f
|
||||||
|
.TP
|
||||||
|
\fBstream \fP
|
||||||
|
Alt-s
|
||||||
|
.TP
|
||||||
|
\fBcertificates \fP
|
||||||
|
Alt-c
|
||||||
|
.TP
|
||||||
|
\fBtour manage \fP
|
||||||
|
Alt-t
|
||||||
|
.TP
|
||||||
|
\fBtour next \fP
|
||||||
|
Control-t
|
||||||
|
.TP
|
||||||
|
\fBtour shuffle \fP
|
||||||
|
Alt-S
|
||||||
|
.TP
|
||||||
|
\fBgemlog \fP
|
||||||
|
Alt-g
|
||||||
|
.TP
|
||||||
|
\fBabout \fP
|
||||||
|
Alt-a
|
||||||
|
.TP
|
||||||
|
\fBtype-address \fP
|
||||||
|
Alt-d
|
||||||
|
.TP
|
||||||
|
\fBview-source \fP
|
||||||
|
Alt-u
|
||||||
|
.TP
|
||||||
|
\fBgo back in address history\fP
|
||||||
|
Control-BackSpace
|
||||||
|
.TP
|
||||||
|
\fBup \fP
|
||||||
|
U
|
||||||
|
.TP
|
||||||
|
\fBbookmark toggle \fP
|
||||||
|
Control-d
|
||||||
|
.TP
|
||||||
|
\fBbookmark show \fP
|
||||||
|
Alt-b
|
||||||
|
.TP
|
||||||
|
\fBbookmark export \fP
|
||||||
|
Alt-e
|
||||||
|
.TP
|
||||||
|
\fBbookmark import \fP
|
||||||
|
Alt-i
|
||||||
|
.TP
|
||||||
|
\fBsearch gempub library \fP
|
||||||
|
Alt-l
|
||||||
|
.TP
|
||||||
|
\fBgemtext scaling increase \fP
|
||||||
|
Control-plus
|
||||||
|
.TP
|
||||||
|
\fBgemtext scaling decrease \fP
|
||||||
|
Control-minus
|
||||||
|
.TP
|
||||||
|
\fBgemtext scaling reset \fP
|
||||||
|
Control-0
|
||||||
|
.TP
|
||||||
|
\fBgemtext refresh \fP
|
||||||
|
Control-r
|
||||||
.SH "Configuration"
|
.SH "Configuration"
|
||||||
.PP
|
.PP
|
||||||
The configuration of tinmop is based on text files but they are available two different kinds with different syntax and scope.
|
The configuration of tinmop is based on text files but they are available two different kinds with different syntax and scope.
|
||||||
|
@ -129,7 +129,30 @@
|
|||||||
|
|
||||||
** GUI
|
** GUI
|
||||||
|
|
||||||
Calling this program with option *"-U"* will starts with a gemini client with a GUI mode. The Usage should be intuitive for persons that are used to use programs with a graphical interface and mouse interaction.
|
Calling this program with option *"-U"* will starts with a gemini client with a GUI mode. The Usage should be intuitive for persons that are used to use programs with a graphical interface and mouse interaction, here are the default keybindings:
|
||||||
|
|
||||||
|
- quit :: Control-q
|
||||||
|
- search :: Alt-f
|
||||||
|
- stream :: Alt-s
|
||||||
|
- certificates :: Alt-c
|
||||||
|
- tour manage :: Alt-t
|
||||||
|
- tour next :: Control-t
|
||||||
|
- tour shuffle :: Alt-S
|
||||||
|
- gemlog :: Alt-g
|
||||||
|
- about :: Alt-a
|
||||||
|
- type-address :: Alt-d
|
||||||
|
- view-source :: Alt-u
|
||||||
|
- go back in address history :: Control-BackSpace
|
||||||
|
- up :: U
|
||||||
|
- bookmark toggle :: Control-d
|
||||||
|
- bookmark show :: Alt-b
|
||||||
|
- bookmark export :: Alt-e
|
||||||
|
- bookmark import :: Alt-i
|
||||||
|
- search gempub library :: Alt-l
|
||||||
|
- gemtext scaling increase :: Control-plus
|
||||||
|
- gemtext scaling decrease :: Control-minus
|
||||||
|
- gemtext scaling reset :: Control-0
|
||||||
|
- gemtext refresh :: Control-r
|
||||||
|
|
||||||
* Configuration
|
* Configuration
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user