diff options
author | Thomas Martitz <kugel@rockbox.org> | 2009-03-01 22:12:26 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2009-03-01 22:12:26 +0000 |
commit | 127fb96195b9d9e5dabddebb7a9d17229be9a0ca (patch) | |
tree | 1ba772a070031e7423a5d98ffa510434a173f454 | |
parent | 912b24f0788114314704966a443ad8666fc99637 (diff) |
Document the new sorting feature in our fine manual.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20157 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | manual/configure_rockbox/file_view.tex | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/manual/configure_rockbox/file_view.tex b/manual/configure_rockbox/file_view.tex index 8304dd18ad..66bb8c075b 100644 --- a/manual/configure_rockbox/file_view.tex +++ b/manual/configure_rockbox/file_view.tex @@ -19,6 +19,31 @@ displays files. \setting{Sort Directories} are available in this option. In addition, there is a \setting{By type} option which sorts files alphabetically by their type (such as \fname{.mp3}) then alphabetically within each type. + +\item[Interpret numbers when sorting:] + \setting{As whole numbers} enables a sorting algorithm which is similar to + the default sorting of, for example, Windows Explorer, Mac OS X's Finder + or Nautilus, with regards to numbers at the beginning or within file names. + It combines consecutive digits to numbers and uses this numbers for sorting. + \newline\setting{As whole numbers} disables this algorithm, and causes every digit to + be compared separately. + \begin{table}[h] + \centering + \caption{Example Sorting} + \begin{tabular}{ll} + \hline\hline + As whole numbers & As digits\\ + \hline + 1 Ring Of Fire.mp3 & 03 Jackson.mp3\\ + 2 I Walk The Line.mp3 & 1 Ring Of Fire.mp3\\ + 03 Jackson.mp3 & 10 A Thing Called Love.mp3\\ + 10 A Thing Called Love.mp3 & 2 I Walk The Line.mp3\\ + Episode 1.ogg & Episode 1.ogg\\ + Episode 2.ogg & Episode 10.ogg\\ + Episode 10.ogg & Episode 2.ogg\\ + \end{tabular} + \end{table} + \item[\label{ref:ShowFiles}Show Files:] This option controls which files are displayed in the File Browser. |