Posts: 24
Joined: Nov 2012
Reputation:
0
Firs thanks for your great work !
Is it possible to add the imdb top 250 flag ?
Thanks in advance
Posts: 17,855
Joined: Jan 2011
Reputation:
1,056
Milhouse
Retired Team-Kodi Member
Posts: 17,855
Talking of "flags", the 2.40:1 aspect ratio flag is not present.
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Posts: 17,855
Joined: Jan 2011
Reputation:
1,056
Milhouse
Retired Team-Kodi Member
Posts: 17,855
Another issue: The page up/page down buttons on a remote control (channel up/down) don't work within the Skin settings (they work as expected elsewhere in Settings) so navigating a long list in the Skin settings is more tedious than it needs to be.
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Posts: 465
Joined: Apr 2012
Reputation:
11
2013-09-21, 06:11
(This post was last modified: 2013-09-21, 06:11 by doug.)
Hi,
Thanks for this skin. I love the customization it enables.
Here's a minor fix. MyPVR.xml contains a reference to a jpg that doesn't exist. Specifically, tv.jpg isn't in the backgrounds folder. i think it should be livetv.jpg instead as it's the jpg displayed when livetv is selected and video is not displayed.
Thanks again for the skin!
Posts: 1,155
Joined: Aug 2008
(2013-09-20, 23:07)MilhouseVH Wrote: Talking of "flags", the 2.40:1 aspect ratio flag is not present.
Because it was added to Gotham nightly XBMC builds and the skin is for Frodo. If i update the skin for Gotham i'll add it.
Posts: 1,155
Joined: Aug 2008
(2013-09-20, 22:10)Martijn Wrote: Does that also happen with other skins? If so i might need to look at the code.
After looking the skin code this should not happen. Sounds like the same problem that happens in Amber too, atleast it did at some point.
Posts: 1,155
Joined: Aug 2008
2013-09-21, 13:36
(This post was last modified: 2013-09-21, 13:37 by User 34959.)
@MilhouseVH
Do you mean that the recommended movie posters etc. are visible after playing a recent movie, or that only the recent/recommended selector is visible?
Because the the group itself checks that the recommended button is selected > <visible>Library.HasContent(Movies) + Container(9000).Hasfocus(10) + Skin.HasSetting(SkinWidgetRecommended) + Skin.HasSetting(MovieWidget)</visible>
But the button itself check if the 1st recommended title is empty, i guess this is where it the addon might fail?
[Container(9000).HasFocus(10) + !IsEmpty(Window(Home).Property(RecommendedMovie.1.Title))]
Posts: 1,155
Joined: Aug 2008
@
Martijn
Just as a reference, Amber uses this to decide whether to show the recommended.
<control type="fixedlist" id="312" description="TOP Shortcuts">
<visible>![IsEmpty(Window(Home).Property(RecommendedMovie.1.Title)) + IsEmpty(Window(Home).Property(RandomMovie.1.Title))]</visible>
Users reported, and i was able to see it myself that even when recommended are disabled in the addon, after playing a movie (not sure about episodes and others) it would make the recommended visible.
Posts: 139
Joined: Oct 2007
Reputation:
0
It's really a shame that my Skin updated by itself.
Like other users I would like to get rid of SEARCH on menu, as SHUTDOWN.
Also new RSS reader place is not such a good idea. Now you need to read to fast due to short space.
Is there a way i can download previous version without getting this update?
Posts: 1,155
Joined: Aug 2008
It's really a shame that you don't understand that i cannot please everyone. Option to hide search will come, it will show automatically if you have globalsearch addon installed, but as someone might want to keep the addon for other skins and not uninstall it to hide it from mine, i'll add the hide option.
Separate buttons for power, favourites and search won't come back. For a skin to be used with a remote these don't make any sense imho. I will try to keep most of the mouse navigation working that exists in Confluence builtin, but i won't add any more mouse support.
Posts: 1,155
Joined: Aug 2008
(2013-09-21, 13:36)SpaceMonkey Wrote: @MilhouseVH
Do you mean that the recommended movie posters etc. are visible after playing a recent movie, or that only the recent/recommended selector is visible?
Because the the group itself checks that the recommended button is selected > <visible>Library.HasContent(Movies) + Container(9000).Hasfocus(10) + Skin.HasSetting(SkinWidgetRecommended) + Skin.HasSetting(MovieWidget)</visible>
But the button itself check if the 1st recommended title is empty, i guess this is where it the addon might fail?
[Container(9000).HasFocus(10) + !IsEmpty(Window(Home).Property(RecommendedMovie.1.Title))]
Ok i can reproduce this every time. Even though recommended are disabled in the addon settings, recommendedmovie.1.title and recommendedepisode.1.title are always non-empty after video playback. Doesn't matter if i start the video playback from a widget or standard XBMC library views.
Restarting XBMC or going into addon settings and cycling the recommended setting clears the labels.
I will add a temporary kludge around this issue.