ATTENTION! Changes for skin compatibility post XBMC DHARMA

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
jmarshall Offline
Team-XBMC Developer
Posts: 24,523
Joined: Oct 2003
Reputation: 138
Post: #51
xbmc.python.pluginsource

Cheers,
Jonathan

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


[Image: badge.gif]
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,935
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #52
Cheers.

[Image: sig_zps3af3b48e.jpg]
find quote
snowdrift Offline
Senior Member
Posts: 213
Joined: Aug 2009
Reputation: 0
Post: #53
I'm currently in the process of porting my homebrew version of the good ol' Aeon skin to the new framework. My current svn is pre-Camelot so there is *a lot* to do! Rofl

All going reasonably well so far and got it mostly working except that under my current svn of r31938 I notice that in MusicVisualisation when I bring up the MusicOSD and try and change the visualization type, all the usual suspects like ProjectM, Waveform, OpenGL Spectrum are there but the "None" option seems to be missing? I used to use this to display the album fanart in the background instead of one of the visualizations.

Have I missed something, i.e. do I need to write a new plugin? Or is it just not possible to do this anymore? Thanks.
find quote
Jezz_X Offline
Team-XBMC Skinner
Posts: 5,264
Joined: Jun 2006
Reputation: 55
Location: Earth
Post: #54
No you right its a bug when called from that window (works in settings)

Skins I have done....
[Image: skinsq.png]
And others in the past...

Want to know what I'm working on currently? Check me out on Google+
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,935
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #55
It's set to 'None' using the normal Settings > Audio > Visualisation route.

[Image: sig_zps3af3b48e.jpg]
find quote
snowdrift Offline
Senior Member
Posts: 213
Joined: Aug 2009
Reputation: 0
Post: #56
Hitcher Wrote:It's set to 'None' using the normal Settings > Audio > Visualisation route.

Yeah, I tried that too. No visualisation as expected, but the background was just blank. Probably me then...I'll add that to the list of things to sort. Cheers Jezz_X and Hitcher.

EDIT: Trying not to hijack this thread...but my code in MusicVisualistation.xml looks fine. The <texture> path looks to be OK with cdartpath defined. Have any of the controls or boolean conditions been deprecated and I've missed it?

EDIT2: Figured it out. It looks like Visualisation.Enabled is returning TRUE even if the visualisation is set to None from the music settings. Bug maybe? Looks like I can work around it by doing IsEmpty(Visualisation.Name) instead

Code:
<control type="largeimage">
        <include>FullscreenDimensions</include>
<texture>$INFO[Skin.String(cdartpath)]/$INFO[MusicPlayer.Artist]/$INFO[MusicPlayer.Album]/fanart.jpg</texture>
          <fadetime>400</fadetime>
          <include>Animation_FanartFade</include>
          <visible>!Visualisation.Enabled + Player.HasAudio</visible>
    </control>
(This post was last modified: 2010-07-22 23:07 by snowdrift.)
find quote
sialivi Offline
Posting Freak
Posts: 950
Joined: Dec 2008
Reputation: 7
Location: Sweden
Post: #57
The wiki briefly mentions the following change that doesn't have it's own bulletpoint in the first post:

Quote:ActivateWindow(VideoLibrary,MovieTitles) (dharma)
ActivateWindow(Videos,MovieTitles) (eden)

...and the table of names on the wikipage hasn't been updated. Which ones have been renamed and to what?
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,935
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #58
You want this thread for Eden changes.

[Image: sig_zps3af3b48e.jpg]
find quote
sialivi Offline
Posting Freak
Posts: 950
Joined: Dec 2008
Reputation: 7
Location: Sweden
Post: #59
Thanks, was tricked by the big "ATTENTION!" in the thread title Smile
find quote
Post Reply