Re: [SlimDevices: Plugins] Announce: Spotify Premium Plugin (Beta)

2011-10-13 Thread soulgazer

Hi Triode

Thank you for clearing that up... Have installed it and it works
flawlessly on my sheevaplug/squeezeplug...

Couldn't get the Logitech app. to work. Kept giving me 401 errors - so
I'm a very happy camper...

Now - if I could just change the icon to another one... ;O)


-- 
soulgazer

soulgazer's Profile: http://forums.slimdevices.com/member.php?userid=18681
View this thread: http://forums.slimdevices.com/showthread.php?t=79706

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] spotifyd.exe - RtlCaptureStackBackTrace error

2011-10-13 Thread ccowap

Hi
Appologies for the delay - just checked the forum.
Will try this tonight - many thanks
I did previously have another error message generated by the same
source, but this was cleared by copying a later version of a windows
system file over (might have been part of the C++ add on) but stupidly
i didnt document what it was, but it got me over that hurdle and
pesented this current one.


-- 
ccowap

ccowap's Profile: http://forums.slimdevices.com/member.php?userid=42359
View this thread: http://forums.slimdevices.com/showthread.php?t=90818

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] MOG -- Any update on App/Plug-In

2011-10-13 Thread MeSue

aubuti;662937 Wrote: 
 ...And see what the Logitech buyout of Napster brings

Might want to fix that typo before the rumors start flying!


-- 
MeSue

SUE

