Advertisement
Guest User

tagnavi.custom

a guest
May 25th, 2011
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. #! rockbox/tagbrowser/2.0
  2.  
  3. %format "fmt_title" "%d.%02d. %s - %02d:%02d" discnum tracknum title Lm Ls ? discnum > "0"
  4. %format "fmt_title" "%02d. %s - %02d:%02d" tracknum title Lm Ls ? tracknum > "0"
  5. %format "fmt_title" "%s - %02d:%02d" title Lm Ls
  6. %format "fmt_mostplayed" "%2d|%3d %s (%s)" playcount autoscore title artist %sort = "inverse" %limit = "100"
  7. %format "fmt_lastplayed" "%06d%s - %s" lastplayed artist title %sort = "inverse" %limit = "99" %strip = "6"
  8. %format "fmt_forgotten" "%06d%s - %s" lastplayed artist title %limit = "99" %strip = "6"
  9. %format "fmt_best_tracks" "%02d. %s (%3d)" tracknum title autoscore
  10. %format "fmt_score" "(%3d) %s-%s" autoscore title artist
  11. %format "fmt_rating" "(%2d) %s-%s" rating title artist %sort = "inverse"
  12.  
  13. # "History"
  14.  
  15. %menu_start "menu-history" "History"
  16. "Favourite Artists" -> artist ? playcount > "3" & autoscore > "85" -> album -> title = "fmt_best_tracks"
  17. "Favourite Albums" -> album ? playcount > "3" & autoscore > "85" -> title = "fmt_best_tracks"
  18. "Forgotten Favourites" -> title = "fmt_forgotten" ? playcount > "3" & autoscore > "85"
  19. "Most Played" -> title = "fmt_mostplayed" ? playcount > "0"
  20. "Never Played" -> artist ? playcount == "0" -> album -> title = "fmt_title"
  21. "New Favourites" -> artist ? playcount <= "3" & autoscore > "85" -> album -> title = "fmt_best_tracks"
  22. "Recent Favourites" -> title = "fmt_lastplayed" ? playcount > "3" & autoscore > "85"
  23. "Recently Played" -> title = "fmt_lastplayed" ? playcount > "0"
  24.  
  25. # "Same As Current"
  26.  
  27. %menu_start "menu-same-as-current" "Same As Current"
  28. "Album" -> title = "fmt_title" ? album = "#album#"
  29. "Artist" -> album ? artist = "#artist#" -> title = "fmt_title"
  30. "Composer" -> title = "fmt_title" ? composer = "#composer#"
  31. "Directory" -> title ? filename ^ "#directory#"
  32. "Title" -> title = "fmt_title" ? title = "#title#"
  33.  
  34. # "Search"
  35.  
  36. %menu_start "menu-search" "Search"
  37. "Album" -> album ? album ~ "" -> title = "fmt_title"
  38. "Album Artist" -> albumartist ? albumartist ~ "" -> album -> title = "fmt_title"
  39. "Artist" -> artist ? artist ~ "" -> album -> title = "fmt_title"
  40. "Filename" -> filename ? filename ~ ""
  41. "Title" -> title = "fmt_title" ? title ~ ""
  42. "Rating" -> title = "fmt_rating" ? rating > ""
  43.  
  44. # "Database" Main Menu
  45.  
  46. %menu_start "menu-database" "Database"
  47. "Album" -> album -> title = "fmt_title"
  48. "Album Artist" -> albumartist -> album -> title = "fmt_title"
  49. "Artist" -> artist -> album -> title = "fmt_title"
  50. "Genre" -> genre -> artist -> album -> title = "fmt_title"
  51. "History" ==> "menu-history"
  52. "Rating" -> rating -> title = "fmt_title"
  53. "Same As Current" ==> "menu-same-as-current"
  54. "Search" ==> "menu-search"
  55. "Track" -> title
  56. "Year" -> year ? year > "0" -> artist -> album -> title = "fmt_title"
  57.  
  58. %root_menu "menu-database"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement