summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Kukla <roolku@rockbox.org>2008-02-13 12:34:47 +0000
committerRobert Kukla <roolku@rockbox.org>2008-02-13 12:34:47 +0000
commit09fc078bf57e44c7168073360ece3565e81d4a5d (patch)
treeaf57b0027aca0428b8ad699e1ac9b7dcf099ccd9
parent06971be8cd75234e76adab165e8c28275b2ab080 (diff)
downloadrockbox-09fc078bf57e44c7168073360ece3565e81d4a5d.tar.gz
rockbox-09fc078bf57e44c7168073360ece3565e81d4a5d.zip
FS#8604 - A snippet about ignoring directories during database initializing
and updated table of supported tags git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16301 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--manual/rockbox_interface/tagcache.tex46
1 files changed, 37 insertions, 9 deletions
diff --git a/manual/rockbox_interface/tagcache.tex b/manual/rockbox_interface/tagcache.tex
index 8f7a942eb6..c489eb65ee 100644
--- a/manual/rockbox_interface/tagcache.tex
+++ b/manual/rockbox_interface/tagcache.tex
@@ -17,6 +17,18 @@ If you shut down your player, the scan will continue next time you turn it on.
17After the scan is finished you may be prompted to restart your \dap{} before 17After the scan is finished you may be prompted to restart your \dap{} before
18you can use the database. 18you can use the database.
19 19
20\subsubsection{Ignoring directories during database initialization}
21
22You may have directories on your \dap{} whose contents should not be added
23to the database. Placing a file named \fname{database.ignore} in a directory
24will exclude the files in that directory and all its subdirectories from
25scanning their tags and adding them to the database. This will speed up the
26database initialization.
27
28If a subdirectory of an 'ignored' directory should still be scanned, place a
29file named \fname{database.unignore} in it. The files in that directory and
30its subdirectories will be scanned and added to the database.
31
20\subsection{\label{ref:databasemenu}The Database Menu} 32\subsection{\label{ref:databasemenu}The Database Menu}
21 33
22\begin{description} 34\begin{description}
@@ -103,16 +115,32 @@ to RAM.}
103\begin{center} 115\begin{center}
104 \begin{tabularx}{.75\textwidth}{XX}% 116 \begin{tabularx}{.75\textwidth}{XX}%
105 \toprule% 117 \toprule%
106 \textbf{Supported Tags} & \textbf{Unsupported Tags} \\ 118 \textbf{Tag} & \textbf{Type} & \textbf{Origin} \\
107 \midrule 119 \midrule
108 Artist & Comment \\ 120 filename & string & system \\
109 Album & Performer\\ 121 album & string & id tag \\
110 Bitrate & \\ 122 albumartist & string & id tag \\
111 Composer & \\ 123 artist & string & id tag \\
112 Genre & \\ 124 comment & string & id tag \\
113 Length & \\ 125 composer & string & id tag \\
114 Title & \\ 126 genre & string & id tag \\
115 Track Number & \\ 127 grouping & string & id tag \\
128 title & string & id tag \\
129 bitrate & numeric & id tag \\
130 discnum & numeric & id tag \\
131 year & numeric & id tag \\
132 tracknum & numeric & id tag/filename \\
133 autoscore & numeric & runtime db \\
134 lastplayed & numeric & runtime db \\
135 playcount & numeric & runtime db \\
136 Pm (play time - min) & numeric & runtime db \\
137 Ps (play time - sec) & numeric & runtime db \\
138 rating & numeric & runtime db \\
139 commitid & numeric & system \\
140 entryage & numeric & system \\
141 length & numeric & system \\
142 Lm (track len - min) & numeric & system \\
143 Ls (track len - sec) & numeric & system \\
116 \bottomrule 144 \bottomrule
117 \end{tabularx} 145 \end{tabularx}
118\end{center} 146\end{center}