Some corrections
#1
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
LG M227WD - ASUS S1-AT5NM10E - LOGITECH HARMONY 300i - MINI KEYBOARD USB
Running Ubuntu Precise 12.04.04 - FRODO 12.03 - Transparency!
Movies: 996 - TV Show: 98 - Albums: 1161

My Script: Rating Update - Thumbnails Cleaner
Reply
#2
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.
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#3
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
LG M227WD - ASUS S1-AT5NM10E - LOGITECH HARMONY 300i - MINI KEYBOARD USB
Running Ubuntu Precise 12.04.04 - FRODO 12.03 - Transparency!
Movies: 996 - TV Show: 98 - Albums: 1161

My Script: Rating Update - Thumbnails Cleaner
Reply
#4
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!
LG M227WD - ASUS S1-AT5NM10E - LOGITECH HARMONY 300i - MINI KEYBOARD USB
Running Ubuntu Precise 12.04.04 - FRODO 12.03 - Transparency!
Movies: 996 - TV Show: 98 - Albums: 1161

My Script: Rating Update - Thumbnails Cleaner
Reply
#5
definitely my bad, fixed now.

cheers for the bug reports mate,
they are really appreciated Smile
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#6
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
LG M227WD - ASUS S1-AT5NM10E - LOGITECH HARMONY 300i - MINI KEYBOARD USB
Running Ubuntu Precise 12.04.04 - FRODO 12.03 - Transparency!
Movies: 996 - TV Show: 98 - Albums: 1161

My Script: Rating Update - Thumbnails Cleaner
Reply

Logout Mark Read Team Forum Stats Members Help
Some corrections0