• 1
  • 53
  • 54
  • 55(current)
  • 56
  • 57
  • 67
[RELEASE] TV Show Next Aired (Script) Addon
(2012-12-07, 15:37)thewarm Wrote: link broken

use repo
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.
(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
(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.
(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?
(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.
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.
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
Have you scanned your TV shows to the library?
(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
http://wiki.xbmc.org/index.php?title=Add...he_library
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' ))
* Martijn thought the same thing
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
(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! ;-)
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.
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
(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.
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.
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?
  • 1
  • 53
  • 54
  • 55(current)
  • 56
  • 57
  • 67

Logout Mark Read Team Forum Stats Members Help
[RELEASE] TV Show Next Aired (Script) Addon2