diff options
Diffstat (limited to 'addons/skin.estuary/playlists')
13 files changed, 122 insertions, 0 deletions
diff --git a/addons/skin.estuary/playlists/inprogress_movies.xsp b/addons/skin.estuary/playlists/inprogress_movies.xsp new file mode 100644 index 0000000..722fa33 --- /dev/null +++ b/addons/skin.estuary/playlists/inprogress_movies.xsp @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="movies"> + <name>In-progress movies</name> + <match>all</match> + <rule field="inprogress" operator="true" /> + <limit>15</limit> + <order direction="descending">lastplayed</order> +</smartplaylist> diff --git a/addons/skin.estuary/playlists/mostplayed_albums.xsp b/addons/skin.estuary/playlists/mostplayed_albums.xsp new file mode 100644 index 0000000..0b6e241 --- /dev/null +++ b/addons/skin.estuary/playlists/mostplayed_albums.xsp @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="albums"> + <name>Most played albums</name> + <match>all</match> + <limit>15</limit> + <rule field="playcount" operator="greaterthan"> + <value>0</value> + </rule> + <order direction="descending">playcount</order> +</smartplaylist> diff --git a/addons/skin.estuary/playlists/random_albums.xsp b/addons/skin.estuary/playlists/random_albums.xsp new file mode 100644 index 0000000..80f85ff --- /dev/null +++ b/addons/skin.estuary/playlists/random_albums.xsp @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="albums"> + <name>Random albums</name> + <match>all</match> + <limit>15</limit> + <order direction="ascending">random</order> +</smartplaylist> diff --git a/addons/skin.estuary/playlists/random_artists.xsp b/addons/skin.estuary/playlists/random_artists.xsp new file mode 100644 index 0000000..dec3067 --- /dev/null +++ b/addons/skin.estuary/playlists/random_artists.xsp @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="artists"> + <name>Random artists</name> + <match>all</match> + <limit>15</limit> + <order direction="ascending">random</order> +</smartplaylist> diff --git a/addons/skin.estuary/playlists/random_movies.xsp b/addons/skin.estuary/playlists/random_movies.xsp new file mode 100644 index 0000000..44c040c --- /dev/null +++ b/addons/skin.estuary/playlists/random_movies.xsp @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="movies"> + <name>Random movies</name> + <match>all</match> + <limit>15</limit> + <order direction="descending">random</order> +</smartplaylist> diff --git a/addons/skin.estuary/playlists/random_musicvideo_artists.xsp b/addons/skin.estuary/playlists/random_musicvideo_artists.xsp new file mode 100644 index 0000000..3bcbc03 --- /dev/null +++ b/addons/skin.estuary/playlists/random_musicvideo_artists.xsp @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="musicvideos"> + <name></name> + <match>all</match> + <group>artists</group> + <order direction="ascending">random</order> +</smartplaylist> diff --git a/addons/skin.estuary/playlists/random_musicvideos.xsp b/addons/skin.estuary/playlists/random_musicvideos.xsp new file mode 100644 index 0000000..dfae0a3 --- /dev/null +++ b/addons/skin.estuary/playlists/random_musicvideos.xsp @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="musicvideos"> + <name>Random music videos</name> + <match>all</match> + <limit>15</limit> + <order direction="descending">random</order> +</smartplaylist> diff --git a/addons/skin.estuary/playlists/recent_unwatched_episodes.xsp b/addons/skin.estuary/playlists/recent_unwatched_episodes.xsp new file mode 100644 index 0000000..e56e88e --- /dev/null +++ b/addons/skin.estuary/playlists/recent_unwatched_episodes.xsp @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="episodes"> + <name>Recent Unwatched Episodes</name> + <match>all</match> + <rule field="dateadded" operator="after"> + <value>2012-01-01</value> + </rule> + <rule field="playcount" operator="lessthan"> + <value>1</value> + </rule> + <limit>15</limit> + <order direction="descending">dateadded</order> +</smartplaylist> diff --git a/addons/skin.estuary/playlists/recent_unwatched_movies.xsp b/addons/skin.estuary/playlists/recent_unwatched_movies.xsp new file mode 100644 index 0000000..9aa1531 --- /dev/null +++ b/addons/skin.estuary/playlists/recent_unwatched_movies.xsp @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="movies"> + <name>Recent Unwatched Movies</name> + <match>all</match> + <rule field="dateadded" operator="after"> + <value>2012-01-01</value> + </rule> + <rule field="playcount" operator="lessthan"> + <value>1</value> + </rule> + <limit>15</limit> + <order direction="descending">dateadded</order> +</smartplaylist> diff --git a/addons/skin.estuary/playlists/unplayed_albums.xsp b/addons/skin.estuary/playlists/unplayed_albums.xsp new file mode 100644 index 0000000..b64ad67 --- /dev/null +++ b/addons/skin.estuary/playlists/unplayed_albums.xsp @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="albums"> + <name>Unplayed albums</name> + <match>all</match> + <limit>15</limit> + <rule field="playcount" operator="is"> + <value>0</value> + </rule> + <order direction="ascending">random</order> +</smartplaylist> diff --git a/addons/skin.estuary/playlists/unwatched_movies.xsp b/addons/skin.estuary/playlists/unwatched_movies.xsp new file mode 100644 index 0000000..abc9624 --- /dev/null +++ b/addons/skin.estuary/playlists/unwatched_movies.xsp @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="movies"> + <name>Unwatched movies</name> + <match>all</match> + <rule field="playcount" operator="is"> + <value>0</value> + </rule> + <limit>15</limit> + <order direction="descending">random</order> +</smartplaylist> diff --git a/addons/skin.estuary/playlists/unwatched_musicvideos.xsp b/addons/skin.estuary/playlists/unwatched_musicvideos.xsp new file mode 100644 index 0000000..237dddc --- /dev/null +++ b/addons/skin.estuary/playlists/unwatched_musicvideos.xsp @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="musicvideos"> + <name>Unwatched music videos</name> + <match>all</match> + <rule field="playcount" operator="is"> + <value>0</value> + </rule> + <limit>15</limit> + <order direction="descending">random</order> +</smartplaylist> diff --git a/addons/skin.estuary/playlists/unwatched_tvshows.xsp b/addons/skin.estuary/playlists/unwatched_tvshows.xsp new file mode 100644 index 0000000..89c2209 --- /dev/null +++ b/addons/skin.estuary/playlists/unwatched_tvshows.xsp @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<smartplaylist type="tvshows"> + <name>Unwatched TV shows</name> + <match>all</match> + <rule field="numwatched" operator="is"> + <value>0</value> + </rule> + <rule field="numepisodes" operator="greaterthan"> + <value>0</value> + </rule> + <limit>15</limit> + <order direction="ascending">random</order> +</smartplaylist> |