Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #! rockbox/tagbrowser/2.0
- %format "fmt_podcast" "%s - %s (%s)" title artist filename
- # Listened-to files sorted by playing order, most recently played at the top
- %format "fmt_podcast_old" "%06d%s - %s - %s" lastplayed album title artist %sort = "inverse" %strip = "6"
- # Recently added files
- %format "fmt_podcast_new" "%06d%s - %s - %s" entryage album title artist %strip = "6"
- %menu_start "custom" "Podcasts"
- "All podcasts" -> album ? filename ^ "/PODCASTS" -> title = "fmt_podcast"
- # There's no logical-or operator?!?
- #"Unfinished Podcasts" -> album ? filename ^ "/PODCASTS" & playcount == "0" | lastoffset > "0" -> title = "fmt_podcast"
- "Unplayed Podcasts" -> album ? filename ^ "/PODCASTS" & playcount == "0" -> title = "fmt_podcast"
- "Resumable Podcasts" -> title = "fmt_podcast_old" ? filename ^ "/PODCASTS" & lastoffset > "0"
- "Recently Added" -> title = "fmt_podcast_new" ? filename ^ "/PODCASTS" & entryage < "6" & commitid > "0"
- "Completed Podcasts" -> title = "fmt_podcast_old" ? filename ^ "/PODCASTS" & playcount > "0" & lastoffset == "0"
- %menu_start "audiobooks" "Audiobooks"
- "All audiobooks" -> album ? filename ^ "/AUDIOBOOKS" -> title = "fmt_podcast"
- "Unplayed Audiobooks" -> album ? filename ^ "/AUDIOBOOKS" & playcount == "0" -> title = "fmt_podcast"
- "Resumable Audiobooks" -> album ? filename ^ "/AUDIOBOOKS" & lastoffset > "0" -> title = "fmt_podcast"
- "Recently Added" -> album ? filename ^ "/AUDIOBOOKS" & entryage < "6" & commitid > "0" -> title = "fmt_podcast"
- "Played Audiobooks" -> title = "fmt_podcast_old" ? filename ^ "/AUDIOBOOKS" & playcount > "0"
- ######################################################################
- %menu_start "custom_main" "Main menu"
- "Podcasts" ==> "custom"
- "Audiobooks" ==> "audiobooks"
- "Artist" -> artist ? filename ^ "/MUSIC" -> album -> title = "fmt_title"
- "Album Artist" -> albumartist ? filename ^ "/MUSIC" -> album -> title = "fmt_title"
- "Album" -> album ? filename ^ "/MUSIC" -> title = "fmt_title"
- "Genre" -> genre ? filename ^ "/MUSIC" -> artist -> album -> title = "fmt_title"
- #"Composer" -> composer ? filename ^ "/MUSIC" -> album -> title = "fmt_title"
- "Track" -> title ? filename ^ "/MUSIC"
- "Year" -> year ? year > "0" & filename ^ "/MUSIC" -> artist -> album -> title = "fmt_title"
- "User Rating" -> rating ? filename ^ "/MUSIC" -> title = "fmt_title"
- "Recently Added" -> album ? entryage < "6" & commitid > "0" -> title = "fmt_title"
- "A to Z..." ==> "a2z"
- "History..." ==> "runtime"
- "Same as current..." ==> "same"
- "Search..." ==> "search"
- %root_menu "custom_main"
- #EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement