Compare commits

..

No commits in common. "da1e6dcee61d64494399f59eec23188842677dd1" and "d66d39f6921efc2caba3fa8a741c4369ce2620db" have entirely different histories.

4 changed files with 8 additions and 58 deletions

View File

@ -1,28 +0,0 @@
{
"title": "-Jukebox Played ;)",
"comment": "The highest rated music on random, discounting recently played. At least 1 play before.",
"any": [
{ "all": [
{"is": {"rating": 3}},
{"notInTheLast": {"lastPlayed": 90}},
{"isNot: {"playcount": 0}}
]},
{ "all": [
{"is": {"rating": 4}},
{"notInTheLast": {"lastPlayed": 30}},
{"isNot: {"playcount": 0}}
]},
{ "all": [
{"is": {"rating": 5}},
{"notInTheLast": {"lastPlayed": 15}},
{"isNot: {"playcount": 0}}
]},
{ "all": [
{"is": {"loved": true}},
{"notInTheLast": {"lastPlayed": 10}}
]}
],
"sort": "lastPlayed",
"order": "asc",
"limit": 1000
}

View File

@ -1,24 +0,0 @@
{
"title": "-Jukebox Unplayed;)",
"comment": "The highest rated unplayed music on random.",
"any": [
{ "all": [
{"is": {"rating": 3}},
{"is: {"playcount": 0}}
]},
{ "all": [
{"is": {"rating": 4}},
{"is: {"playcount": 0}}
]},
{ "all": [
{"is": {"rating": 5}},
{"is: {"playcount": 0}}
]},
{ "all": [
{"is": {"loved": true}},
{"is: {"playcount": 0}}
]}
],
"sort": "random",
"limit": 1000
}

View File

@ -1,10 +1,10 @@
{ {
"title": "-Jukebox All ;)", "title": "-Jukebox ;)",
"comment": "The highest rated music on random, discounting recently played.", "comment": "The highest rated music on random, discounting recently played.",
"any": [ "any": [
{ "all": [ { "all": [
{"is": {"rating": 3}}, {"is": {"rating": 3}},
{"notInTheLast": {"lastPlayed": 90}}, {"notInTheLast": {"lastPlayed": 90}}
]}, ]},
{ "all": [ { "all": [
{"is": {"rating": 4}}, {"is": {"rating": 4}},
@ -12,14 +12,14 @@
]}, ]},
{ "all": [ { "all": [
{"is": {"rating": 5}}, {"is": {"rating": 5}},
{"notInTheLast": {"lastPlayed": 15}} {"notInTheLast": {"lastPlayed": 10}}
]}, ]},
{ "all": [ { "all": [
{"is": {"loved": true}}, {"is": {"loved": true}},
{"notInTheLast": {"lastPlayed": 10}} {"notInTheLast": {"lastPlayed": 2}}
]} ]}
], ],
"sort": "lastPlayed", "sort": "lastPlayed",
"order": "asc", "order": "desc",
"limit": 1000 "limit": 1000
} }

View File

@ -5,7 +5,9 @@
{"any": [ {"any": [
{"inTheLast": {"dateadded": "90"}} {"inTheLast": {"dateadded": "90"}}
]}, ]},
{"notContains": {"genre": "Podcasts"}} {"notContains": {"genre": "Podcasts"}},
{"isNot": {"artist": "Graham Cluley & Carole Theriault"}},
{"isNot": {"artist": "freeCodeCamp Podcast"}}
], ],
"sort": "dateadded", "sort": "dateadded",
"order": "desc", "order": "desc",