Release reFocus 1.4.0 for Gotham (deprecated) - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67) +---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179) +----- Forum: reFocus (https://forum.kodi.tv/forumdisplay.php?fid=72) +----- Thread: Release reFocus 1.4.0 for Gotham (deprecated) (/showthread.php?tid=191491) |
RE: reFocus 1.1.2 for Gotham - Jeroen - 2014-06-01 (2014-05-31, 20:08)Seque Wrote:(2014-05-31, 11:13)Jeroen Wrote: And you are 100% sure you have fanart in your library for that artist? I'll try reproducing again when I get home, but if that's not successful I honestly don't know what to do. I'll look through the code regardless, but I really need to be able to reproduce the problem before making changes. I understand the problem, I am just trying to narrow it down. And showing fanart or no fanart is a factor here. Performing the same steps as you I just have not been able to reproduce this problem. (2014-05-31, 20:22)perrypetri Wrote: Can someone please help me? Im trying to change the view of the way my movies and tv shows are shown. Right now they are the standard vertical way and I wanted to make them go the horizontal way with the information of the movie/show at the bottom. Like how it looks in OP's imgur post. I've been pulling out my hair messing with these settings and still no luck. It's probably right in front of me and I'm missing it. Press left, click the view type button, select "Slide" RE: reFocus 1.1.2 for Gotham - perrypetri - 2014-06-01 (2014-06-01, 07:07)Jeroen Wrote:(2014-05-31, 20:08)Seque Wrote:(2014-05-31, 11:13)Jeroen Wrote: And you are 100% sure you have fanart in your library for that artist? I'll try reproducing again when I get home, but if that's not successful I honestly don't know what to do. I'll look through the code regardless, but I really need to be able to reproduce the problem before making changes. Thank you so much! RE: reFocus 1.1.2 for Gotham - Seque - 2014-06-01 (2014-06-01, 07:07)Jeroen Wrote: I understand the problem, I am just trying to narrow it down. And showing fanart or no fanart is a factor here. The problem is in the variable called home_Background, the value set to empty (and lost my slideshow setting because use the fallback path) when you playback music, when stop the playback return the previous value. I test it with a label with value $VAR[home_Background] in <include name="home_Background"> in IncludesHome.xml file. Try it please. RE: reFocus 1.1.2 for Gotham - removed151214 - 2014-06-03 It sounds like script.watchlist may be considered for the official repo after all. So if you're ready at any point to submit the skin itself to the repo let me know and I'll submit the script at the same time. RE: reFocus 1.1.2 for Gotham - Jeroen - 2014-06-03 Yes, that would be nice. I have to take care of some requirements first though, but when that and the rebuilt home menu are done we can submit. RE: reFocus 1.1.2 for Gotham - jmuck78 - 2014-06-04 Jeroen, I found a bug in the script.globalsearch-mail.xml file. I noticed that songs weren't showing up in the search results for refocus that would show up in the search results for other skins. Looks like a copy-paste error in the content list for the left side of the window that controls the visibility of the songs item at line 289. WAS: visible>Control.IsVisible(169)</visible Should BE: visible>Control.IsVisible(189)</visible Cheers, Jason RE: reFocus 1.1.2 for Gotham - Reynald - 2014-06-04 http://forum.xbmc.org/showthread.php?tid=193135&pid=1726884#pid1726884 Check this RE: reFocus 1.1.2 for Gotham - Jeroen - 2014-06-04 (2014-06-04, 09:55)jmuck78 Wrote: Jeroen, Thanks Jason, that's a bug indeed. Fixed for the next release. @Reynald: let's keep it in separate threads please. RE: reFocus 1.1.2 for Gotham - Reynald - 2014-06-04 Quote:@Reynald: let's keep it in separate threads please. Sorry RE: reFocus 1.1.2 for Gotham - Reynald - 2014-06-04 Jeroen, i need to clarify one thing for understand, I download 3D film ( not 3D television) to understand how appears in the 3d.png refocus. I looked into how is written Code into variable.xml : But I do not see the picture 3d.png on Main movie. Is what I forgot to activate a function, which must be enabme 3D.png ? <variable name="flag_VideoType"> <value condition="ListItem.IsStereoscopic">flags/video/3D/nf-3D.png</value> <value condition="IntegerGreaterThan(ListItem.VideoResolution,540)">flags/video/HD/nf-HD.png</value> <value condition="!IntegerGreaterThan(ListItem.VideoResolution,540) + !SubString(ListItem.Icon,default) + !ListItem.IsFolder">flags/video/SD/nf-SD.png</value> </variable> RE: reFocus 1.1.2 for Gotham - Jeroen - 2014-06-05 You are using a condition without specifying which container the listitem to be evaluated is in. See the wiki under "container". RE: reFocus 1.1.2 for Gotham - Reynald - 2014-06-05 I did not touch anything, this is your code in your refocus. What I do not understand is where you want to display the icon 3d.png? No it's nothing! <variable name="flag_VideoType"> <value condition="ListItem.IsStereoscopic">flags/video/3D/nf-3D.png</value> <value condition="IntegerGreaterThan(ListItem.VideoResolution,540)">flags/video/HD/nf-HD.png</value> <value condition="!IntegerGreaterThan(ListItem.VideoResolution,540) + !SubString(ListItem.Icon,default) + !ListItem.IsFolder">flags/video/SD/nf-SD.png</value> </variable> <variable name="flag_VideoType-fo"> <value condition="ListItem.IsStereoscopic">flags/video/3D/fo-3D.png</value> <value condition="IntegerGreaterThan(ListItem.VideoResolution,540)">flags/video/HD/fo-HD.png</value> <value condition="!IntegerGreaterThan(ListItem.VideoResolution,540) + !SubString(ListItem.Icon,default) + !ListItem.IsFolder">flags/video/SD/fo-SD.png</value> </variable> <variable name="video_Type"> <value condition="ListItem.IsStereoscopic">3D</value> <value condition="IntegerGreaterThan(ListItem.VideoResolution,540)">HD</value> <value condition="StringCompare(ListItem.VideoResolution,4K)">4K</value> </variable> RE: reFocus 1.1.2 for Gotham - Jeroen - 2014-06-05 That code actually isn't used, and neither are the textures. When starting work on Gotham I implemented a 3D flag inside the list view. The HD flag used to be in the list view as a texture first too (before Gotham), so I was going to put in the same spot. But then I realized it's actually kind of silly to cramp a bunch of textures in one spot where a label will do exactly the same taking up much less space. RE: reFocus 1.1.2 for Gotham - Reynald - 2014-06-05 ok I understand, I am slow to understand sorry. Thank you for this answer! RE: reFocus 1.1.2 for Gotham - jmuck78 - 2014-06-06 Jeroen, I have another odd bug. For some movies in my library, the listitem.videoresolution and listitem.videocodec stop displaying in all views and in the dialog video info window. The bug seems to randomly affect movies in the library and seems to affect only videos that have been played once or twice. I've checked in confluence, and the bug shows up there too, so I'm fairly sure it's an xbmc issue and not a skin issue (unless all of the skins, including confluence uniformly call this listitem property the same way, and do so incorrectly), so I apologize for posting this in your forum. I'm posting here to see if you have noticed this issue, too, and to see if you are aware of an existing bug report. If no, I will need to file a bug in trac. Thanks for indulging... |