Michael,

Where is the new version you want me to test ?
Do you have a link or was there supposed to be a file attached to your
last message ?

Anyway, I will verify if it works as soon as I get it.

If you have not found out yet, you would also need to change my code as
below to make it 6.5 compatible:

Code before:
my @plugins = Slim::Utils::PluginManager::enabledPlugins();

Change this to:
my @plugins;
if ($::VERSION ge '6.5') {
        @plugins = Slim::Utils::PluginManager::enabledPlugins();
}else {
        @plugins = Slim::Buttons::Plugins::enabledPlugins();
}


-- 
erland

Erland Isaksson
'My homepage' (http://erland.homeip.net) 'My download page'
(http://erland.homeip.net/download)
------------------------------------------------------------------------
erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=20016

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

Reply via email to