1 Duet | 2 Booms | 1 Radio | 1 Touch | 1 SB2 
HP MediaSmart EX470 | Squeezebox Server 7.6 | iPod Touch  iPad w/
iPeng
Find me on 'Last.FM' (http://www.last.fm/user/MeSue) | 'Twitter'
(http://twitter.com/suechastain)

MeSue's Profile: http://forums.slimdevices.com/member.php?userid=985
View this thread: http://forums.slimdevices.com/showthread.php?t=90645

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


[SlimDevices: Plugins] Custom Browse Menu- Need Coding Advice

2011-10-13 Thread aeo12

I'm trying to design a menu that first chooses Artist (Band), then
Comment, then Album.  I've succeeded so far in listing all the Comments
associated with a selected Artist, but when I select a specific Comment,
I don't get any matching Albums.  The code I have so far is shown below.
Any suggestion on what I need to change to get this menu to work
correctly?  

?xml version=1.0 encoding=utf-8?
custombrowse
menu
menunameComment/menuname
menuorder50/menuorder
menu
idartist/id
menunameComment/menuname
itemtypeartist/itemtype
menutypesql/menutype
menulinksalpha/menulinks
menudata
select
contributors.id,contributors.name,substr(contributors.namesort,1,1)
from contributors,contributor_album,albums
where 
contributor_album.contributor=contributors.id and
contributor_album.album=albums.id and
contributor_album.role in (4) 
group by contributors.id 
order by contributors.namesort asc
/menudata
menu
idcomment/id
menunameAlbums/menuname
itemtypecomment/itemtype
pathtypesql/pathtype
pathtypedata
select distinct comments.value,comments.value from comments 
where   

value='{context.itemid}'
/pathtypedata
menutypesql/menutype
menudata
select comments.id,comments.value from
tracks,comments,contributor_track 
where
tracks.id=contributor_track.track and
contributor_track.contributor={artist} and
comments.value is not null and
comments.value not like 'http%' and
comments.value not like '%:http%'
and comments.track=tracks.id
group by comments.value
/menudata
menu
idalbum/id
menunameSongs/menuname
itemtypealbum/itemtype
itemformatalbum/itemformat
menutypesql/menutype
menudata
select albums.id,albums.title,substr(albums.titlesort,1,1) from
contributor_track,tracks,albums,comments 
where 
tracks.audio=1 and 
tracks.album=albums.id and 
tracks.id=contributor_track.track and
contributor_track.role in (4) and   

contributor_track.contributor={artist} and
tracks.id=comments.track and
comments.value='{comments}' 
group by albums.id 
order by albums.titlesort asc
/menudata
menu
idtrack/id
itemtypetrack/itemtype
itemformattrack/itemformat
playtypeall/playtype
menutypesql/menutype
menudata
select tracks.id,tracks.title from tracks,contributor_track,comments 
where 
tracks.audio=1 and 
contributor_track.track=tracks.id and 
contributor_track.role in (4) and   

tracks.album={album} and 
contributor_track.contributor={artist} and
tracks.id=comments.track and
comments.value='{comments}'
group by tracks.id 
order by tracks.disc,tracks.tracknum asc,tracks.titlesort asc
/menudata
menu
idtrackdetails/id
menutypetrackdetails/menutype
menudatatrack/menudata
/menu
/menu
/menu
/menu
/menu
/menu
/custombrowse


-- 
aeo12

aeo12's Profile: http://forums.slimdevices.com/member.php?userid=10883
View this thread: http://forums.slimdevices.com/showthread.php?t=90927

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Solution: TrackStat data to iTunes export on Mac OS

2011-10-13 Thread prabbit

I am having the same issues as both slope_rabbit (no relation =)) and
netchord. Using your tip to netchord, I was able to modify the script
so that I can choose the TrackStat_iTunes_Complete.txt file. Yes, it
was grayed out and unable before I modified the script.

The more pressing issue, actually, is the date and time issue that
slope_rabbit had. The first thing I tried was changing my Date  Time
to Germany, but that didn't help so I set the Date  Time back to
United States. The second thing I tried was using the debugger tool
provided on 2010-12-13 12:08. When I run that I get this message  (I
had to type it and this is exactly how it appears, except I removed
line breaks):

There has been an error:
Failed conversion of ''20110406100221 using format ''%Y%m%d%H%M%S
date: illegal time format
usage: date [-jnu][-d dst][-r seconds][-t west][-v
[+|-]val[ymwdHMS]]...[-f fmt date | [[[mm]dd]HH]MM[[cc]yy][.ss]]
[+format]

A couple things to note:
1. I assume some developer other than you was responsible for the
message. I specifically used '' (two apostrophe) characters instead of
 (quotation marks) because that is what appears in the error message.
I presume it's benign, but wanted to mention it.
2. Notice how the format was %Y%m%d%H%M%S (using an uppercase %Y), but
the usage seems to indicate that it should be lowercase. I'm not a
script writer, so I'm not certain it's a mistake. Just mentioning it.


Finally, this is the entry (the first one) in my
TrackStat_iTunes_Complete.txt file:

Offshore|||/Volumes/MediaFiles/mp3_only/flac/Chicane/The Best of
Chicane 1996-2008/2008 ¬ 1-1 ¬
Offshore.mp3|played|20110406100221|51|1|1316128156

Any insight or thoughts? Is there anything you need from me?


-- 
prabbit

prabbit's Profile: http://forums.slimdevices.com/member.php?userid=11142
View this thread: http://forums.slimdevices.com/showthread.php?t=83307

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Beta version of SvrPowerControl

2011-10-13 Thread castalla

Why do I get a message saying starthidden.exe is not found (only in the
beta 7.7)?

No message if SPC is disabled.


-- 
castalla

1 Touch - cheap unbranded optical cable - old Sony Microsystem -
Aqustics Q10 speakers - 2 duff ears - purrfekt!

castalla's Profile: http://forums.slimdevices.com/member.php?userid=15624
View this thread: http://forums.slimdevices.com/showthread.php?t=48521

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] iPeng support thread

2011-10-13 Thread darkrail

Hello Pippin,

