summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/SOURCES5
-rw-r--r--manual/plugins/main.tex2
-rw-r--r--manual/plugins/ppmviewer.tex11
3 files changed, 17 insertions, 1 deletions
diff --git a/apps/plugins/SOURCES b/apps/plugins/SOURCES
index 7eabed6..8b491f4 100644
--- a/apps/plugins/SOURCES
+++ b/apps/plugins/SOURCES
@@ -55,12 +55,15 @@ text_editor.c
wavview.c
robotfindskitten.c
+#if HAVE_LCD_COLOR
+ppmviewer.c
+#endif
+
/* Plugins needing the grayscale lib on low-depth LCDs */
fire.c
jpeg.c
mandelbrot.c
plasma.c
-ppmviewer.c
blackjack.c
bounce.c
diff --git a/manual/plugins/main.tex b/manual/plugins/main.tex
index 177d4c7..ab262f0 100644
--- a/manual/plugins/main.tex
+++ b/manual/plugins/main.tex
@@ -117,6 +117,8 @@ the associated file. Viewers are stored in the
\opt{lcd_bitmap}{\opt{swcodec}{\input{plugins/mpegplayer.tex}}}
+\opt{lcd_color}{\input{plugins/ppmviewer.tex}}
+
\opt{recorder,recorderv2fm,ondio}{\input{plugins/rockbox_flash.tex}}
\opt{recorder,recorderv2fm,h1xx,m5,lcd_color}{\input{plugins/rockboy.tex}}
diff --git a/manual/plugins/ppmviewer.tex b/manual/plugins/ppmviewer.tex
new file mode 100644
index 0000000..7de2b8c
--- /dev/null
+++ b/manual/plugins/ppmviewer.tex
@@ -0,0 +1,11 @@
+% $Id$ %
+\subsection{PPM viewer}
+Open a PPM file in the \setting{File Browser} to view it.
+
+ppmviewer exits when any button is pressed.
+
+\note{
+Both ASCII PPM (P3) and raw PPM (P6) files are supported.
+
+For more information about PPM files, see \url{http://netpbm.sourceforge.net/doc/ppm.html}
+}