XBMC Community Forum  

Go Back   XBMC Community Forum > Help and Support > Plugin/Script (Python) Help and Support

Plugin/Script (Python) Help and Support Python requests/suggestions, support, bugs, and everything python goes in here!
Please, add platform prefix to threads that are not platform-independent!:
Thread prefixes; "[LINUX]", "[LIVE]", "[MAC]", "[WINDOWS]", and "[XBOX]"

Reply
 
Thread Tools Search this Thread Display Modes
Old 2009-11-04, 00:50   #21
ronie
Skilled Skinner
 
ronie's Avatar
 
Join Date: Jan 2009
Posts: 1,868
ronie is on a distinguished road
Default

Quote:
Originally Posted by spiff View Post
no. it will be all skin. it works. it's in svn. @ r24254

note that this is AFTER the alpha tag, i.e. not included in the alpha.
also i can't argue that the additional requested strings is a bug so i will revisit those after release.
this means atm you only have the fanart to play with through the new musicplayer.property() infolabel
yup, it's working. thanx again!

i've added MusicPlayer.Property(Fanart_Image) to the wiki.
__________________
Transparency! - A Fanart Skin
ronie is offline   Reply With Quote
Old 2009-11-04, 02:41   #22
spiff
Grumpy Bastard Developer
 
spiff's Avatar
 
Join Date: Nov 2003
Posts: 7,715
spiff is on a distinguished road
Default

after some internal discussion we agreed this could go in:

all props you had for listitems in the library views are now available. this is how it works;

album property listitem.property(description) -> musicplayer.property(album_description)
artist property listitem.property(born) -> musicplayer.property(artist_born)

currently the old properties are available in the library views in addition to the old ones.
these will be removed after the release, i.e. you will always have to use the prefixed ones. this for consistency. so you may as well start changing your skins already. spread the word

finally i'd like to apologize to the thread starter for
1) thread hijack
2) making his script somewhat deprecated before it was released.

it's just that these things were meant to have been available all along, i thought i had done them and nobody "complained" loud enough. not that i in any way blame others for my stupids
__________________
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.

Last edited by spiff; 2009-11-04 at 02:44.
spiff is offline   Reply With Quote
Old 2009-11-04, 05:09   #23
Gudy
Junior Member
 
Join Date: Nov 2009
Posts: 7
Gudy is on a distinguished road
Default

Quote:
Originally Posted by spiff View Post
after some internal discussion we agreed this could go in:

all props you had for listitems in the library views are now available. this is how it works;

album property listitem.property(description) -> musicplayer.property(album_description)
artist property listitem.property(born) -> musicplayer.property(artist_born)

currently the old properties are available in the library views in addition to the old ones.
these will be removed after the release, i.e. you will always have to use the prefixed ones. this for consistency. so you may as well start changing your skins already. spread the word

finally i'd like to apologize to the thread starter for
1) thread hijack
2) making his script somewhat deprecated before it was released.

it's just that these things were meant to have been available all along, i thought i had done them and nobody "complained" loud enough. not that i in any way blame others for my stupids
No worries Spiff, glad it got worked out. The script is coming regardless, I still need it for my crappy music collection that isn't well tagged since all it needs it the artist. Once I get the time to actually go through all my music and update the tags I will look at what is built in.

Thanks

Gudy
Gudy is offline   Reply With Quote
Old 2009-11-04, 07:13   #24
joebrady
Team-XBMC QA Specialist
 
joebrady's Avatar
 
Join Date: Apr 2007
Location: Louisville, KY
Posts: 1,049
joebrady is on a distinguished road
Default

Quote:
Originally Posted by spiff View Post
all props you had for listitems in the library views are now available. this is how it works;

album property listitem.property(description) -> musicplayer.property(album_description)
artist property listitem.property(born) -> musicplayer.property(artist_born)

currently the old properties are available in the library views in addition to the old ones.
these will be removed after the release, i.e. you will always have to use the prefixed ones. this for consistency. so you may as well start changing your skins already. spread the word
Would probably be good to mention these additions on the front page. May get some people to revisit some skins to add/change things.

Thanks Spiff, next time I'll use ALL CAPS so you can hear me