Since early-adopting iOS5 yesterday, both my iPhone's iPeng and my
iPad's iPengHD are crashing like crazy.  When I go to switch players or
stations, I get an error like this:


 Unexpected response '{
  channel =
  / (a bunch of crazy letters and numbers)/slim/request;
  error = invalid request: [\00:04:20:22:83:a2\,
  [/music_services\, 0, 100]] Unknown in dispat#8230;.
  
  On the iPad, the error is quickly followed by a crash (it quits and
  goes back to the home screen).  On the iPhone, the crash doesn't tend
  to happen until I touch something, anything.  I used to get this error
  with some regularity, but previously I could just ignore it with no
  crashes.  Now I get the error constantly and it crashes the program
  to the point of being unusable.  
  
  Might this be something stupid I'm doing, or could it be an iOS5
  compatibility you haven't ironed out yet?
  
  Further info:  I only use Pandora, and I only use mysqueezebox.com's
  server (as opposed to a local computer with the Squeezebox Server
  software).  And I am using the most recent version of both iPengs.  
  
  Thanks for your time.  I've loved iPeng for a couple years now : ) 
  
  --Dave


-- 
darkrail

darkrail's Profile: http://forums.slimdevices.com/member.php?userid=46242
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Custom Browse Menu- Need Coding Advice

2011-10-13 Thread erland

aeo12;663114 Wrote: 
 I'm trying to design a menu that first chooses Artist (Band), then
 Comment, then Album.  I've succeeded so far in listing all the Comments
 associated with a selected Artist, but when I select a specific Comment,
 I don't get any matching Albums.  The code I have so far is shown below.
 Any suggestion on what I need to change to get this menu to work
 correctly?  
 
 
Since you are using idcomment/id you should use {comment} and not
{comments}.


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). If my answer
helped you and you like to encourage future presence on this forum
and/or third party plugin/applet development, 'donations are always
appreciated' (http://erland.isaksson.info/donate))
Interested in music discovery ? See 'Social Music Discovery (SMD)'
(http://forums.slimdevices.com/showthread.php?p=656713) project.

erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=90927

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2011-10-13 Thread tuc

Hi Erland

Thanks for your many nice plug-ins. They really enhance SB
functionality in a major way. 

I have a wish/question which possibly is a request for a new feature:
I often find myself wanting to listen to a playlist I put together a
couple of days ago (which I, at that time, couldn't be asked to create
a named playlist for).

So far I know of no plugin that provides playlist history i.e. a list
of recently used active playlists. I am not necessarily talking about
a history of named/defined playlist, but merely a list of playlists
that have been active on a given player/server recently.

I posted a similar question in the the thread about Playlist Manager
and got the reply that SQL-playlist and TrackStat maybe could do the
trick. Perhaps I am not good enough in writing SQL, but I would think
it is not possible, however I guess you can come very close to what I
want. (The last played album also comes pretty close). 

Another situation where playlist history would be useful is when you
have put together a playlist and then a friend (or myself) accidentally
presses play on a single song which with my setup replaces the playlist
by one song. I am positive that everyone has done this at least once.
AFAIK there is no way to get the playlist back outside of re-entering
it. 

Am I the only one who would find this useful? 
Thanks for your time and keep up the good work ;-)


-- 
tuc

--
Server:  Atom D510 running Ubuntu 10.10 with 2 GB RAM
Players: SB receiver + 2 SB boom, all players synchronized
Remotes: SB controller + HTC legend with SqueezeCommander

tuc's Profile: http://forums.slimdevices.com/member.php?userid=34475
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] iPeng support thread

2011-10-13 Thread Thg6276

Good day,

Ipod Touch 
Ipeng last version downloaded today
iOS 5 not installed yet

My iPod have lost the wifi connection and since this time no server
found.

Impossible to connect the iPod to Squeezebox Server.

I've tried to fix the problem this evening but without any results.
Possible to reset iPeng ?


-- 
Thg6276

Thg6276's Profile: http://forums.slimdevices.com/member.php?userid=18303
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: License Manager, plugins/applets going commercial

2011-10-13 Thread TFKFlowerchild

Can find License Manager plugin in sbs please help!!!


-- 
TFKFlowerchild

TFKFlowerchild's Profile: http://forums.slimdevices.com/member.php?userid=34156
View this thread: http://forums.slimdevices.com/showthread.php?t=90410

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Custom Browse Menu- Need Coding Advice

