• 1
  • 15
  • 16
  • 17(current)
  • 18
  • 19
  • 76
Release TV Show Next Aired (Script) Addon, now w/TheTVDB data
(2014-03-31, 22:04)warlion Wrote: if we could use something like $INFO[ListItem.AirsToday] or something similar to use the the option of the listitems (-1),(0),(1) to show a flag on all the visible Tvshows
Yes, the Today property (aka AirsToday starting with the next release) should be set for the ListItem prefix for all items in the guide. The NextAired.Today value is the one that is set for the current show when using the backend process. I just checked the backend code, and it queries: xbmc.getInfoLabel("ListItem.TVShowTitle") for the info to provide. It sounds like I should also make it query xbmc.getInfoLabel("ListItem(-1).TVShowTitle") and xbmc.getInfoLabel("ListItem(1).TVShowTitle") and put those values somewhere nice. I don't think the (-1) (1) idiom would work for a non-listitem prefix (though that's just a guess), so perhaps what we want is NextAired.Prior.FOO (for all the various properties) and NextAired.Next.FOO. Seems like that would be easy enough to do. I'll do some testing and see what querying (and prefixing) works.


This brings up a more general announcement: since I messed up the name for the Today text in the guide (calling it NextAired.Today, which clashes with something that the backend processing might try to use for a flag value), I'm diverging that variable name in the next release (which is still a few weeks away). Once the next release happens, anyone who provides a *-TVGuide2.xml file with their skin should change any use of NextAired.Today (and Tomorrow and Yesterday) to NextAired.TodayText (and TomorrowText and YesterdayText). Don't switch that until the next release, though, or the strings will break for any current Next-Aired users that have 6.0.7. Once 6.0.8 is out, you can also switch the non-guide skin code to use "NextAired.AirsToday" in place of "NextAired.Today". The latter variable will stick around (deprecated) for quite a while, though, so there's no rush on that. I imagine I'll get rid of the today-text use of NextAired.Today in 6.0.9, though, since that will remove the clash (and not too many skins have the new guide yet). Skin writers may want to just use $LOCALIZE[33006] for "Today" and $LOCALIZE[33007] for "Tomorrow", but there is no global localized value for "Yesterday" that I could find (I mainly provide Today and Tomorrow text via properties for my addon-default skin, since the use of $LOCALIZE[33006] doesn't seem to work right in it).

..wayne..
Reply
FYI, the backend (property-updating) script now sets NextAired(-1).PROPERTIES and NextAired(1).PROPERTIES based on ListItem(-1) and ListItem(1). The values are updated when the user moves to a new listitem.

..wayne..
Reply
(2014-04-01, 00:38)WayneD Wrote: FYI, the backend (property-updating) script now sets NextAired(-1).PROPERTIES and NextAired(1).PROPERTIES based on ListItem(-1) and ListItem(1). The values are updated when the user moves to a new listitem.

..wayne..

Thanks Wayne i add a few more lol to work better on my skin
Code:
separators = ('.', '(-3).', '(-2).', '(-1).', '(1).', '(2).', '(3).', '(4).', '(5).', '(6).', '(7).', '(8).', '(9).')
Thanks wayne
Image

it work on fixedlist


but not so good on different view
Reply
Hi wayne i just see your changes and i gonna give it a try
if i understand correct you need us to input the min and max of items we are gonna use
ej:
RunScript(script.tv.show.next.aired,backend=-3,7)

Image

using this format
$INFO[Window(Home).property(NextAired(-1).AirsToday)

but its not working as before , im doing something wrong or is still in development this function?

Thanks Wayne for you amazing work
Reply
(2014-04-01, 17:25)warlion Wrote: RunScript(script.tv.show.next.aired,backend=-3,7)
but its not working as before
Sorry, a comma was a poor choice for that arg since RunScript truncated the option. Snag the latest code and change "-3,7" to "-3 7" and you should be back in business.

..wayne..
Reply
that did it thanks wayne

is working again just like before depending on the view
Image
Image

im using

Code:
        <control type="image">
            <include>WatchedOverlayShowCase</include>
            <texture>nextairedtoday.png</texture>
            <visible>substring(Window(Home).Property(NextAired(7).AirsToday),True)</visible>
        </control>

something funny by mistake i use Today instead of AirsToday and the flag also appear on all the Movies lol
Image
Reply
The script seems to fail when viewing a show called "The Listener"

Here is the log file - http://pastebin.com/TYrwHMvM
Reply
(2014-04-02, 05:46)bolter Wrote: The script seems to fail when viewing a show called "The Listener"
It looks like that show has the "tuple" bug that 6.0.7 generates when a show's broadcast time changes w/o any episode changes. One simple fix is to use thetvdb website to submit an episode change for the show (which I just did), so the next time your next-aired data updates it should fix the issue. Alternately, you can do a reset-and-update in the settings menu.

To avoid running into this bug in the future you can snag the zip file version (linked in the first post) and install it.

..wayne..
Reply
@warlion: I've added some extra logging to the latest backend processing. You can request it via the infolog=NUM option (e.g. "backend=-3 7&infolog=6"). That will tell you when the backend is running and what it is setting. You might also try this alternate version of the default.py file (tweak the _py suffix) that changes the settings names from NextAired(-1).FOO and NextAired(1).FOO to NextAired-1.FOO and NextAired1.FOO and see if that helps anything (to see if the parens are causing any issues).

..wayne..
Reply
i will Wayne thanks, at soon i arrive home i report Smile
Reply
hi wayne i just test it with the infolog to 6 the modify default.py and without the parents "()", showing the same result on the view with problems

Code:
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### params: {'infolog': '6', 'backend': '-3 7'}
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### TV Show - Next Aired starting GUI proc (6.0.7+)
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### dateformat: %m/%d/%y
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### nice-date-format: %(wday)s, %(month)s %(day)s, %(year)s
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### nice-date-no-year: %(wday)s, %(month)s %(day)s
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### nice-short-date: %(month)s %(day)s
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### run_backend started
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### separators: ['.', '(1).', '(-1).', '(2).', '(-2).', '(3).', '(-3).', '(4).', '(5).', '(6).', '(7).']
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### fetched fresh data
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### current_show = 2 Broke Girls
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### set . 2 Broke Girls
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### set (1). About a Boy
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### set (-1). Young Justice
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### set (2). Almost Human
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### set (3). American Dad!
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### set (-3). Whose Line Is It Anyway
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### set (4). Archer (2009)
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### set (5). Arrested Development
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### set (6). Arrow
17:27:13 T:860  NOTICE: script.tv.show.next.aired: ### set (7). Avatar: The Last Airbender
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### current_show = About a Boy
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set . About a Boy
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (1). Almost Human
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (-1). 2 Broke Girls
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (2). American Dad!
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (-2). Young Justice
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (3). Archer (2009)
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (4). Arrested Development
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (5). Arrow
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (6). Avatar: The Last Airbender
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (7). B Gata H Kei - Yamada's First Time
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### current_show = Almost Human
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set . Almost Human
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (1). American Dad!
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (-1). About a Boy
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (2). Archer (2009)
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (-2). 2 Broke Girls
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (3). Arrested Development
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (-3). Young Justice
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (4). Arrow
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (5). Avatar: The Last Airbender
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (6). B Gata H Kei - Yamada's First Time
17:27:14 T:860  NOTICE: script.tv.show.next.aired: ### set (7). Batman: The Brave and the Bold
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### current_show = American Dad!
17:27:15 T:6624  NOTICE: Thread LanguageInvoker start, auto delete: false
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set . American Dad!
17:27:15 T:6624  NOTICE: -->Python Interpreter Initialized<--
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (1). Archer (2009)
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (-1). Almost Human
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (2). Arrested Development
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (-2). About a Boy
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (3). Arrow
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (-3). 2 Broke Girls
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (4). Avatar: The Last Airbender
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (5). B Gata H Kei - Yamada's First Time
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (6). Batman: The Brave and the Bold
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (7). Betas
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### current_show = Archer (2009)
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set . Archer (2009)
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (1). Arrested Development
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (-1). American Dad!
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (2). Arrow
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (-2). Almost Human
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (3). Avatar: The Last Airbender
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (-3). About a Boy
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (4). B Gata H Kei - Yamada's First Time
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (5). Batman: The Brave and the Bold
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (6). Betas
17:27:15 T:860  NOTICE: script.tv.show.next.aired: ### set (7). The Big Bang Theory
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### current_show = Arrested Development
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set . Arrested Development
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (1). Arrow
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (-1). Archer (2009)
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (2). Avatar: The Last Airbender
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (-2). American Dad!
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (3). B Gata H Kei - Yamada's First Time
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (-3). Almost Human
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (4). Batman: The Brave and the Bold
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (5). Betas
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (6). The Big Bang Theory
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (7). Black Lagoon
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### current_show = Arrow
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set . Arrow
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (1). Avatar: The Last Airbender
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (-1). Arrested Development
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (2). B Gata H Kei - Yamada's First Time
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (-2). Archer (2009)
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (3). Batman: The Brave and the Bold
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (-3). American Dad!
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (4). Betas
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (5). The Big Bang Theory
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (6). Black Lagoon
17:27:16 T:860  NOTICE: script.tv.show.next.aired: ### set (7). The Blacklist
when i set 17:27:16 T:860 NOTICE: script.tv.show.next.aired: ### set . Arrow all the shows get the flag


just for the fun of it this one is the default.py of the git and the parents "()" on the view with problems

Code:
17:37:03 T:6944  NOTICE: -->Python Interpreter Initialized<--
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### params: {'infolog': '6', 'backend': '-3 7'}
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### TV Show - Next Aired starting GUI proc (6.0.7+)
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### dateformat: %m/%d/%y
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### nice-date-format: %(wday)s, %(month)s %(day)s, %(year)s
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### nice-date-no-year: %(wday)s, %(month)s %(day)s
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### nice-short-date: %(month)s %(day)s
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### run_backend started
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### separators: ['.', '(1).', '(-1).', '(2).', '(-2).', '(3).', '(-3).', '(4).', '(5).', '(6).', '(7).']
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### fetched fresh data
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### current_show = 2 Broke Girls
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### set . 2 Broke Girls
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### set (1). About a Boy
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### set (-1). Young Justice
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### set (2). Almost Human
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### set (3). American Dad!
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### set (-3). Whose Line Is It Anyway
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### set (4). Archer (2009)
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### set (5). Arrested Development
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### set (6). Arrow
17:37:03 T:6944  NOTICE: script.tv.show.next.aired: ### set (7). Avatar: The Last Airbender
17:37:04 T:6944  NOTICE: script.tv.show.next.aired: ### current_show = About a Boy
17:37:04 T:6944  NOTICE: script.tv.show.next.aired: ### set . About a Boy
17:37:04 T:6944  NOTICE: script.tv.show.next.aired: ### set (1). Almost Human
17:37:04 T:6944  NOTICE: script.tv.show.next.aired: ### set (-1). 2 Broke Girls
17:37:04 T:6944  NOTICE: script.tv.show.next.aired: ### set (2). American Dad!
17:37:04 T:6944  NOTICE: script.tv.show.next.aired: ### set (-2). Young Justice
17:37:04 T:6944  NOTICE: script.tv.show.next.aired: ### set (3). Archer (2009)
17:37:04 T:6944  NOTICE: script.tv.show.next.aired: ### set (4). Arrested Development
17:37:04 T:6944  NOTICE: script.tv.show.next.aired: ### set (5). Arrow
17:37:04 T:6944  NOTICE: script.tv.show.next.aired: ### set (6). Avatar: The Last Airbender
17:37:04 T:6944  NOTICE: script.tv.show.next.aired: ### set (7). B Gata H Kei - Yamada's First Time
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### current_show = Almost Human
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set . Almost Human
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (1). American Dad!
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (-1). About a Boy
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (2). Archer (2009)
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (-2). 2 Broke Girls
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (3). Arrested Development
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (-3). Young Justice
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (4). Arrow
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (5). Avatar: The Last Airbender
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (6). B Gata H Kei - Yamada's First Time
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (7). Batman: The Brave and the Bold
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### current_show = American Dad!
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set . American Dad!
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (1). Archer (2009)
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (-1). Almost Human
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (2). Arrested Development
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (-2). About a Boy
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (3). Arrow
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (-3). 2 Broke Girls
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (4). Avatar: The Last Airbender
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (5). B Gata H Kei - Yamada's First Time
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (6). Batman: The Brave and the Bold
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (7). Betas
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### current_show = Archer (2009)
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set . Archer (2009)
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (1). Arrested Development
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (-1). American Dad!
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (2). Arrow
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (-2). Almost Human
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (3). Avatar: The Last Airbender
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (-3). About a Boy
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (4). B Gata H Kei - Yamada's First Time
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (5). Batman: The Brave and the Bold
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (6). Betas
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (7). The Big Bang Theory
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### current_show = Arrested Development
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set . Arrested Development
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (1). Arrow
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (-1). Archer (2009)
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (2). Avatar: The Last Airbender
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (-2). American Dad!
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (3). B Gata H Kei - Yamada's First Time
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (-3). Almost Human
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (4). Batman: The Brave and the Bold
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (5). Betas
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (6). The Big Bang Theory
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### set (7). Black Lagoon
17:37:05 T:6944  NOTICE: script.tv.show.next.aired: ### current_show = Arrow
17:37:06 T:6944  NOTICE: script.tv.show.next.aired: ### set . Arrow
17:37:06 T:6944  NOTICE: script.tv.show.next.aired: ### set (1). Avatar: The Last Airbender
17:37:06 T:6944  NOTICE: script.tv.show.next.aired: ### set (-1). Arrested Development
17:37:06 T:6944  NOTICE: script.tv.show.next.aired: ### set (2). B Gata H Kei - Yamada's First Time
17:37:06 T:6944  NOTICE: script.tv.show.next.aired: ### set (-2). Archer (2009)
17:37:06 T:6944  NOTICE: script.tv.show.next.aired: ### set (3). Batman: The Brave and the Bold
17:37:06 T:6944  NOTICE: script.tv.show.next.aired: ### set (-3). American Dad!
17:37:06 T:6944  NOTICE: script.tv.show.next.aired: ### set (4). Betas
17:37:06 T:6944  NOTICE: script.tv.show.next.aired: ### set (5). The Big Bang Theory
17:37:06 T:6944  NOTICE: script.tv.show.next.aired: ### set (6). Black Lagoon
17:37:06 T:6944  NOTICE: script.tv.show.next.aired: ### set (7). The Blacklist


the log is complete the same with and without the ()
Reply
(2014-04-03, 01:41)warlion Wrote: the log is complete the same with and without the ()
It wouldn't differ in the log, just in the values that get set. As long as you changed the skin to access things like NextAired-1.AirsToday and it didn't access the values any better, then there must be something wrong in xbmc in that situation. The log should provide you with the details of what got set so that you can report an xbmc bug if something is indeed wrong.

..wayne..
Reply
I use Aeon Nox which needs this script and have been having lockup problems. I posted a debug log and a team member told me to get rid of this script. Have you had any reports of freezing or lockups with your script?
Server: Synology Diskstation 1511+ with 8x WD Red NAS 3TB drives, DSM 5.2
Main HTPC: Home Built i3, 8GB RAM, Corsair 128GB SSD, nVidia 630GTX, Harmony Home Control, Pioneer VSX-53, Panasonic VT30 65" 3D TV, Windows 10, Isengard
Bedroom HTPC: Zotac-ID 41 8GB RAM, 128GB SSD, Rii micro keyboard remote, Samsung HW-E550, Sony 32" Google TV, OpenElec 6.0 beta 4
Reply
No problems here using it with Aeon Nox 4.1.9.x for Gotham by warlion. Lot of work has been made lately by Wayne.
Reply
(2014-04-05, 17:12)patseguin Wrote: I use Aeon Nox which needs this script and have been having lockup problems. I posted a debug log and a team member told me to get rid of this script. Have you had any reports of freezing or lockups with your script?
I'm not quite sure it's required, but it's definitely better with it. Anyway, I'm using Nox 5 with this script since it became available. 0 problems.
Reply
  • 1
  • 15
  • 16
  • 17(current)
  • 18
  • 19
  • 76

Logout Mark Read Team Forum Stats Members Help
TV Show Next Aired (Script) Addon, now w/TheTVDB data8