summaryrefslogtreecommitdiff
path: root/manual/plugins
diff options
context:
space:
mode:
authorSebastian Leonhardt <sebastian.leonhardt@web.de>2017-09-15 23:43:41 +0200
committerSebastian Leonhardt <sebastian.leonhardt@web.de>2019-08-11 22:26:49 +0200
commit5c701b02809ffeec2e9de50e89995dbb85cd7a62 (patch)
tree823dd1444789ef1ebff521cc7d6ca36e1c4f740a /manual/plugins
parenta9a891b47b828c20b5b3d3e29983e66d48419377 (diff)
downloadrockbox-5c701b02809ffeec2e9de50e89995dbb85cd7a62.tar.gz
rockbox-5c701b02809ffeec2e9de50e89995dbb85cd7a62.zip
Add support for Windows shortcuts (*.lnk files)
Supports only relative links across the same volume. Change-Id: I4f61bb9d5f2385d5b15d2b9d9a3f814a7ac85b54
Diffstat (limited to 'manual/plugins')
-rw-r--r--manual/plugins/main.tex3
-rw-r--r--manual/plugins/shortcuts.tex4
-rw-r--r--manual/plugins/winshortcuts.tex15
3 files changed, 22 insertions, 0 deletions
diff --git a/manual/plugins/main.tex b/manual/plugins/main.tex
index c07d106024..96326cbffe 100644
--- a/manual/plugins/main.tex
+++ b/manual/plugins/main.tex
@@ -165,6 +165,7 @@ option from the \setting{Context Menu} (see \reference{ref:Contextmenu}).}
165 {\textbf{Viewer Plugin}& \textbf{Associated filetype(s)} & \textbf{Context Menu only}}% 165 {\textbf{Viewer Plugin}& \textbf{Associated filetype(s)} & \textbf{Context Menu only}}%
166 {}{} 166 {}{}
167 Shortcuts & \fname{.link} & \\ 167 Shortcuts & \fname{.link} & \\
168 MS Windows shortcuts & \fname{.lnk} & \\
168 Chip-8 Emulator & \fname{.ch8} & \\ 169 Chip-8 Emulator & \fname{.ch8} & \\
169 Frotz & \fname{.z1} to \fname{.z8} & \\ 170 Frotz & \fname{.z1} to \fname{.z8} & \\
170 Image Viewer & \fname{.bmp, .jpg, .jpeg, .png\opt{lcd_color}{, .ppm}} & \\ 171 Image Viewer & \fname{.bmp, .jpg, .jpeg, .png\opt{lcd_color}{, .ppm}} & \\
@@ -200,6 +201,8 @@ option from the \setting{Context Menu} (see \reference{ref:Contextmenu}).}
200 201
201{\input{plugins/shortcuts.tex}} 202{\input{plugins/shortcuts.tex}}
202 203
204{\input{plugins/winshortcuts.tex}}
205
203\opt{lcd_bitmap}{\input{plugins/chip8emulator.tex}} 206\opt{lcd_bitmap}{\input{plugins/chip8emulator.tex}}
204 207
205\opt{lcd_bitmap}{\input{plugins/frotz.tex}} 208\opt{lcd_bitmap}{\input{plugins/frotz.tex}}
diff --git a/manual/plugins/shortcuts.tex b/manual/plugins/shortcuts.tex
index 2cca5f773f..813bdeaf56 100644
--- a/manual/plugins/shortcuts.tex
+++ b/manual/plugins/shortcuts.tex
@@ -8,6 +8,10 @@ line containing the name of the file or the directory you want to quickly
8jump to. All names should be full absolute names, i.e. they should start 8jump to. All names should be full absolute names, i.e. they should start
9with a \fname{/}. Directory names should also end with a \fname{/}. 9with a \fname{/}. Directory names should also end with a \fname{/}.
10 10
11\note{This plugin cannot read Microsoft Windows shortcuts (\fname{.lnk}
12files). These are handled by a separate plugin; see
13\reference{ref:Winshortcutsplugin}.}
14
11\subsubsection{How to create \fname{.link} files} 15\subsubsection{How to create \fname{.link} files}
12 16
13You can use your favourite text editor to create a \fname{.link} file on the 17You can use your favourite text editor to create a \fname{.link} file on the
diff --git a/manual/plugins/winshortcuts.tex b/manual/plugins/winshortcuts.tex
new file mode 100644
index 0000000000..a3a4063b6f
--- /dev/null
+++ b/manual/plugins/winshortcuts.tex
@@ -0,0 +1,15 @@
1\subsection{Windows Shortcuts}
2\label{ref:Winshortcutsplugin}
3
4This plugin follows Microsoft Windows Explorer shortcuts (\fname{.lnk} files).
5In Rockbox, these types of shortcuts will show up as \fname{.lnk} files. To
6follow a shortcut, just ``play'' a \fname{.lnk} file from the file browser.
7The plugin will navigate the file browser to the linked file (which
8will be highlighted) or directory (which will be opened). Linked files will
9not be automatically opened; you must do this manually.
10
11Only relative links across the same volume are supported.
12
13\note{You may like to use native Rockbox shortcuts instead. These can be
14 created from within Rockbox itself and have advanced capabilities.
15 See \reference{ref:Shortcutsplugin}.}