Release Artist Slideshow addon (with skin and addon integration)
(2012-07-13, 18:44)Wanilton Wrote: Well I hope you finish - images for discography, great job,

So this is what happens when you take over maintaining a plugin and haven't parsed through all the code. It does things you don't know about. After looking through the properties code and back at the documentation, I realized Artist Slideshow already exposes a URL for album thumbnails. It doesn't download the thumbs, but if you add the property to the skin, XBMC caches it after the download. Here's an example:

Code:
<control type="image" id="1003">
    <description>Artist Album Art</description>
    <posx>300</posx>
    <posy>31</posy>
    <width>100</width>
    <height>100</height>
    <texture>$INFO[Window(Visualisation).Property(ArtistSlideshow.1.AlbumThumb)]</texture>
    <visible>!IsEmpty(Window(Visualisation).Property(ArtistSlideshow.1.AlbumThumb))</visible>        
</control>

There is a property for each album, so Window(Visualisation).Property(ArtistSlideshow.1.AlbumThumb) gets the first album, Window(Visualisation).Property(ArtistSlideshow.2.AlbumThumb) gets you the second, etc. The actual thumbnail is 300 x 300 pixels. In the example above I scaled it down to 100 x 100 pixels.

So I think this request is done now. Big Grin I've updated the Confluence skin files to include a four album discography. The link in the second post of this thread is still valid if you want to get the updated files.

@Wanilton, I think I'm done with any updates that will require changes to strings.xml, so when you get a chance could you update the translation you're doing? Once I have that and sit on the rest of this a few days during testing, I'll be ready to do another official release.
Reply


Messages In This Thread
New Test Version Available - by pkscout - 2012-03-08, 16:26
[No subject] - by mardup - 2012-03-10, 12:26
[No subject] - by pkscout - 2012-03-11, 01:35
RE: - by mardup - 2012-03-12, 17:50
RE: - by pkscout - 2012-03-13, 03:22
New Beta Version for Testing - by pkscout - 2012-07-13, 17:54
RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - by pkscout - 2012-07-15, 02:33
New Beta Version for Testing - by pkscout - 2012-07-14, 22:50
Pull Request for v1.4 Submitted - by pkscout - 2012-07-20, 23:01
New Beta Version for Testing - by pkscout - 2012-08-10, 03:18
New Frodo BETA Support Files - by pkscout - 2012-11-21, 06:20
New 2.0.0 Beta Coming Soon - by pkscout - 2016-05-12, 02:54
Writing tips - by Parkerbup - 2017-02-03, 14:56
Add-on Artist Slideshow - by jo26 - 2014-08-08, 22:58
Logout Mark Read Team Forum Stats Members Help
Artist Slideshow addon (with skin and addon integration)5