diff options
author | Miika Pekkarinen <miipekk@ihme.org> | 2006-07-15 17:36:25 +0000 |
---|---|---|
committer | Miika Pekkarinen <miipekk@ihme.org> | 2006-07-15 17:36:25 +0000 |
commit | 45dfe2a36f03d1ada7036dedb50fb98d7c5421b2 (patch) | |
tree | 866a57b677dce40ef5b772e1514a9ec6a35f60ea /apps/tagnavi.config | |
parent | e60cb43a982e03b062bd42dbe260abca299fe14d (diff) |
Initial runtimedb support for tagcache. Only for developers,
statistical data will be lost in future until changelogs has been
implemented.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10217 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagnavi.config')
-rw-r--r-- | apps/tagnavi.config | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/apps/tagnavi.config b/apps/tagnavi.config index 2b00d59e1c..285f826425 100644 --- a/apps/tagnavi.config +++ b/apps/tagnavi.config @@ -1,11 +1,16 @@ -"Artists" artist : album : title -"Albums" album : title -"Genres" genre : artist : album : title -"Composers" composer : album : title +"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 -"Search by artist" artist ? artist ~ "" : album : title -"Search by album" album ? album ~ "" : 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 year" artist ? year = "" : album : title +"Search by year" artist ? year = "" : album : title = "%02d. %s" tracknum title +"Search by score" title = "(%3d) %s" autoscore title ? autoscore > "" +"Most played tracks" title = "(%d) %s" playcount title ? playcount > "1" +"Never played tracks" artist ? playcount == "0" : album : title = "%02d. %s" tracknum title +"Best tracks" title ? autoscore > "60" & playcount > "1" "Example 1" artist ? year >= "2000" & artist ^ "a" : album : title "Example 2" genre ? genre ~ "metal" : artist ? year >= "2000" : album ? year >= "2000" : title +"List played tracks" title = "(%3d/%d) %s" autoscore playcount title ? playcount > "0" |