Kodi Community Forum
[RELEASE] TV Show Next Aired (Script) Addon - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151)
+---- Thread: [RELEASE] TV Show Next Aired (Script) Addon (/showthread.php?tid=79493)



RE: [RELEASE] TV Show Next Aired (Script) Addon - ronie - 2012-12-07

(2012-12-07, 15:37)thewarm Wrote: link broken

use repo


RE: [RELEASE] TV Show Next Aired (Script) Addon - thewarm - 2012-12-08

(2012-12-07, 21:51)ronie Wrote:
(2012-12-07, 15:37)thewarm Wrote: link broken

use repo

Only see 4.1.24 not 5.03


RE: [RELEASE] TV Show Next Aired (Script) Addon - solidsatras - 2012-12-08

(2012-12-08, 03:49)thewarm Wrote: Only see 4.1.24 not 5.03
That´s because of the difference between
eden repository and
frodo repository

You are clearly using eden.



RE: [RELEASE] TV Show Next Aired (Script) Addon - thewarm - 2012-12-08

(2012-12-08, 09:17)solidsatras Wrote:
(2012-12-08, 03:49)thewarm Wrote: Only see 4.1.24 not 5.03
That´s because of the difference between
eden repository and
frodo repository

You are clearly using eden.

Yes. Does that mean there will be no feature updates for Eden users?


RE: [RELEASE] TV Show Next Aired (Script) Addon - ronie - 2012-12-08

(2012-12-08, 16:08)thewarm Wrote:
(2012-12-08, 09:17)solidsatras Wrote:
(2012-12-08, 03:49)thewarm Wrote: Only see 4.1.24 not 5.03
That´s because of the difference between
eden repository and
frodo repository

You are clearly using eden.

Yes. Does that mean there will be no feature updates for Eden users?

yup, not that there have been (m)any feature updates lately.


RE: [RELEASE] TV Show Next Aired (Script) Addon - Slickrick2369 - 2012-12-09

I am new to xbmc and just got an Apple TV. I have the next aired widget and it has no tv shows in it. How do I get shows on here. It is just blank boxes


RE: [RELEASE] TV Show Next Aired (Script) Addon - Hitcher - 2012-12-09

Have you scanned your TV shows to the library?


RE: [RELEASE] TV Show Next Aired (Script) Addon - Slickrick2369 - 2012-12-09

(2012-12-09, 00:47)Hitcher Wrote: Have you scanned your TV shows to the library?

Sorry. Newbie. How do I scan my tv shows to the library. I kinda need a step by step

I


RE: [RELEASE] TV Show Next Aired (Script) Addon - Hitcher - 2012-12-09

http://wiki.xbmc.org/index.php?title=Adding_videos_to_the_library#Adding_videos_to_the_library


RE: [RELEASE] TV Show Next Aired (Script) Addon - Kib - 2012-12-12

I noticed the script tries to delete two older-version databases called 'canceled.db' and 'next_aired.db' respectively.
This throws an error in the XBMC log when those files are not present. Since there is no 'real' error happening (most times the script is ran those files will not be present any more), could those lines be modified in this way?

original default.py:
Code:
try:
       xbmcvfs.delete(os.path.join( DATA_PATH , 'next_aired.db' ))
       xbmcvfs.delete(os.path.join( DATA_PATH , 'canceled.db' ))
except:
       pass

my proposed change to default.py:
Code:
if xbmcvfs.exists(os.path.join( DATA_PATH , 'next_aired.db' )):
  xbmcvfs.delete(os.path.join( DATA_PATH , 'next_aired.db' ))
if xbmcvfs.exists(os.path.join( DATA_PATH , 'canceled.db' )):
  xbmcvfs.delete(os.path.join( DATA_PATH , 'canceled.db' ))



Re: [RELEASE] TV Show Next Aired (Script) Addon - Martijn - 2012-12-12

* Martijn thought the same thing


RE: [RELEASE] TV Show Next Aired (Script) Addon - ronie - 2012-12-12

(2012-12-12, 17:44)Kibje Wrote: I noticed the script tries to delete two older-version databases called 'canceled.db' and 'next_aired.db' respectively.
This throws an error in the XBMC log when those files are not present. Since there is no 'real' error happening (most times the script is ran those files will not be present any more), could those lines be modified in this way?

original default.py:
Code:
try:
       xbmcvfs.delete(os.path.join( DATA_PATH , 'next_aired.db' ))
       xbmcvfs.delete(os.path.join( DATA_PATH , 'canceled.db' ))
except:
       pass

my proposed change to default.py:
Code:
if xbmcvfs.exists(os.path.join( DATA_PATH , 'next_aired.db' )):
  xbmcvfs.delete(os.path.join( DATA_PATH , 'next_aired.db' ))
if xbmcvfs.exists(os.path.join( DATA_PATH , 'canceled.db' )):
  xbmcvfs.delete(os.path.join( DATA_PATH , 'canceled.db' ))

sometimes i wonder.... why didn't I think of that! ;-)


Re: [RELEASE] TV Show Next Aired (Script) Addon - fernandovg - 2012-12-12

Why some tv show from sunday are appearing as monday 00:00 ? Example DEXTER.
Is it possible to show a compact view. Only images(banners/posters) and no text?
Thanks


RE: [RELEASE] TV Show Next Aired (Script) Addon - ronie - 2012-12-12

(2012-12-12, 23:03)fernandovg Wrote: Why some tv show from sunday are appearing as monday 00:00 ? Example DEXTER.
Is it possible to show a compact view. Only images(banners/posters) and no text?
Thanks

we localize the date and time.

there's no option for a compact view in the script.


RE: [RELEASE] TV Show Next Aired (Script) Addon - fernandovg - 2012-12-14

Can I suggest this compact view as a feature request? This way a whole week can be shown too

I didn't understand the "we localize the date and time.", sorry...
Can you explain again please?