Posts: 28
Joined: Aug 2011
Reputation:
0
v8der
Junior Member
Posts: 28
I actually came here to post a thread asking why I can't find the Night skin in Edens 11 Add-On browser and now I guess this answers my question.
However, the skin is perfect for my setup so I'm willing to downgrade XBMC to accommodate it. Can anyone tell me what's the absolute highest version of XBMC to still support the Night skin?
Also, I need the version that has a port for the Xbox version of XMBC as well since that's where I'll end up using this skin the most. Just using PC to test setups right now.
Thanks!
Posts: 68
Joined: Sep 2011
Reputation:
0
Everywhere I look everyone is saying that the skins are available in the repo. Try as I may, I can't see them. I'm on stock EDEN install in Windows7. Am I missing out on something here? Is the repo not the one that comes pre configured with XBMC? Am I supposed to add a different one?
Posts: 1,136
Joined: Jul 2011
Reputation:
18
Balinus
Skilled Skinner
Posts: 1,136
Thanks for the thorough explanations!
I'll make the relevant modifications in the next days...
Posts: 2
Joined: Sep 2012
Reputation:
0
2012-10-24, 07:41
(This post was last modified: 2012-10-24, 07:45 by Takra.)
I thought I would take the chance to throw in a few fixes if you haven't already finalized your next release. These are three fixes for movie sets. The three problems are summarized as follows:
1) The Movie Set icon (blue clapboard) is no longer appearing on the bottom right of movie thumbnails due to a bugged visibility condition.
2) The word MovieSet should show up below a set title, but the same broken visibility condition causes it to never display.
3) Movie Sets are showing a rating of NR as if they were a movie (missing visibility condition)
In any given viewtype file (e.g. Viewtype_Poster.xml) you have 2 visibility tags for the movie set icon that appears to visually denote an item as part of a set (2 in each viewtype file). Modification 1 fixes both lines. Modifications 2 and 3 are one line each.
File Viewtype_Poster.xml and ALL OTHER VIEWTYPE files with their corresponding lines.
Path skin.night.eden.svn\720p\Viewtype_Poster.xml
Notes These modifications affect other Viewtype files and can be adapted to fix them in a similar fashion.
Modification # 1
Name Video library - Movie Set Icon Fix - Invisibility Bug
Explanation When viewing a list which contains media that has been grouped into a set, the icon that the skin uses to visually differentiate the set from nonset items is not visible in the current release due to a single, broken condition in the visibility tag. This fix will correct the broken condition by substituting a corrected tag to stay compatible. The fix specifically involves replacing the now broken visibility condition: IsEmpty(ListItem.foldername) with the correct check: SubString(ListItem.Path,videodb://1/7) The IsEmpty method no longer successfully returns true for moviesets, but the path check for "videodb://1/7" appears to correctly identify a movie set. The condition !substring(Container.Listitem.Label,..,left) was unintentionally marking the parent directory listitem with a movie set icon when another movie set was actually focused. This has also been removed.
Location Line 141
Old Entry <visible>Container.Content(movies) + IsEmpty(ListItem.foldername) + !substring(Container.Listitem.Label,..,left) + !Container.Content(genres) + Window.IsActive(videolibrary)</visible>
New Entry <visible>Container.Content(movies) + SubString(ListItem.Path,videodb://1/7) + !Container.Content(genres) + Window.IsActive(videolibrary)</visible>
Location Line 295
Old Entry <visible>Container.Content(movies) + IsEmpty(ListItem.foldername) + !substring(Container.Listitem.Label,..,left) + !Container.Content(genres) + Window.IsActive(videolibrary)</visible>
New Entry <visible>Container.Content(movies) + SubString(ListItem.Path,videodb://1/7) + !Container.Content(genres) + Window.IsActive(videolibrary)</visible>
Modification # 2
Name Video library - Movie Set Label Fix - Invisible Identifying Label
Explanation Within previous functionality, whenever a list item representing a movie set was selected, label localization 31508 (english string "MovieSet") was shown beneath the title of the movie set collection. In current functionality this label is no longer visible due to a broken visibility condition. This fix specifically reassigns the broken visibility condition: IsEmpty(ListItem.foldername) to the new condition: SubString(ListItem.Path,videodb://1/7) which will now accurately identify the list item as a movie set. Note this fix also deletes the conditon: !Skin.HasSetting(Poster_Fanart) which seems incorrectly evaluates to false. If you plan on keeping it in, you'll have to find out where it broke.
Location Line 442
Old Entry <visible>IsEmpty(ListItem.foldername) + !Skin.HasSetting(Poster_Fanart) + !Skin.HasSetting(clean_poster) + !substring(Container.Listitem.Label,..,left) + Container.Content(movies) + Window.IsActive(videolibrary)</visible>
New Entry <visible>SubString(ListItem.Path,videodb://1/7) + !Skin.HasSetting(clean_poster) + !substring(Container.Listitem.Label,..,left) + Container.Content(movies) + Window.IsActive(videolibrary)</visible>
Modification # 3
Name Video library - Movie Set Label Fix - Unintended Movie Rating Icon Fix
Explanation Within previous functionality, whenever a list item representing a movie set was selected, no movie rating was shown due to the possibility of containing films with varying ratings. In current functionality, a rating of NR is shown for every movie set due to a missing visibility condition that would correctly identify movie sets and hide the ratings for them. This fix specifically adds the visibility condition: !SubString(ListItem.Path,videodb://1/7) which will evaluate to false for movie sets and therefore correctly hide the ratings label for movie sets.
Location Line 462
Old Entry <visible>Container.Content(movies) + !Skin.HasSetting(clean_poster) + ![Player.HasVideo | substring(container.folderpath,plugin://plugin.video.apple.movie.trailers.lite)]</visible>
New Entry <visible>Container.Content(movies) + !Skin.HasSetting(clean_poster) + !SubString(ListItem.Path,videodb://1/7) + ![Player.HasVideo | substring(container.folderpath,plugin://plugin.video.apple.movie.trailers.lite)]</visible>
Thanks for making the skin. I think that makes my second post of things I've given you to look into so I'll just keep quiet now.
Posts: 274
Joined: Aug 2012
Reputation:
0
This skin looks absolutely incredible, love the simplicity of the main menu!
Anyhow i tried to install this on my openelec 2.0 system from the zip file here, and it says that the addon is in the wrong file structure?!?
Also i can not find this skin in my current repository!!
Can someone please help me get this working?
thanks
Posts: 508
Joined: Aug 2010
is it possible to use this skin with xbmc 12 frodo for live tv?
Posts: 213
Joined: Apr 2012
Reputation:
0
I also want to use it in frodo, is it possible?
Where can i download the right version?