The branch, eden-pre has been updated
       via  d3e8e0ec88c02e902d2f229936895d291467ffc4 (commit)
      from  fb6bf5f40a4cc7cd8a4ed6f3577d73ebc2598a7d (commit)

- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=d3e8e0ec88c02e902d2f229936895d291467ffc4

commit d3e8e0ec88c02e902d2f229936895d291467ffc4
Author: ronie <[email protected]>
Date:   Sun Dec 4 01:31:09 2011 +0100

    [script.tv.show.next.aired] -v4.0.12
    
    fixed error if latest date is before 1970

diff --git a/script.tv.show.next.aired/addon.xml 
b/script.tv.show.next.aired/addon.xml
index 0deb6e1..fa15a95 100644
--- a/script.tv.show.next.aired/addon.xml
+++ b/script.tv.show.next.aired/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="script.tv.show.next.aired"
        name="TV Show - Next Aired"
-       version="4.1.10"
+       version="4.1.12"
        provider-name="Ppic, Frost, ronie, `Black">
   <requires>
     <import addon="xbmc.python" version="2.0"/>
@@ -16,7 +16,6 @@
     <summary lang="en">Get info for TV Shows Next Aired.</summary>
     <summary lang="fr">Récupère les dates de diffusions de vos 
séries</summary>
     <description lang="en">Get info for TV Shows Next Aired. You'll never miss 
one again.</description>
-    <description lang="fr">Ce script interroge votre médiathèque puis vas 
récupérer les infos sur les prochaines diffusions de vos séries.
-    vous n'en manquerez plus aucune.</description>
+    <description lang="fr">Ce script interroge votre médiathèque puis vas 
récupérer les infos sur les prochaines diffusions de vos séries. vous n'en 
manquerez plus aucune.</description>
   </extension>
 </addon>
diff --git a/script.tv.show.next.aired/changelog.txt 
b/script.tv.show.next.aired/changelog.txt
index d32b88b..146b8ec 100644
--- a/script.tv.show.next.aired/changelog.txt
+++ b/script.tv.show.next.aired/changelog.txt
@@ -1,3 +1,9 @@
+v4.1.12
+- use artwork downloader instead of logo downloader
+
+v4.1.11
+- fixed error if latest date is before 1970
+
 v4.1.10
 - don't block xbmc on exit
 
diff --git a/script.tv.show.next.aired/default.py 
b/script.tv.show.next.aired/default.py
index 329b531..410200e 100644
--- a/script.tv.show.next.aired/default.py
+++ b/script.tv.show.next.aired/default.py
@@ -271,7 +271,8 @@ class NextAired:
         latest = current_show.get("Latest Episode","").split("^")
         latest.extend(['',''])
         if len(latest[2]) == 11:
-            date = datetime.fromtimestamp( mktime( strptime( latest[2], 
'%b/%d/%Y' ) ) )
+            latesttime = strptime( latest[2], '%b/%d/%Y' )
+            date = datetime(latesttime[0],latesttime[1],latesttime[2])
             latest[2] = date.strftime(DATE_FORMAT)
         current_show["LatestNumber"] = latest[0]
         current_show["LatestTitle"] = latest[1]
diff --git a/script.tv.show.next.aired/resources/language/English/strings.xml 
b/script.tv.show.next.aired/resources/language/English/strings.xml
index ef5cf08..de5d0c1 100644
--- a/script.tv.show.next.aired/resources/language/English/strings.xml
+++ b/script.tv.show.next.aired/resources/language/English/strings.xml
@@ -7,11 +7,11 @@
        <string id="32104">Operation canceled by user.</string>
        <string id="45000">Display</string>
        <string id="45001">Thumbnail type</string>
-       <string id="45002">Download banners (Logo Downloader required)</string>
-       <string id="45003">Download logos (Logo Downloader required)</string>
+       <string id="45002">Download banners (Artwork Downloader 
required)</string>
+       <string id="45003">Download logos (Artwork Downloader required)</string>
        <string id="45004">Enable background fanart</string>
        <string id="45005">Enable 16:9 preview thumbs</string>
-    <string id="45006">Download 16:9 preview thumbs (Logo Downloader 
required)</string>
+    <string id="45006">Download 16:9 preview thumbs (Artwork Downloader 
required)</string>
     <string id="45007">Rescan tv guide data</string>
 </strings>
 
