I suspect the problem is that you have a lot of artists in your library.

Could you try remove the following two lines from the
Plugins/MultiLibrary/Templates/standard.xml file:

Code:
--------------------
    
  <parameter type="sqlmultiplelist" id="includedartists" name="Only include 
tracks for selected artists" data="select 
contributors.id,contributors.name,contributors.name from 
tracks,contributor_track,contributors where tracks.id=contributor_track.track 
and contributor_track.contributor=contributors.id and contributor_track.role in 
(1,5) group by contributors.id order by contributors.namesort asc" 
quotevalue="1"/>
  <parameter type="sqlmultiplelist" id="excludedartists" name="Exclude tracks 
for selected artists" data="select 
contributors.id,contributors.name,contributors.name from 
tracks,contributor_track,contributors where tracks.id=contributor_track.track 
and contributor_track.contributor=contributors.id and contributor_track.role in 
(1,5) group by contributors.id order by contributors.namesort asc" 
quotevalue="1"/>
  
--------------------


The result of this should be that the artists parameters are no longer
shown when creating or modifying a library.

If that doesn't help, try to also remove the following two lines:

Code:
--------------------
    
  <parameter type="sqlcheckboxes" id="includedgenres" name="Include genres" 
value="0" data="select id,name,name from genres order by namesort asc" 
quotevalue="1"/>
  <parameter type="sqlcheckboxes" id="excludedgenres" name="Exclude genres" 
value="0" data="select id,name,name from genres order by namesort asc" 
quotevalue="1"/>
  
--------------------


The result of this should be that the genre parameters are no longer
shown when creating or modifying a library.

If any of these things work, I'll consider including a pre-made
template for this in a future version.


-- 
erland

Erland Isaksson
'My homepage' (http://erland.isaksson.info) 'My download page'
(http://erland.isaksson.info/download)
(Developer of 'TrackStat, SQLPlayList, DynamicPlayList, Custom Browse,
Custom Scan,  Custom Skip, Multi Library and Database Query plugins'
(http://wiki.erland.isaksson.info/index.php/Category:SlimServer))
------------------------------------------------------------------------
erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=53066

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

Reply via email to