diff options
author | Miika Pekkarinen <miipekk@ihme.org> | 2006-08-26 22:00:22 +0000 |
---|---|---|
committer | Miika Pekkarinen <miipekk@ihme.org> | 2006-08-26 22:00:22 +0000 |
commit | 4f1a252aa168cea7f277f54d15594300d585627e (patch) | |
tree | 99a89fca1d5c89d04959fe8261f8c42a226f21d1 /apps/tagnavi.config | |
parent | d844cd2a0204ee4db6da0f3e2b185a1b8ee9291e (diff) |
Add %sort and %limit variables for better control of the tag browser
list format. Show most played 100 tracks.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10763 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagnavi.config')
-rw-r--r-- | apps/tagnavi.config | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/apps/tagnavi.config b/apps/tagnavi.config index ea12409396..55418718bf 100644 --- a/apps/tagnavi.config +++ b/apps/tagnavi.config @@ -1,16 +1,15 @@ -"Artists" artist : album : title = "%02d. %s" tracknum title -"Albums" album : title = "%02d. %s" tracknum title -"Genres" genre : artist : album : title = "%02d. %s" tracknum title -"Composers" composer : album : title = "%02d. %s" tracknum title -"Tracks" title -"Year" year ? year > "1000" & year < "2008" : artist : album : title = "%02d. %s" tracknum title +"Artist" artist : album : title = "%02d. %s" tracknum title +"Album" album : title = "%02d. %s" tracknum title +"Genre" genre : artist : album : title = "%02d. %s" tracknum title +"Composer" composer : album : title = "%02d. %s" tracknum title +"Track" title +"Year" year ? year > "1000" & year < "2008" : artist : album : title = "%02d. %s" tracknum title "Search by artist" artist ? artist ~ "" : album : title = "%02d. %s" tracknum title "Search by album" album ? album ~ "" : title = "%02d. %s" tracknum title "Search by title" title ? title ~ "" "Search by filename" filename ? filename ~ "" -"Search by year" artist ? year = "" : album : title = "%02d. %s" tracknum title "Search by score" title = "(%3d) %s" autoscore title ? autoscore > "" -"Most played tracks" title = "(%2d) %s" playcount title ? playcount > "1" +"Most played tracks" title = "(%3d) %s" playcount title %sort = "inverse" %limit = "100" ? playcount > "0" "Never played tracks" artist ? playcount == "0" : album : title = "%02d. %s" tracknum title "Best tracks" artist ? playcount > "1" & autoscore > "85" : album : title = "%02d. %s (%3d)" tracknum title autoscore "List played tracks" title = "(%3d/%d) %s" autoscore playcount title ? playcount > "0" |