The branch, eden has been updated
       via  32480b62624169414f93d2e71b0490099e606605 (commit)
       via  91d4c0bd8c57eefb046e6a7534926cdd20157d68 (commit)
       via  3b24dc120cb5c053e386094a23870f341f2488fc (commit)
       via  441d7f67a7f4ebdca1734a744a456dfa427a258c (commit)
      from  d3d6138b5a897b341ca0ededfa45c2ea1580cfc2 (commit)

- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=32480b62624169414f93d2e71b0490099e606605

commit 32480b62624169414f93d2e71b0490099e606605
Author: spiff <sp...@xbmc.org>
Date:   Tue Jun 26 08:01:33 2012 +0200

    [plugin.video.fernsehkritik_tv] updated to version 1.0.6

diff --git a/plugin.video.fernsehkritik_tv/addon.xml 
b/plugin.video.fernsehkritik_tv/addon.xml
index 7b7cfbd..c480202 100644
--- a/plugin.video.fernsehkritik_tv/addon.xml
+++ b/plugin.video.fernsehkritik_tv/addon.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<addon id="plugin.video.fernsehkritik_tv" name="Fernsehkritik.tv" 
version="1.0.5" provider-name="AddonScriptorDE">
+<addon id="plugin.video.fernsehkritik_tv" name="Fernsehkritik.tv" 
version="1.0.6" provider-name="AddonScriptorDE">
     <requires>
         <import addon="xbmc.python" version="2.0"/>
     </requires>
diff --git a/plugin.video.fernsehkritik_tv/changelog.txt 
b/plugin.video.fernsehkritik_tv/changelog.txt
index 66a6108..7af5e6b 100644
--- a/plugin.video.fernsehkritik_tv/changelog.txt
+++ b/plugin.video.fernsehkritik_tv/changelog.txt
@@ -3,4 +3,5 @@
 1.0.2 - Fixed TV-Magazin Episode 1-66
 1.0.3 - Changed Timeout
 1.0.4 - Fixed newest TV-Magazin Episode
-1.0.5 - Various fixes and optical optimizations
\ No newline at end of file
+1.0.5 - Various fixes and optical optimizations
+1.0.6 - Fixed missing TV-Magazin episodes
\ No newline at end of file
diff --git a/plugin.video.fernsehkritik_tv/default.py 
b/plugin.video.fernsehkritik_tv/default.py
index a28b5aa..73c8735 100644
--- a/plugin.video.fernsehkritik_tv/default.py
+++ b/plugin.video.fernsehkritik_tv/default.py
@@ -14,7 +14,7 @@ settings = xbmcaddon.Addon(id='plugin.video.fernsehkritik_tv')
 translation = settings.getLocalizedString
 
 def index():
