Kodi Community Forum
Some corrections - 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: Transparency! (https://forum.kodi.tv/forumdisplay.php?fid=115)
+----- Thread: Some corrections (/showthread.php?tid=113532)



Some corrections - m4x1m - 2011-10-30

Hi ronie,

Includes_Weather.xml line 1823:
Code:
<visible>IsEmpty(Skin.String(WeatherVideo))</visible>
to
<visible>!IsEmpty(Skin.String(WeatherVideo))</visible>
There is a weather video but not a button to play it
-
tvtunes_backend.py line 40
Code:
if enable_custom_path == "true":
        self.enable_custom_path = "True"
            self.custom_path = __addon__.getSetting("custom_path")
+else:
+       self.enable_custom_path = "False"

Because if 'enable_custom_path' is false the variable 'self.enable_custom_path' does not exist and the script fail.
-
There is a same problem in script.tv.show.next.aired/default.py line 362
Code:
def set_labels(self, label, item, return_items = False ):
        if (label == "windowproperty") or (label == "windowpropertytoday"):
            label = xbmcgui.Window( 10000 )
            if label == "windowproperty":
                prefix = 'NextAired.'
            else:
                prefix = 'NextAired.' + str(self.count) + '.'
AttributeError: NextAired instance has no attribute 'count'
the variable self.count doesn't exist and the script fail (sorry I don't unserstand how to fix it :-) )
-
When entering in a tv show xbmc.log says:
Code:
WARNING: GetLabel - Unknown nodetype requested 11
That's all! :-D


- ronie - 2011-10-30

wow thanx !

all should be fixed now.
please report back if you still have issues.

Code:
WARNING: GetLabel - Unknown nodetype requested 11

this one is not skin/script related.
afaik you can safely ignore it.


- m4x1m - 2011-10-30

ronie Wrote:wow thanx !

all should be fixed now.
please report back if you still have issues.

It's OK!

ronie Wrote:
Code:
WARNING: GetLabel - Unknown nodetype requested 11

this one is not skin/script related.
afaik you can safely ignore it.

Eh Eh I've tried!!Big Grin


- m4x1m - 2011-10-30

ronie, I had forgotten

I don't know if is a skin issue or not but in the video osd when playing movie there is a problem with scrollbars while viewing info(?) or cast(tested) view. The scrollbar seems indipendent from cast length and no effect if I focus it and try to scroll.

I hope that I explained well...

Thanks!


- ronie - 2011-10-30

definitely my bad, fixed now.

cheers for the bug reports mate,
they are really appreciated Smile


- m4x1m - 2011-10-30

ronie Wrote:definitely my bad, fixed now.

cheers for the bug reports mate,
they are really appreciated Smile

Thanks, it is a pleasure for me to help! Laugh