summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manual/plugins/imageviewer.tex11
-rw-r--r--manual/plugins/main.tex7
-rw-r--r--manual/plugins/ppmviewer.tex9
3 files changed, 11 insertions, 16 deletions
diff --git a/manual/plugins/imageviewer.tex b/manual/plugins/imageviewer.tex
index 28ef62e3a6..e3603fa6ce 100644
--- a/manual/plugins/imageviewer.tex
+++ b/manual/plugins/imageviewer.tex
@@ -3,12 +3,15 @@
3This plugin opens image files from the \setting{File Browser} to display them\nopt{lcd_color}{ using Rockbox's greyscale library}. Supported formats are as follows. 3This plugin opens image files from the \setting{File Browser} to display them\nopt{lcd_color}{ using Rockbox's greyscale library}. Supported formats are as follows.
4 4
5\begin{table} 5\begin{table}
6 \begin{rbtabular}{.60\textwidth}{llX}% 6 \begin{rbtabular}{.60\textwidth}{lX}%
7 {\textbf{Format}& \textbf{File-extension(s)}}% 7 {\textbf{Format}& \textbf{File-extension(s)}}%
8 {}{} 8 {}{}
9 BMP & \fname{.bmp} \\ 9 BMP & \fname{.bmp} \\
10 JPEG & \fname{.jpg, .jpe, .jpeg} \\ 10 JPEG & \fname{.jpg, .jpe, .jpeg} \\
11 PNG & \fname{.png} \\ 11 PNG & \fname{.png} \\
12 \opt{lcd_color}{
13 PPM & \fname{.ppm} \\
14 }
12 \end{rbtabular} 15 \end{rbtabular}
13\end{table} 16\end{table}
14 17
@@ -139,4 +142,10 @@ for JPEG images.
139Progressive scan and other unusual JPEG files are not supported, and will 142Progressive scan and other unusual JPEG files are not supported, and will
140result in various ``unsupported xx'' messages. Processing could also fail if the 143result in various ``unsupported xx'' messages. Processing could also fail if the
141image is too big to decode which will be explained by a respective message. 144image is too big to decode which will be explained by a respective message.
145
146\opt{lcd_color}{
147 Supported PPM files are both ASCII PPM (P3) and raw PPM (P6).
148 For more information about PPM files, see
149 \url{http://netpbm.sourceforge.net/doc/ppm.html}
150}
142} 151}
diff --git a/manual/plugins/main.tex b/manual/plugins/main.tex
index bc48bd229f..49dccdf2f9 100644
--- a/manual/plugins/main.tex
+++ b/manual/plugins/main.tex
@@ -140,7 +140,7 @@ option from the \setting{Context Menu} (see \reference{ref:Contextmenu}).}
140 Shortcuts & \fname{.link} & \\ 140 Shortcuts & \fname{.link} & \\
141 Chip-8 Emulator & \fname{.ch8} & \\ 141 Chip-8 Emulator & \fname{.ch8} & \\
142 Frotz & \fname{.z1 - .z8} & \\ 142 Frotz & \fname{.z1 - .z8} & \\
143 Image Viewer & \fname{.bmp, .jpg, .jpeg, .png} & \\ 143 Image Viewer & \fname{.bmp, .jpg, .jpeg, .png\opt{lcd_color}{, .ppm}} & \\
144 Lua scripting language& \fname{.lua} & \\ 144 Lua scripting language& \fname{.lua} & \\
145 \opt{swcodec}{\nopt{lowmem}{ 145 \opt{swcodec}{\nopt{lowmem}{
146 Midiplay & \fname{.mid, .midi} & \\ 146 Midiplay & \fname{.mid, .midi} & \\
@@ -154,9 +154,6 @@ option from the \setting{Context Menu} (see \reference{ref:Contextmenu}).}
154 Movie Player & \fname{.rvf} & \\ 154 Movie Player & \fname{.rvf} & \\
155 } 155 }
156 } 156 }
157 \opt{lcd_color}{
158 PPM viewer & \fname{.ppm} & \\
159 }
160 \opt{lcd_bitmap}{ 157 \opt{lcd_bitmap}{
161 \nopt{ondio}{% not enough buttons 158 \nopt{ondio}{% not enough buttons
162 Rockboy & \fname{.gb, .gbc} & \\ 159 Rockboy & \fname{.gb, .gbc} & \\
@@ -193,8 +190,6 @@ option from the \setting{Context Menu} (see \reference{ref:Contextmenu}).}
193\opt{swcodec}{\nopt{lowmem}{\input{plugins/mp3_encoder.tex}}} 190\opt{swcodec}{\nopt{lowmem}{\input{plugins/mp3_encoder.tex}}}
194 191
195 192
196\opt{lcd_color}{\input{plugins/ppmviewer.tex}}
197
198\opt{archosrecorder,archosfmrecorder,ondio}{\input{plugins/rockbox_flash.tex}} 193\opt{archosrecorder,archosfmrecorder,ondio}{\input{plugins/rockbox_flash.tex}}
199 194
200\opt{lcd_bitmap}{\nopt{% 195\opt{lcd_bitmap}{\nopt{%
diff --git a/manual/plugins/ppmviewer.tex b/manual/plugins/ppmviewer.tex
deleted file mode 100644
index 11a8dfc625..0000000000
--- a/manual/plugins/ppmviewer.tex
+++ /dev/null
@@ -1,9 +0,0 @@
1% $Id$ %
2\subsection{PPM viewer}
3This plugin opens \fname{.ppm} files from the \setting{File Browser}
4to display them. Exit the ppm viewer plugin by pressing any button.
5
6\note{Both ASCII PPM (P3) and raw PPM (P6) files are supported.}
7
8For more information about PPM files, see
9\url{http://netpbm.sourceforge.net/doc/ppm.html}