2011-10-13 Thread aeo12

erland;663136 Wrote: 
 Since you are using idcomment/id you should use {comment} and not
 {comments}.

Thanks.  I made that change and the menu still isn't working.  Is

comments.value='{comment}'

the correct expression to use?


-- 
aeo12

aeo12's Profile: http://forums.slimdevices.com/member.php?userid=10883
View this thread: http://forums.slimdevices.com/showthread.php?t=90927

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] iPeng support thread

2011-10-13 Thread cvj

After downloading the latest version of iPeng I noticed that the Shuffle
button has been replaced by a thumbs up.

How do I shuffle the playlist? And what does the thumbs up button do?


-- 
cvj

cvj's Profile: http://forums.slimdevices.com/member.php?userid=2979
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] iPeng support thread

2011-10-13 Thread Ikabob

cvj;663170 Wrote: 
 After downloading the latest version of iPeng I noticed that the Shuffle
 button has been replaced by a thumbs up.
 
 How do I shuffle the playlist? And what does the thumbs up button do?

Good question. I hadn't noticed the missing shuffle button and also,
the repeat button. Probably an oversight .


-- 
Ikabob

Ikabob


Squeezebox Touch w/SBS; SAE Amplifier;Marantz Pre-amp;ESS Heil
Speakers(main listening speakers plus various additional speakers). 
Multiple players: SqueezeBooms,SqueezeRadios; SB3;
Services:Slacker;Sky.com; Spotify (Triode's Spotify plugin)
Sirius.com;
Ipeng remote controller.

Ikabob's Profile: http://forums.slimdevices.com/member.php?userid=32088
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] iPeng support thread

2011-10-13 Thread pippin

cvj;663170 Wrote: 
 After downloading the latest version of iPeng I noticed that the Shuffle
 button has been replaced by a thumbs up.
 
 How do I shuffle the playlist? And what does the thumbs up button do?

That has nothing to do with the latest version of iPeng but you are
probably playing a Spotify Playlist?

It's the Spotify plugin which replaces the button and I think you can't
shuffle Spotify playlists.

The thubmbs up button adds the currently playing track to the
starred tracks playlist, in this case.


-- 
pippin

---
see iPeng, the Squeezebox iPhone remote and 
*New: iPeng for iPad*, at penguinlovesmusic.com

pippin's Profile: http://forums.slimdevices.com/member.php?userid=13777
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] iPeng support thread

2011-10-13 Thread pippin

darkrail;663134 Wrote: 
 Hello Pippin,
 
 Since early-adopting iOS5 yesterday, both my iPhone's iPeng and my
 iPad's iPengHD are crashing like crazy.  When I go to switch players or
 stations, I get an error like this:
 
 
 Unexpected response '{
   channel =
   / (a bunch of crazy letters and numbers)/slim/request;
   error = invalid request: [\00:04:20:22:83:a2\,
   [/music_services\, 0, 100]] Unknown in dispat….
   
   On the iPad, the error is quickly followed by a crash (it quits and
   goes back to the home screen).  On the iPhone, the crash doesn't
   tend to happen until I touch something, anything.  I used to get
   this error with some regularity, but previously I could just ignore
   it with no crashes.  Now I get the error constantly and it crashes
   the program to the point of being unusable.  
   
   Might this be something stupid I'm doing, or could it be an iOS5
   compatibility you haven't ironed out yet?
   
   Further info:  I only use Pandora, and I only use
   mysqueezebox.com's server (as opposed to a local computer with the
   Squeezebox Server software).  And I am using the most recent
   version of both iPengs.  
   
   Thanks for your time.  I've loved iPeng for a couple years now : )
   
   
   --Dave  
 
 Have you updated to the latest iPeng release (1.4.2 or 1.2.2 on
 iPad)?
 That error message usually means you have switched to
 MySqueezebox.com from a no longer existing Squeezebox Server.
 
 What exactly do you mean by go to switch player and go to switch
 stations? Switch player is a plugin only available when you use the
 Squeezebox Server and I don't exactly understand what you mean by
 switch stations.
 
 I just tried Pandora on iOS 5 with MySB and it works fine for me.
 
  Thg6276;663143 Wrote: 
  Good day,
  
  Ipod Touch 
  Ipeng last version downloaded today
  iOS 5 not installed yet
  
  My iPod have lost the wifi connection and since this time no server
  found.
  
  Impossible to connect the iPod to Squeezebox Server.
  
  I've tried to fix the problem this evening but without any results.
  Possible to reset iPeng ?
  
  BTW no problem with the SB controller , servers are correctly found and
  I can listen my music, problem is only with iPeng.  
 
 Well, if you can't connect your iPod to WiFi then that's the problem.
 iPeng needs WiFi to communicate to your server. You need to somehow
 get your WiFi connection of you iPod fixed.
 What are the iPod's WiFi settings showing?


