The branch, frodo has been updated
       via  c6cce603c52ab60b90dea6c44d9507812a56ba77 (commit)
       via  465582809d960ae74685707800b28241e4835816 (commit)
      from  13641b387b1c3a29f628e51c180947706f6a833b (commit)

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

commit c6cce603c52ab60b90dea6c44d9507812a56ba77
Author: sphere <[email protected]>
Date:   Tue Feb 18 01:00:20 2014 +0100

    [script.artistslideshow] updated to version 1.6.1

diff --git a/script.artistslideshow/addon.xml b/script.artistslideshow/addon.xml
index 2bd3936..76d56df 100644
--- a/script.artistslideshow/addon.xml
+++ b/script.artistslideshow/addon.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="script.artistslideshow" name="Artist Slideshow" version="1.6.0" 
provider-name="ronie|pkscuot">
+<addon id="script.artistslideshow" name="Artist Slideshow" version="1.6.1" 
provider-name="ronie|pkscuot">
        <requires>
                <import addon="xbmc.python" version="2.1.0"/>
                <import addon="xbmc.addon" version="12.0.0"/>
diff --git a/script.artistslideshow/changelog.txt 
b/script.artistslideshow/changelog.txt
index a360250..2bf5343 100644
--- a/script.artistslideshow/changelog.txt
+++ b/script.artistslideshow/changelog.txt
@@ -1,3 +1,6 @@
+v.1.6.1
+- fixed crash when installing on clean install of XBMC
+
 v.1.6.0
 - image downloads now done in original format instead of .tbn files
 - one time migration routine run to rename all .tbn files to correct format
diff --git a/script.artistslideshow/default.py 
b/script.artistslideshow/default.py
old mode 100644
new mode 100755
diff --git a/script.artistslideshow/resources/common/transforms.py 
b/script.artistslideshow/resources/common/transforms.py
old mode 100644
new mode 100755
diff --git a/script.artistslideshow/resources/common/url.py 
b/script.artistslideshow/resources/common/url.py
old mode 100644
new mode 100755
index 676fe0d..9644c15
--- a/script.artistslideshow/resources/common/url.py
+++ b/script.artistslideshow/resources/common/url.py
@@ -1,6 +1,6 @@
-#v.0.1.1
+#v.0.1.2
 
-import requests
+import requests2
     
 
 class URL():
diff --git a/script.artistslideshow/resources/common/xlogger.py 
b/script.artistslideshow/resources/common/xlogger.py
old mode 100644
new mode 100755
diff --git a/script.artistslideshow/resources/dicttoxml/LICENCE.txt 
b/script.artistslideshow/resources/dicttoxml/LICENCE.txt
old mode 100644
new mode 100755
diff --git a/script.artistslideshow/resources/dicttoxml/README.markdown 
b/script.artistslideshow/resources/dicttoxml/README.markdown
old mode 100644
new mode 100755
diff --git a/script.artistslideshow/resources/dicttoxml/__init__.py 
b/script.artistslideshow/resources/dicttoxml/__init__.py
old mode 100644
new mode 100755
diff --git a/script.artistslideshow/resources/dicttoxml/dicttoxml.py 
b/script.artistslideshow/resources/dicttoxml/dicttoxml.py
old mode 100644
new mode 100755

http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=465582809d960ae74685707800b28241e4835816

commit 465582809d960ae74685707800b28241e4835816
Author: sphere <[email protected]>
Date:   Tue Feb 18 01:00:06 2014 +0100

    [script.myepisodes] updated to version 1.0.14

diff --git a/script.myepisodes/addon.xml b/script.myepisodes/addon.xml
index 65e1d2d..6609d64 100644
--- a/script.myepisodes/addon.xml
+++ b/script.myepisodes/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="script.myepisodes"
        name="MyEpisodes"
-       version="1.0.13"
+       version="1.0.14"
        provider-name="Maxime Hadjinlian">
   <requires>
     <import addon="xbmc.python" version="2.1.0"/>
diff --git a/script.myepisodes/changelog.txt b/script.myepisodes/changelog.txt
index aad8457..bf29ee3 100644
--- a/script.myepisodes/changelog.txt
+++ b/script.myepisodes/changelog.txt
@@ -1,3 +1,5 @@
+1.0.14
++ Fix dummy mistake, sorry for the inconvenience
 1.0.13
 + Update Regex expression to support more schemes.
 + Fixes bug when authentication failed
diff --git a/script.myepisodes/default.py b/script.myepisodes/default.py
index 65d5711..74ad61d 100644
--- a/script.myepisodes/default.py
+++ b/script.myepisodes/default.py
@@ -33,7 +33,7 @@ class Player(xbmc.Player):
         xbmc.Player.__init__(self)
         log('Player - init')
         self.mye = self._loginMyEpisodes()
-        if not mye.is_logged:
+        if not self.mye.is_logged:
             return
         self.showid = self.episode = self.title = self.season = None
         self._totalTime = 999999

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

Summary of changes:
 script.artistslideshow/addon.xml                   |    2 +-
 script.artistslideshow/changelog.txt               |    3 +++
 script.artistslideshow/resources/common/url.py     |    4 ++--
 script.myepisodes/addon.xml                        |    2 +-
 script.myepisodes/changelog.txt                    |    2 ++
 script.myepisodes/default.py                       |    2 +-
 6 files changed, 10 insertions(+), 5 deletions(-)
 mode change 100644 => 100755 script.artistslideshow/default.py
 mode change 100644 => 100755 
script.artistslideshow/resources/common/transforms.py
 mode change 100644 => 100755 script.artistslideshow/resources/common/url.py
 mode change 100644 => 100755 script.artistslideshow/resources/common/xlogger.py
 mode change 100644 => 100755 
script.artistslideshow/resources/dicttoxml/LICENCE.txt
 mode change 100644 => 100755 
script.artistslideshow/resources/dicttoxml/README.markdown
 mode change 100644 => 100755 
script.artistslideshow/resources/dicttoxml/__init__.py
 mode change 100644 => 100755 
script.artistslideshow/resources/dicttoxml/dicttoxml.py


hooks/post-receive
-- 
Scripts

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121054471&iu=/4140/ostg.clktrk
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to