Just had a very quick play in WebUI, and notice a few things:

1. Went to "Custom Browse > Tags > Years > 2008 > Genre", and clicked "Create 
mixed tag SQL Playlist" on the Rock genre.
This created a template named "Random for Rock" - it would be nice if the 
default name included all selected values, eg "Random for 2008 Rock".

2. Saved the playlist and played it.  However, it played random songs from 
genre=Rock, not constrained to year=2008.  The template has mixed tag name YEAR 
equal to 2008, and switching to custom SQL looks okay:

-- PlaylistName:Random for Rock
-- PlaylistGroups:
select tracks.url from tracks
        left join dynamicplaylist_history on
                tracks.id=dynamicplaylist_history.id and 
dynamicplaylist_history.client='PlaylistPlayer'
        join customscan_track_attributes mixedtag1 on
                tracks.id=mixedtag1.track and mixedtag1.module='mixedtag' and 
mixedtag1.attr='YEAR' and mixedtag1.value ='2008'
        
        join customscan_track_attributes mixedtag2 on
                tracks.id=mixedtag2.track and mixedtag2.module='mixedtag' and 
mixedtag2.attr='GENRE' and mixedtag2.value ='Rock'
                
        where
                tracks.audio=1
        group by tracks.id
        order by rand()
        limit 10;

3. The templates it creates are always random tracks.  Is it possible to select 
an option to create random albums?

4. I then navigated to "Custom Browse > Dynamic Mixed Tags > Years", and 
clicked "Create mixed tag SQL Playlist" on 2008.
This created a template named "Random for 2008", but it also contained a filter 
on GENRE=Rock. i.e. previous selected items were also included.

Phil
_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/plugins

Reply via email to