-- 
pippin

---
see iPeng, the Squeezebox iPhone remote and 
*New: iPeng for iPad*, at penguinlovesmusic.com

pippin's Profile: http://forums.slimdevices.com/member.php?userid=13777
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] iPeng support thread

2011-10-13 Thread darkrail

pippin;663179 Wrote: 
 What exactly do you mean by go to switch player and go to switch
 stations? Switch player is a plugin only available when you use the
 Squeezebox Server and I don't exactly understand what you mean by
 switch stations

Yes I'm on 1.4.2 and 1.2.2

go to switch stations means when I choose a different station within
Pandora.  In your app it's called Your Stations.  Clicking on that
has always gotten me my list of stations, now it gets me a crash.

go to switch player means when I switch to a different physical
Squeezebox in my house--I have three Touches and one Boom.  In your
app, I swipe to the right from the NOW PLAYING screen and see a list of
my players.  Tapping on a player lets me control that player.  But now,
tapping on a player gets me a crash.  

Hitting PLAY or turning on a player also causes crashes now, but those
are more intermittent. 

In simple terms, most anything I do makes it crash.   

I'm glad it's working on your end, but it's completely not working on
my end.  I've used your app daily for a couple years, and these
problems started right when I upgraded the iPad and iPhone to iOS5, and
the issue is nearly the same on both iPad and iPhone.  Please let me
know if you have any suggestions or if I can give you any further
information to help you troubleshoot.  Thanks.


-- 
darkrail

darkrail's Profile: http://forums.slimdevices.com/member.php?userid=46242
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: License Manager, plugins/applets going commercial

2011-10-13 Thread Necromancyr

Am I correct in thinking that this uses an internet-requiring 'phone
home' method of checking licensed status?  (meaning that if the server
that confirms the license goes down, all applets/plugins will revert to
unlicensed status)


-- 
Necromancyr

Necromancyr's Profile: http://forums.slimdevices.com/member.php?userid=37698
View this thread: http://forums.slimdevices.com/showthread.php?t=90410

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Custom Browse Menu- Need Coding Advice

2011-10-13 Thread erland

aeo12;663150 Wrote: 
 Thanks.  I made that change and the menu still isn't working.  Is
 
 comments.value='{comment}'
 
 the correct expression to use?
 
No, since you have:
select comments.id,comments.value from

The first parameter returned from the SQL will be put in the {comment}
parameter, so I think you instead should use:
comments.id='{comment'}

Just for information, the second parameter (comments.value) will be the
one displayed to the user.


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). If my answer
helped you and you like to encourage future presence on this forum
and/or third party plugin/applet development, 'donations are always
appreciated' (http://erland.isaksson.info/donate))
Interested in music discovery ? See 'Social Music Discovery (SMD)'
(http://forums.slimdevices.com/showthread.php?p=656713) project.

erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=90927

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: License Manager, plugins/applets going commercial

2011-10-13 Thread erland

TFKFlowerchild;663147 Wrote: 
 Can find License Manager plugin in sbs please help!!!
 
You need to check the Show all 3rd party plugins checkbox in SBS
Settings/Plugins for it to appear in the list of available plugins that
can be installed.


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). If my answer
helped you and you like to encourage future presence on this forum
and/or third party plugin/applet development, 'donations are always
appreciated' (http://erland.isaksson.info/donate))
Interested in music discovery ? See 'Social Music Discovery (SMD)'
(http://forums.slimdevices.com/showthread.php?p=656713) project.

erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=90410

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: License Manager, plugins/applets going commercial

2011-10-13 Thread erland

Necromancyr;663189 Wrote: 
 Am I correct in thinking that this uses an internet-requiring 'phone
 home' method of checking licensed status?  (meaning that if the server
 that confirms the license goes down, all applets/plugins will revert to
 unlicensed status)
 
