Kodi Community Forum
[BUGS] and missing items - 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: Night (https://forum.kodi.tv/forumdisplay.php?fid=130)
+----- Thread: [BUGS] and missing items (/showthread.php?tid=73846)



- bkkrafty - 2010-10-04

Thanks for the quick reply. Any thought on my first post about DVD/bluray overlay covers?

As always you are awesome and keep up the inivation.


- psike - 2010-10-04

about the watched icon...
1. logo view - can you add a watched icon or something to this view?
2. landscape view - watched icon overlay the studio icon.
3. panel view - when focusing item the animation for the watched icon is jumpy.


- User 55003 - 2010-10-04

@psike

2. if you use landscape.jpg in landscape view uncheck use posters for tv section in movies/tv options and that should fix that problem..


- mcborzu - 2010-10-04

Steveb Wrote:@psike

2. if you use landscape.jpg in landscape view uncheck use posters for tv section in movies/tv options and that should fix that problem..

Ahh, OK...don't think I ever tried all those combos together. Will be fixed.


- psike - 2010-10-04

actually i was just looking through views for fun. i don't have any landscape.jpg, what is the best way downloading them? is there any way downloading for all shows or is it have to be one by one?


- mcborzu - 2010-10-04

I don't think there is a addon for them to be saved as "landscape.jpg" at the moment...


- User 55003 - 2010-10-04

You could use the logo downloader, but still have to go to info for each show..get logo..get thumb..also it replaces your current folder.jpg.
Other that that its one by one from xbmcstuff and rename landscape.jpg.


- psike - 2010-10-04

wait is this the tv thumbs from xbmcstuff? i always thought they fanarts too.
if yes, is there also an option for something like extra landscape?


- mcborzu - 2010-10-04

@psike

Yes Landscape thumbs are for xbmcstuff.com and no there isn't a extra landscape option.

If you'd like git is updated with some of your suggestions/fixes - most important random/recent both work...Though you'll have to comment out these lines, 44 and 49 in includes.xml:

<onfocus>XBMC.RunScript(script.test)</onfocus>


- frieten - 2010-10-04

zwat Wrote:i had same issues. esc should exit that menu. and use s favorites to see if there are any favorites in the list.

going thru normal favourites off the menu works and there are items there.

just frustrating cause i can't add any favourites to the custom home menu now lol


- User 55003 - 2010-10-04

frieten Wrote:going thru normal favourites off the menu works and there are items there.

just frustrating cause i can't add any favourites to the custom home menu now lol

Have you got the latest script.favourites installed in your addon dir?
http://mirrors.xbmc.org/addons/dharma-pre/script.favourites/

if its not there (using git maybe?) then that can null the custom home items in skin setting.


- frieten - 2010-10-04

Steveb Wrote:Have you got the latest script.favourites installed in your addon dir?
http://mirrors.xbmc.org/addons/dharma-pre/script.favourites/

if its not there (using git maybe?) then that can null the custom home items in skin setting.

cheers yeah was using git. that fixed it Smile


- psike - 2010-10-04

mcborzu Wrote:@psike
If you'd like git is updated with some of your suggestions/fixes - most important random/recent both work...Though you'll have to comment out these lines, 44 and 49 in includes.xml:

<onfocus>XBMC.RunScript(script.test)</onfocus>

what do you mean? what is this line?
i just downloaded from git and so far everything working great, i'll keep testing it.


- mcborzu - 2010-10-04

psike Wrote:what do you mean? what is this line?
i just downloaded from git and so far everything working great, i'll keep testing it.

ppic and i are working on that "next aired" script to get that info for library use. I assume it would've spit out an error if you didn't have the script...


- zwat - 2010-10-04

haven't tested this, but is there a reason why there is different size and position on logo.png and ../logo.png one viewtype_newest_added.xml
Code:
                        <control type="image">
                            <posx>10</posx>
                            <posy>88</posy>
                            <width>90</width>
                            <height>35</height>
                            <texture background="true">$INFO[ListItem.path]logo.png</texture>
                            <fadetime>300</fadetime>
                            <aspectratio scalediffuse="false">stretch</aspectratio>
                        </control>
                        <control type="image">
                            <posx>300</posx>
                            <posy>0</posy>
                            <width>110</width>
                            <height>43</height>
                            <texture background="true">$INFO[ListItem.path]../logo.png</texture>
                            <fadetime>300</fadetime>
                            <aspectratio scalediffuse="false">stretch</aspectratio>
                        </control>