diff --git a/script.tv.show.next.aired/resources/language/German/strings.xml 
b/script.tv.show.next.aired/resources/language/German/strings.xml
index 104cf63..3c7b66f 100644
--- a/script.tv.show.next.aired/resources/language/German/strings.xml
+++ b/script.tv.show.next.aired/resources/language/German/strings.xml
@@ -7,11 +7,11 @@
        <string id="32104">Operation vom Benutzer abgebrochen.</string>
        <string id="45000">Anzeige</string>
        <string id="45001">Vorschaubild-Typ</string>
-       <string id="45002">Banner herunterladen (Logo Downloader 
erforderlich)</string>
-       <string id="45003">Logos herunterladen (Logo Downloader 
erforderlich)</string>
+       <string id="45002">Banner herunterladen (Artwork Downloader 
erforderlich)</string>
+       <string id="45003">Logos herunterladen (Artwork Downloader 
erforderlich)</string>
        <string id="45004">Hintergrund Fanart aktivieren</string>
        <string id="45005">16:9 Vorschaubiler aktivieren</string>
-       <string id="45006">16:9 Vorschaubilder herunterladen (Logo Downloader 
erforderlich)</string>
+       <string id="45006">16:9 Vorschaubilder herunterladen (Artwork 
Downloader erforderlich)</string>
        <string id="45007">TV Guide Daten neu laden</string>
 </strings>
 
diff --git a/script.tv.show.next.aired/resources/settings.xml 
b/script.tv.show.next.aired/resources/settings.xml
index 6db4e56..7ae11a4 100644
--- a/script.tv.show.next.aired/resources/settings.xml
+++ b/script.tv.show.next.aired/resources/settings.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <settings>
-  <setting id="ReScan" type="action" label="45007" 
action="RunScript(script.tv.show.next.aired,force=True)"/>
-  <setting type="lsep" label="45000" />
-  <setting id="ThumbType" type="enum" label="45001" default="0" 
values="Thumb|Banner|Logo" />
-  <setting id="DownloadBanners" type="action" subsetting="true" label="45002" 
action="RunScript(script.logo-downloader,mode=bulk,clearart=False,logo=False,showthumb=False,poster=False,banner=banner.jpg)"
 visible="gt(-1,0) + lt(-1,2)" />
-  <setting id="DownloadLogos" type="action" subsetting="true" label="45003" 
action="RunScript(script.logo-downloader,mode=bulk,clearart=False,logo=True,showthumb=False,poster=False,banner=False)"
 visible="gt(-2,1) + lt(-2,3)" />
-  <setting id="BackgroundFanart" type="bool" label="45004" default="False" />
-  <setting id="PreviewThumbs" type="bool" label="45005" default="False" />
-  <setting id="DownloadPreviewThumbs" type="action" subsetting="true" 
label="45006" 
action="RunScript(script.logo-downloader,mode=bulk,clearart=False,logo=False,showthumb=landscape.jpg,poster=False,banner=False)"
 visible="eq(-1,true)" />
+       <setting id="ReScan" type="action" label="45007" 
action="RunScript(script.tv.show.next.aired,force=True)"/>
+       <setting type="lsep" label="45000" />
+       <setting id="ThumbType" type="enum" label="45001" default="0" 
values="Thumb|Banner|Logo" />
+       <setting id="DownloadBanners" type="action" subsetting="true" 
label="45002" 
action="RunScript(script.artwork.downloader,mediatype=tvshow,mode=custom,banner)"
 visible="gt(-1,0) + lt(-1,2)" />
+       <setting id="DownloadLogos" type="action" subsetting="true" 
label="45003" 
action="RunScript(script.artwork.downloader,mediatype=tvshow,mode=custom,clearlogo)"
 visible="gt(-2,1) + lt(-2,3)" />
+       <setting id="BackgroundFanart" type="bool" label="45004" 
default="False" />
+       <setting id="PreviewThumbs" type="bool" label="45005" default="False" />
+       <setting id="DownloadPreviewThumbs" type="action" subsetting="true" 
label="45006" 
action="RunScript(script.artwork.downloader,mediatype=tvshow,mode=custom,tvthumb)"
 visible="eq(-1,true)" />
 </settings>

-----------------------------------------------------------------------

Summary of changes:
 script.tv.show.next.aired/addon.xml                |    5 ++---
 script.tv.show.next.aired/changelog.txt            |    6 ++++++
 script.tv.show.next.aired/default.py               |    3 ++-
 .../resources/language/English/strings.xml         |    6 +++---
 .../resources/language/German/strings.xml          |    6 +++---
 script.tv.show.next.aired/resources/settings.xml   |   16 ++++++++--------
 6 files changed, 24 insertions(+), 18 deletions(-)


hooks/post-receive
-- 
Scripts

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to