-        
addDir("TV-Magazin","http://fernsehkritik.tv/tv-magazin/komplett/",1,"";)
+        addDir("TV-Magazin","http://fernsehkritik.tv/tv-magazin/",1,"";)
         addDir("Pantoffelkino-TV","http://fernsehkritik.tv/pktv/",1,"";)
         addDir(str(translation(30001))+": 
"+str(translation(30002)),"http://fernsehkritik.tv/extras/",1,"";)
         addDir(str(translation(30001))+": Aktuell im 
Gespräch","http://fernsehkritik.tv/extras/aktuell/",1,"";)
@@ -23,40 +23,38 @@ def index():
         xbmcplugin.endOfDirectory(thisPlugin)
 
 def listVideos(url):
-        titleEntrys=[]
-        if url=="http://fernsehkritik.tv/tv-magazin/komplett/":
-          content = getUrl("http://fernsehkritik.tv/tv-magazin/";)
-          spl=content.split('<div class="lclmo" id=')
-          for i in range(1,3,1):
-            entry=spl[i]
-            match=re.compile('<a href="(.+?)">(.+?)</a>', 
re.DOTALL).findall(entry)
-            urlEntryOne=match[0][0]
-            title=match[0][1].replace("&quot;","")
-            titleEntrys.append(title)
-            match=re.compile('src="(.+?)"', re.DOTALL).findall(entry)
-            thumb=match[0]
-            urlEntryOne=urlEntryOne.replace("../","/")
-            thumb=thumb.replace("../","/")
-            newUrl="http://fernsehkritik.tv"+urlEntryOne
-            addLink(title,newUrl,2,"http://fernsehkritik.tv"+thumb)
+        urlEntrys=[]
         content = getUrl(url)
-        spl=content.split('<div class="lclmo" id=')
-        for i in range(1,len(spl),1):
-            entry=spl[i]
-            match=re.compile('<a href="(.+?)">(.+?)</a>', 
re.DOTALL).findall(entry)
-            url=match[0][0]
-            title=match[0][1].replace("&quot;","")
-            match=re.compile('src="(.+?)"', re.DOTALL).findall(entry)
-            thumb=match[0]
-            thumb=thumb.replace("../","/")
-            newUrl=""
-            if url.find("/pktv/")==0:
-              newUrl="http://fernsehkritik.tv"+url
-            elif url.find("#extra-")==0:
-              newUrl=url[7:]
-            else:
-              newUrl="http://fernsehkritik.tv"+url
-            if not title in titleEntrys:
+        if url=="http://fernsehkritik.tv/tv-magazin/":
+          match=re.compile('vom (.+?)</a>', re.DOTALL).findall(content)
+          firstDate=match[0]
+          match=re.compile('href="../folge-(.+?)/"', 
re.DOTALL).findall(content)
+          for nr in match:
+            newUrl="http://fernsehkritik.tv/folge-"+nr+"/";
+            if nr.find(">")==-1:
+              if newUrl not in urlEntrys:
+                urlEntrys.append(newUrl)
+                title="Folge "+nr
+                if len(urlEntrys)==1:
+                  title+=" ("+firstDate+")"
+                addLink(title,newUrl,2,"")
+        else:
+          spl=content.split('<div class="lclmo" id=')
+          for i in range(1,len(spl),1):
+              entry=spl[i]
+              match=re.compile('<a href="(.+?)">(.+?)</a>', 
re.DOTALL).findall(entry)
+              url=match[0][0]
+              title=match[0][1].replace("&quot;","")
+              match=re.compile('src="(.+?)"', re.DOTALL).findall(entry)
+              thumb=match[0]
+              thumb=thumb.replace("../","/")
+              newUrl=""
+              if url.find("/pktv/")==0:
+                newUrl="http://fernsehkritik.tv"+url
+              elif url.find("#extra-")==0:
+                newUrl=url[7:]
+              else:
+                newUrl="http://fernsehkritik.tv"+url
               addLink(title,newUrl,2,"http://fernsehkritik.tv"+thumb)
         xbmcplugin.endOfDirectory(thisPlugin)
 

http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=91d4c0bd8c57eefb046e6a7534926cdd20157d68

commit 91d4c0bd8c57eefb046e6a7534926cdd20157d68
Author: spiff <sp...@xbmc.org>
Date:   Tue Jun 26 08:00:55 2012 +0200

    [plugin.video.giga_de] updated to version 1.0.2

diff --git a/plugin.video.giga_de/addon.xml b/plugin.video.giga_de/addon.xml
index d884fd3..e04fa4f 100644
--- a/plugin.video.giga_de/addon.xml
+++ b/plugin.video.giga_de/addon.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<addon id="plugin.video.giga_de" name="GIGA.de" version="1.0.1" 
provider-name="AddonScriptorDE">
+<addon id="plugin.video.giga_de" name="GIGA.de" version="1.0.2" 
provider-name="AddonScriptorDE">
     <requires>
         <import addon="xbmc.python" version="2.0"/>
     </requires>
diff --git a/plugin.video.giga_de/changelog.txt 
b/plugin.video.giga_de/changelog.txt
index d6e5ed4..f2a6baa 100644
--- a/plugin.video.giga_de/changelog.txt
+++ b/plugin.video.giga_de/changelog.txt
@@ -1,2 +1,3 @@
 1.0.0 - First Try
-1.0.1 - Various fixes and optical optimizations
\ No newline at end of file
+1.0.1 - Various fixes and optical optimizations
+1.0.2 - Fixed site changes for "next page"
\ No newline at end of file
diff --git a/plugin.video.giga_de/default.py b/plugin.video.giga_de/default.py
index 3a84d42..aee3fcd 100644
--- a/plugin.video.giga_de/default.py
+++ b/plugin.video.giga_de/default.py
@@ -46,9 +46,9 @@ def listVideos(url):
             thumb=match[0]
           title=cleanTitle(title)
           addLink(title,url,'playVideo',thumb)
-        match=re.compile('<li class="next-page"><a href="(.+?)"', 
re.DOTALL).findall(content)
+        match=re.compile('<li class="notcurrent   "><a href="(.+?)"', 
re.DOTALL).findall(content)
         if len(match)>0:
-          addDir("Next Page",match[0],'listVideos',"")
+          addDir(translation(30002),match[0],'listVideos',"")
         xbmcplugin.endOfDirectory(pluginhandle)
 
 def playVideo(url):
@@ -73,7 +73,7 @@ def playVideo(url):
           return xbmcplugin.setResolvedUrl(pluginhandle, True, listitem)
 
 def cleanTitle(title):
-        return 
title.replace("&lt;","<").replace("&gt;",">").replace("&amp;","&").replace("&#038;","&").replace("&#039;","\\").replace("&#8211;","-").replace("&#8217;","'").replace("&quot;","\"").strip()
+        return 
title.replace("&lt;","<").replace("&gt;",">").replace("&amp;","&").replace("&#038;","&").replace("&#039;","\\").replace("&#8211;","-").replace("&#8220;","-").replace("&#8221;","-").replace("&#8217;","'").replace("&quot;","\"").strip()
 
 def getUrl(url):
         req = urllib2.Request(url)
diff --git a/plugin.video.giga_de/resources/language/English/strings.xml 
b/plugin.video.giga_de/resources/language/English/strings.xml
index e922600..e0ad795 100644
--- a/plugin.video.giga_de/resources/language/English/strings.xml
+++ b/plugin.video.giga_de/resources/language/English/strings.xml
@@ -1,4 +1,5 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <strings>
   <string id="30001">All Videos</string>
+  <string id="30002">Next Page</string>
 </strings>
diff --git a/plugin.video.giga_de/resources/language/German/strings.xml 
b/plugin.video.giga_de/resources/language/German/strings.xml
index 5ee8057..e6ed9f4 100644
--- a/plugin.video.giga_de/resources/language/German/strings.xml
+++ b/plugin.video.giga_de/resources/language/German/strings.xml
@@ -1,4 +1,5 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <strings>
   <string id="30001">Alle Videos</string>
+  <string id="30002">Nächste Seite</string>
 </strings>

http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=3b24dc120cb5c053e386094a23870f341f2488fc

commit 3b24dc120cb5c053e386094a23870f341f2488fc
Author: spiff <sp...@xbmc.org>
Date:   Tue Jun 26 07:59:43 2012 +0200

    [plugin.video.filmstarts_de] updated to version 1.0.4

diff --git a/plugin.video.filmstarts_de/addon.xml 
b/plugin.video.filmstarts_de/addon.xml
index fe53810..c8dbc1d 100644
--- a/plugin.video.filmstarts_de/addon.xml
+++ b/plugin.video.filmstarts_de/addon.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<addon id="plugin.video.filmstarts_de" name="FilmStarts.de" version="1.0.3" 
provider-name="AddonScriptorDE">
+<addon id="plugin.video.filmstarts_de" name="FilmStarts.de" version="1.0.4" 
provider-name="AddonScriptorDE">
     <requires>
         <import addon="xbmc.python" version="2.0"/>
     </requires>
diff --git a/plugin.video.filmstarts_de/changelog.txt 
b/plugin.video.filmstarts_de/changelog.txt
index eacaeea..86a3d5c 100644
--- a/plugin.video.filmstarts_de/changelog.txt
+++ b/plugin.video.filmstarts_de/changelog.txt
@@ -1,4 +1,12 @@
-1.0.0 - First Try
-1.0.1 - Changed addon.xml & Fixed small bug
-1.0.2 - Changed Timeout
-1.0.3 - Various fixes and optical optimizations
\ No newline at end of file
+1.0.0 
+- First Try
+1.0.1 
+- Changed addon.xml 
+- Fixed small bug
+1.0.2 
+- Changed Timeout
+1.0.3 
+- Various fixes and optical optimizations
+1.0.4 
+- Added sort selection for trailers
+- Various fixes
\ No newline at end of file
diff --git a/plugin.video.filmstarts_de/default.py 
b/plugin.video.filmstarts_de/default.py
index 65e6e72..3e83a8c 100644
--- a/plugin.video.filmstarts_de/default.py
+++ b/plugin.video.filmstarts_de/default.py
@@ -7,14 +7,21 @@ settings = xbmcaddon.Addon(id='plugin.video.filmstarts_de')
 translation = settings.getLocalizedString
 
 def index():
-        addDir('Trailer: 
'+translation(30001),'http://www.filmstarts.de/trailer/aktuell_im_kino.html?version=1',1,'')
-        addDir('Trailer: 
'+translation(30002),'http://www.filmstarts.de/trailer/bald_im_kino.html?version=1',1,'')
-        addDir('Trailer: 
Archiv','http://www.filmstarts.de/trailer/archiv.html?version=1',1,'')
-        addDir('Filmstarts: Fünf 
Sterne','http://www.filmstarts.de/videos/shows/funf-sterne',3,'')
-        addDir('Filmstarts: 
Fehlerteufel','http://www.filmstarts.de/videos/shows/filmstarts-fehlerteufel',3,'')
-        addDir('Meine 
Lieblings-Filmszene','http://www.filmstarts.de/videos/shows/meine-lieblings-filmszene',3,'')
-        
addDir('Video-Interviews','http://www.filmstarts.de/trailer/interviews/',4,'')
-        
addDir('Serien-Trailer','http://www.filmstarts.de/trailer/serien/',5,'')
+        addDir('Trailer: 
'+translation(30001),'http://www.filmstarts.de/trailer/aktuell_im_kino.html?version=1',"showSortDirection",'')
+        addDir('Trailer: 
'+translation(30002),'http://www.filmstarts.de/trailer/bald_im_kino.html?version=1',"showSortDirection",'')
+        addDir('Trailer: 
Archiv','http://www.filmstarts.de/trailer/archiv.html?version=1',"showSortDirection",'')
+        addDir('Filmstarts: Fünf 
Sterne','http://www.filmstarts.de/videos/shows/funf-sterne',"listVideosMagazin",'')
+        addDir('Filmstarts: 
Fehlerteufel','http://www.filmstarts.de/videos/shows/filmstarts-fehlerteufel',"listVideosMagazin",'')
+        addDir('Meine 
Lieblings-Filmszene','http://www.filmstarts.de/videos/shows/meine-lieblings-filmszene',"listVideosMagazin",'')
+        
addDir('Video-Interviews','http://www.filmstarts.de/trailer/interviews/',"listVideosInterview",'')
+        
addDir('Serien-Trailer','http://www.filmstarts.de/trailer/serien/',"listVideosTV",'')
+        xbmcplugin.endOfDirectory(pluginhandle)
+
+def showSortDirection(url):
+        
addDir(translation(30003),url.replace("?version=1","?sort_order=0&version=1"),"listVideosTrailer",'')
+        
addDir(translation(30004),url.replace("?version=1","?sort_order=1&version=1"),"listVideosTrailer",'')
+        
addDir(translation(30005),url.replace("?version=1","?sort_order=3&version=1"),"listVideosTrailer",'')
+        
addDir(translation(30006),url.replace("?version=1","?sort_order=2&version=1"),"listVideosTrailer",'')
         xbmcplugin.endOfDirectory(pluginhandle)
 
 def listVideos(urlFull):
@@ -32,23 +39,23 @@ def listVideos(urlFull):
             maxPage=int(match[0][2])
           except:
             pass
-        if mode==1:
+        if mode=="listVideosTrailer":
           match=re.compile('<img src=\'(.+?)\' alt="(.+?)" title="(.+?)" 
/>\n</span>\n</div>\n<div class="contenzone">\n<div class="titlebar">\n<a 
class="link" href="(.+?)">\n<span class=\'bold\'>(.+?)</span>', 
re.DOTALL).findall(content)
           for thumb,temp1,temp2,url,title in match:
-                addLink(title,'http://www.filmstarts.de' + url,2,thumb)
-        elif mode==3:
+                addLink(title,'http://www.filmstarts.de' + 
url,"playVideo",thumb)
+        elif mode=="listVideosMagazin":
           if currentPage==1:
             match=re.compile('<a href="(.+?)">\n<img src="(.+?)" alt="" 
/>\n</a>\n</div>\n<div style="(.+?)">\n<h2 class="(.+?)" 
style="(.+?)"><b>(.+?)</b> (.+?)</h2><br />\n<span style="(.+?)" 
class="purehtml fs11">\n(.+?)<a class="btn" href="(.+?)"', 
re.DOTALL).findall(content)
             for temp0,thumb,temp1,temp2,temp3,temp4,title,temp5,temp6,url in 
match:
-                  addLink(title,'http://www.filmstarts.de' + url,2,thumb)
+                  addLink(title,'http://www.filmstarts.de' + 
url,"playVideo",thumb)
           match=re.compile('<img src=\'(.+?)\' alt="(.+?)" title="(.+?)" 
/>\n</span>\n</div>\n<div class="contenzone">\n<div class="titlebar">\n<a 
href=\'(.+?)\' class="link">\n<span class=\'bold\'><b>(.+?)</b> (.+?)</span>', 
re.DOTALL).findall(content)
           for thumb,temp1,temp2,url,temp3,title in match:
-                addLink(title,'http://www.filmstarts.de' + url,2,thumb)
-        elif mode==4:
+                addLink(title,'http://www.filmstarts.de' + 
url,"playVideo",thumb)
+        elif mode=="listVideosInterview":
           match=re.compile('<img src=\'(.+?)\'(.+?)</span>\n</div>\n<div 
class="contenzone">\n<div class="titlebar">\n<a(.+?)href=\'(.+?)\'>\n<span 
class=\'bold\'>\n(.+?)\n</span>(.+?)\n</a>', re.DOTALL).findall(content)
           for thumb,temp1,temp2,url,title1,title2 in match:
-                addLink(title1+title2,'http://www.filmstarts.de' + url,2,thumb)
-        elif mode==5:
+                addLink(title1+title2,'http://www.filmstarts.de' + 
url,"playVideo",thumb)
+        elif mode=="listVideosTV":
           spl=content.split('<div class="datablock vpadding10b">')
           for i in range(1,len(spl),1):
             entry=spl[i]
@@ -62,20 +69,19 @@ def listVideos(urlFull):
             else:
               match=re.compile("<a href='(.+?)'>\n(.+?)<br />", 
re.DOTALL).findall(entry)
               title=match[0][1]
-            addLink(title,'http://www.filmstarts.de' + url,2,thumb)
+            addLink(title,'http://www.filmstarts.de' + url,"playVideo",thumb)
         if currentPage<maxPage:
           urlNew=""
-          if urlFull.find('?page=')>=0 and mode==1:
-            
match=re.compile('http://www.filmstarts.de/(.+?)?page=(.+?)&version=1', 
re.DOTALL).findall(urlFull)
-            
urlNew='http://www.filmstarts.de/'+match[0][0]+'page='+str(currentPage+1)+'&version=1'
-          elif urlFull.find('?page=')>=-1 and mode==1:
-            
urlNew=urlFull.replace("?version=1","?page="+str(currentPage+1))+"&version=1"
-          elif urlFull.find('?page=')>=0 and (mode==3 or mode==4 or mode==5):
+          if mode=="listVideosTrailer":
+            sortNr=urlFull[urlFull.find('sort_order=')+11:]
+            sortNr=sortNr[:sortNr.find('&')]
+            
urlNew=urlFull[:urlFull.find('?')]+"?page="+str(currentPage+1)+"&sort_order="+sortNr+"&version=1"
+          elif urlFull.find('?page=')>=0 and (mode=="listVideosMagazin" or 
mode=="listVideosInterview" or mode=="listVideosTV"):
             match=re.compile('http://www.filmstarts.de/(.+?)?page=(.+?)', 
re.DOTALL).findall(urlFull)
             
urlNew='http://www.filmstarts.de/'+match[0][0]+'page='+str(currentPage+1)
-          elif urlFull.find('?page=')>=-1 and (mode==3 or mode==4 or mode==5):
+          elif urlFull.find('?page=')==-1 and (mode=="listVideosMagazin" or 
mode=="listVideosInterview" or mode=="listVideosTV"):
             urlNew=urlFull + "?page="+str(currentPage+1)
-          addDir('Next Page',urlNew,mode,'')
+          addDir(translation(30007)+" ("+str(currentPage+1)+")",urlNew,mode,'')
         xbmcplugin.endOfDirectory(pluginhandle)
 
 def playVideo(url):
@@ -99,7 +105,7 @@ def playVideo(url):
 def getUrl(url):
         req = urllib2.Request(url)
         req.add_header('User-Agent', 'Mozilla/5.0 (Windows NT 6.1; rv:11.0) 
Gecko/20100101 Firefox/11.0')
-        response = urllib2.urlopen(req,timeout=30)
+        response = urllib2.urlopen(req)
         link=response.read()
         response.close()
         return link
@@ -133,23 +139,16 @@ def addDir(name,url,mode,iconimage):
         return ok
          
 params=parameters_string_to_dict(sys.argv[2])
-url=None
-mode=None
-
-try:
-        url=urllib.unquote_plus(params["url"])
-except:
-        pass
-try:
-        mode=int(params["mode"])
-except:
-        pass
-
+mode=params.get('mode')
+url=params.get('url')
+if type(url)==type(str()):
+  url=urllib.unquote_plus(url)
 
-if mode==None or url==None or len(url)<1:
-        index()
-       
-elif mode==2:
-        playVideo(url)
+if mode=="playVideo":
+    playVideo(url)
+elif mode=="showSortDirection":
+    showSortDirection(url)
+elif mode=="listVideosMagazin" or mode=="listVideosInterview" or 
mode=="listVideosTV" or mode=="listVideosTrailer":
+    listVideos(url)
 else:
-        listVideos(url)
+    index()
\ No newline at end of file
diff --git a/plugin.video.filmstarts_de/resources/language/English/strings.xml 
b/plugin.video.filmstarts_de/resources/language/English/strings.xml
index b158d89..ac01798 100644
--- a/plugin.video.filmstarts_de/resources/language/English/strings.xml
+++ b/plugin.video.filmstarts_de/resources/language/English/strings.xml
@@ -2,4 +2,9 @@
 <strings>
   <string id="30001">In theaters now</string>
   <string id="30002">In theaters soon</string>
+  <string id="30003">by hits</string>
+  <string id="30004">by release date</string>
+  <string id="30005">by title</string>
+  <string id="30006">by adding date</string>
+  <string id="30007">Next Page</string>
 </strings>
diff --git a/plugin.video.filmstarts_de/resources/language/German/strings.xml 
b/plugin.video.filmstarts_de/resources/language/German/strings.xml
index 4c7ca56..15e7e73 100644
--- a/plugin.video.filmstarts_de/resources/language/German/strings.xml
+++ b/plugin.video.filmstarts_de/resources/language/German/strings.xml
@@ -2,4 +2,9 @@
 <strings>
   <string id="30001">Aktuell im Kino</string>
   <string id="30002">Demnächst im Kino</string>
+  <string id="30003">nach Aufrufen</string>
+  <string id="30004">nach Starttermin</string>
+  <string id="30005">nach Filmtitel</string>
+  <string id="30006">hinzugefügt am</string>
+  <string id="30007">Nächste Seite</string>
 </strings>

http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=441d7f67a7f4ebdca1734a744a456dfa427a258c


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

Summary of changes:
 plugin.video.fernsehkritik_tv/addon.xml            |    2 +-
 plugin.video.fernsehkritik_tv/changelog.txt        |    3 +-
 plugin.video.fernsehkritik_tv/default.py           |   66 +++++-----
 plugin.video.filmstarts_de/addon.xml               |    2 +-
 plugin.video.filmstarts_de/changelog.txt           |   16 ++-
 plugin.video.filmstarts_de/default.py              |   87 ++++++------
 .../resources/language/English/strings.xml         |    5 +
 .../resources/language/German/strings.xml          |    5 +
 plugin.video.giga_de/addon.xml                     |    2 +-
 plugin.video.giga_de/changelog.txt                 |    3 +-
 plugin.video.giga_de/default.py                    |    6 +-
 .../resources/language/English/strings.xml         |    1 +
 .../resources/language/German/strings.xml          |    1 +
 .../LICENSE.txt                                    |    0
 .../addon.xml                                      |   10 +-
 plugin.video.sueddeutsche_de/changelog.txt         |    2 +
 plugin.video.sueddeutsche_de/default.py            |  145 ++++++++++++++++++++
 plugin.video.sueddeutsche_de/icon.png              |  Bin 0 -> 13658 bytes
 .../resources/language/English/strings.xml         |   12 ++
 .../resources/language/German/strings.xml          |   12 ++
 20 files changed, 285 insertions(+), 95 deletions(-)
 copy {plugin.audio.einslive_de => plugin.video.sueddeutsche_de}/LICENSE.txt 
(100%)
 copy {plugin.video.filmstarts_de => plugin.video.sueddeutsche_de}/addon.xml 
(52%)
 create mode 100644 plugin.video.sueddeutsche_de/changelog.txt
 create mode 100644 plugin.video.sueddeutsche_de/default.py
 create mode 100644 plugin.video.sueddeutsche_de/icon.png
 create mode 100644 
plugin.video.sueddeutsche_de/resources/language/English/strings.xml
 create mode 100644 
plugin.video.sueddeutsche_de/resources/language/German/strings.xml


hooks/post-receive
-- 
Plugins

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to