Did I get this Wiki edit right?
http://xbmc.org/wiki/index.php?title...ev&oldid=13486
__________________
My System: Xbox V1.1, XERC 2 (for power on from the remote), Xtender (allows 3 HardDrives), HD pack w/digital coax out,
chiped w/ Xenium Gold, IND Bios, XBMC as main dash via BIOS


Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first.
joebrady is offline   Reply With Quote
Old 2009-11-04, 11:12   #25
azido
Fan
 
azido's Avatar
 
Join Date: Nov 2008
Location: Stuttgart, Germany
Posts: 1,810
azido is on a distinguished road
Send a message via Skype™ to azido
Default

Quote:
Originally Posted by spiff View Post
album property listitem.property(description) -> musicplayer.property(album_description)
artist property listitem.property(born) -> musicplayer.property(artist_born)
question by a little skinning n00b:

the musicplayer.properties are then available both for displaying content in the standard lib views and for now playing infos? asking that because the current behaviour is the listitem ones are for views and the musicplayer ones for now playing info on current playing track..
__________________
cheers,azido

THE AEON SHOWMIX WIKI AT ASSEMBLA

Visit The ShowMix Project

azido is offline   Reply With Quote
Old 2009-11-04, 11:23   #26
ronie
Skilled Skinner
 
ronie's Avatar
 
Join Date: Jan 2009
Posts: 1,868
ronie is on a distinguished road
Default

Quote:
Originally Posted by azido View Post
question by a little skinning n00b:

the musicplayer.properties are then available both for displaying content in the standard lib views and for now playing infos? asking that because the current behaviour is the listitem ones are for views and the musicplayer ones for now playing info on current playing track..
nope, you can still use listitem.property(foo), but use them in this way:

listitem.property(album_description)
listitem.property(artist_born)
__________________
Transparency! - A Fanart Skin
ronie is offline   Reply With Quote
Old 2009-11-04, 12:19   #27
azido
Fan
 
azido's Avatar
 
Join Date: Nov 2008
Location: Stuttgart, Germany
Posts: 1,810
azido is on a distinguished road
Send a message via Skype™ to azido
Default

Quote:
Originally Posted by ronie View Post
nope, you can still use listitem.property(foo), but use them in this way:

listitem.property(album_description)
listitem.property(artist_born)
ah.. thanks for the enlighting.
__________________
cheers,azido

THE AEON SHOWMIX WIKI AT ASSEMBLA

Visit The ShowMix Project

azido is offline   Reply With Quote
Old 2009-11-04, 21:15   #28
ronie
Skilled Skinner
 
ronie's Avatar
 
Join Date: Jan 2009
Posts: 1,868
ronie is on a distinguished road
Default

Quote:
Originally Posted by spiff View Post
currently the old properties are available in the library views in addition to the old ones.
these will be removed after the release, i.e. you will always have to use the prefixed ones. this for consistency.
none of the new prefixed labels appear to be working in DialogAlbumInfo.xml
should we continue to use the old ones in there, or is this something that still needs to be changed ?
__________________
Transparency! - A Fanart Skin
ronie is offline   Reply With Quote
Old 2009-11-05, 00:54   #29
ronie
Skilled Skinner
 
ronie's Avatar
 
Join Date: Jan 2009
Posts: 1,868
ronie is on a distinguished road
Default

did some more tests and noticed the MusicPlayer.Property(foo) values aren't cleared when playback ends.
__________________
Transparency! - A Fanart Skin
ronie is offline   Reply With Quote
Old 2009-11-05, 01:42   #30
azido
Fan
 
azido's Avatar
 
Join Date: Nov 2008
Location: Stuttgart, Germany
Posts: 1,810
azido is on a distinguished road
Send a message via Skype™ to azido
Default

Quote:
Originally Posted by ronie View Post
did some more tests and noticed the MusicPlayer.Property(foo) values aren't cleared when playback ends.
so they stay onscreen after stop? are they refreshed on the next track's start though?
__________________
cheers,azido

THE AEON SHOWMIX WIKI AT ASSEMBLA

Visit The ShowMix Project

azido is offline   Reply With Quote
Reply

Bookmarks

Tags
music, music choice, script


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 21:33.


Protected by Akismet, We recommend WordPress blogs
Copyright © 2008, XBMC Project