MediaStream v0.94 Released (06/10/2008)

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Hitcher Offline
Skilled Skinner
Posts: 9,927
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #11
Cheers skunkm0nkee, I don't suppose there's any chance of posting a quick fix is there? Wink

[Image: sig_zps3af3b48e.jpg]
find quote
Player4 Offline
Junior Member
Posts: 42
Joined: Aug 2008
Reputation: 0
Post: #12
Awesome work, as always.

Again, i had the clock shadow bug, don't know if it has been discussed yet but here's a solution:

in Includes.xml it's
Code:
<include name="ClockBGText">
    <info>System.Time(hh:mm xx)</info>
    <textcolor>Highlighted</textcolor>
    <include>ClockText</include>
  </include>

  <include name="ClockFGText">
    <info>System.Time(hh:mm)</info>
    <include>ClockText</include>
  </include>

This should be changed to either

Code:
<info>System.Time(hh:mm)</info>
or
Code:
<info>System.Time(hh:mm xx)</info>

in ClockBGText AND ClockFGText.

Cheers! Smile
find quote
turbinez Offline
Fan
Posts: 327
Joined: Sep 2008
Reputation: 0
Post: #13
thanks for the update! im glad you guys are still working on this. one of the best skins ever.

I would like to make a suggestion. For the homepage, can you add some sort of transparency to the blade so that it doesn't cover up my wallpaper? I have a lot of wallpaper and thats the only downside is the blade covering almost half of it up.
find quote
skunkm0nkee Offline
Team Razorfish
Posts: 1,887
Joined: Aug 2007
Location: London
Post: #14
Hitcher Wrote:Cheers skunkm0nkee, I don't suppose there's any chance of posting a quick fix is there? Wink

If there's a quick fix I'll definitely post the details in here. The problem is that there needs to be 2 separate focus positions for the list depending on what data is being viewed. This can't really be done via a conditional include as that would get run on entering the library and would't get refreshed when you navigated from TV Shows to Episodes etc. It can't really be done by having 2 different lists with different visibility conditions as that would cause the problem where returning to the list (after info dialog or playing a video) would sometimes return to the top of the list instead of the previous position.

I've got my thinking cap on so hopefully will have a solution soon. Confused

turbinez Wrote:I would like to make a suggestion. For the homepage, can you add some sort of transparency to the blade so that it doesn't cover up my wallpaper? I have a lot of wallpaper and thats the only downside is the blade covering almost half of it up.

Can't do it currently but there are changes coming in XBMC which should allow it at some point Big Grin
find quote
minimalko Offline
Skilled Skinner
Posts: 189
Joined: Jun 2008
Reputation: 0
Post: #15
skunkm0nkee Wrote:If there's a quick fix I'll definitely post the details in here. The problem is that there needs to be 2 separate focus positions for the list depending on what data is being viewed. This can't really be done via a conditional include as that would get run on entering the library and would't get refreshed when you navigated from TV Shows to Episodes etc. It can't really be done by having 2 different lists with different visibility conditions as that would cause the problem where returning to the list (after info dialog or playing a video) would sometimes return to the top of the list instead of the previous position.

I've got my thinking cap on so hopefully will have a solution soon. Confused

I fixed it for my personal use by having two wraplists one with conditional visibility !Container.Content(episodes) the other with visibility condition Container.Content(episodes). Works fine for me. Didnt test it much yet however.
(This post was last modified: 2008-10-07 14:38 by minimalko.)
find quote
skunkm0nkee Offline
Team Razorfish
Posts: 1,887
Joined: Aug 2007
Location: London
Post: #16
I think you'll find that on occasions your selections will move to the top of the list
find quote
skunkm0nkee Offline
Team Razorfish
Posts: 1,887
Joined: Aug 2007
Location: London
Post: #17
Hitcher Wrote:Love the new Media Preview makeover for TV Shows (I've just spent two hours downloading/creating posters for it) -

[Image: screenshot000iu5.png]

but when I enter the episodes it focuses on the far right one -

[Image: screenshot001kv6.png]

Phew, fixed it! The fix will be in the next release but if you can't hang on that long then you can do the following changes to ViewsVideo.xml:
  • Delete line 1198 (the include with condition)
  • Change the width in line 1201 to be 1772
  • Add the following code after the include on line 1211

PHP Code:
<animation effect="slide" start="0,0" end="-512,0" time="0" condition="!Skin.HasSetting(ShowAnimMediaPreview) + Container.Content(episodes)">Conditional</animation
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,927
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #18
skunkm0nkee Wrote:Phew, fixed it! The fix will be in the next release but if you can't hang on that long then you can do the following changes to ViewsVideo.xml:
  • Delete line 1198 (the include with condition)
  • Change the width in line 1201 to be 1772
  • Add the following code after the include on line 1211

PHP Code:
<animation effect="slide" start="0,0" end="-512,0" time="0" condition="!Skin.HasSetting(ShowAnimMediaPreview) + Container.Content(episodes)">Conditional</animation

Working perfectly - many thanks. Nod

[Image: sig_zps3af3b48e.jpg]
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,927
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #19
Any chance of adding the Watched/Unwatched icons to episodes in Media Preview mode (and the other views as they only appear in Info List and Episdoes view mode ATM)?

[Image: screenshot001kv6.png]

Never satisfied am I!Wink

[Image: sig_zps3af3b48e.jpg]
(This post was last modified: 2008-10-07 17:29 by Hitcher.)
find quote
minimalko Offline
Skilled Skinner
Posts: 189
Joined: Jun 2008
Reputation: 0
Post: #20
skunkm0nkee Wrote:I think you'll find that on occasions your selections will move to the top of the list

Oh no now I see what You mean..that makes a lot of stuff in mod trickierFrown
find quote
Post Reply