Yes, but it currently only phone home under the following
circumstances:
- Someone has manually modified the License Manager configuration
files
- A new version of License Manager plugin/applet has been downloaded
- The existing license has expired, if the existing license have
expired it will call home once a day or when you click the Apply/Save
Settings button at the bottom of the SBS Settings/Advanced/License
Manager screen.

So basically, if my server goes down it means that:
- You can't upgrade License Manager plugin as it's published on the
same physical server, so that reason is not likely.
- If your license has expired my server has to be up for it to be
renewed. Of course, my server also has to be up for you to be able to
purchase a renewed license.

And, if I for some reason would decide that I can no longer keep the
server available or can't maintain/support the plugins/applets at a
decent level, my intention is to release new versions of the
plugins/applets with the license checks removed.


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). If my answer
helped you and you like to encourage future presence on this forum
and/or third party plugin/applet development, 'donations are always
appreciated' (http://erland.isaksson.info/donate))
Interested in music discovery ? See 'Social Music Discovery (SMD)'
(http://forums.slimdevices.com/showthread.php?p=656713) project.

erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=90410

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2011-10-13 Thread M_Meyer

Hi tuc / Erland,
your suggestion is similar to mine regarding switch to radio station:
http://forums.slimdevices.com/showthread.php?t=90822
I would really appreciate some playlist history feature/plugin!


-- 
M_Meyer

SB Touch+SB Radio, Sheevaplug Server, Squeeze Commander

M_Meyer's Profile: http://forums.slimdevices.com/member.php?userid=40334
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2011-10-13 Thread erland

tuc;663139 Wrote: 
 Hi Erland
 
 Thanks for your many nice plug-ins. They really enhance SB
 functionality in a major way. 
 
 I have a wish/question which possibly is a request for a new feature:
 I often find myself wanting to listen to a playlist I put together a
 couple of days ago (which I, at that time, couldn't be asked to create
 a named playlist for).
 
 So far I know of no plugin that provides playlist history i.e. a list
 of recently used active playlists. I am not necessarily talking about
 a history of named/defined playlist, but merely a list of playlists
 that have been active on a given player/server recently.
 
Just to confirm your suspicions, TrackStat and also peterw's PlayLog
plugin keeps track of the history of played tracks but none of them
keep track of the history of played playlists as far as I know.

Theoretically, it would be possible to create a list of the playlists
which the songs played is part of based on the TrackStat data, but
since a song can be part of multiple playlists I suspect this isn't
exactly what you want.

Another question is if it's important to keep track of how the playlist
looked like when it was played or if it's only important to keep track
of which playlist that was played while its content would be the latest
version of the playlist ?
For example, if I have Playlist 1, play it and then a bit later add a
new track to it and play it again. Do you only need this to be
represented as if Playlist 1 has been played twice or do you also
need to see how it looked like each time it was played for it to be
useful ?

A third question, what about the scenario where you play Playlist 1,
stop the music and do something else and then later play Playlist 1
again, should this be represented as two entries in the history or just
a single entry ?


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). If my answer
helped you and you like to encourage future presence on this forum
and/or third party plugin/applet development, 'donations are always
appreciated' (http://erland.isaksson.info/donate))
Interested in music discovery ? See 'Social Music Discovery (SMD)'
(http://forums.slimdevices.com/showthread.php?p=656713) project.

erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins