The branch, dharma-pre has been updated
       via  844b74e6a060fbd0768e18371402a300bdc2219a (commit)
      from  d4f4d1eea8777ce15c5a59b8376f97859c44fadc (commit)

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

commit 844b74e6a060fbd0768e18371402a300bdc2219a
Author: Zeljko Ametovic <[email protected]>
Date:   Mon Oct 25 10:30:21 2010 +0400

    [script.tvrage.com] -v1.0.1
    
    Fixed bug causing errors when adding shows from library

diff --git a/script.tvrage.com/addon.xml b/script.tvrage.com/addon.xml
index b08f0a2..d086445 100644
--- a/script.tvrage.com/addon.xml
+++ b/script.tvrage.com/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="script.tvrage.com"
        name="TVRage-Eps"
-       version="1.0.0"
+       version="1.0.1"
        provider-name="Rick Phillips (ruuk)">
   <requires>
     <import addon="xbmc.python" version="1.0"/>
diff --git a/script.tvrage.com/changelog.txt b/script.tvrage.com/changelog.txt
index 7f3f0d8..7d63690 100644
--- a/script.tvrage.com/changelog.txt
+++ b/script.tvrage.com/changelog.txt
@@ -1,6 +1,10 @@
 TVRage-Eps Changelog
 
-Current Version : 1.0.0
+Current Version : 1.0.1
+
+*** 1.0.1 ***
+
+Fixed bug causing errors when adding shows from library
 
 *** 1.0.0 ***
 
diff --git a/script.tvrage.com/default.py b/script.tvrage.com/default.py
index f5170eb..841e87a 100644
--- a/script.tvrage.com/default.py
+++ b/script.tvrage.com/default.py
@@ -8,7 +8,7 @@ import difflib
 __author__ = 'ruuk'

 __url__ = 'http://code.google.com/p/tvragexbmc/'

 __date__ = '10-19-2010'

-__version__ = '1.0.0'

+__version__ = '1.0.1'

 __settings__ = xbmcaddon.Addon(id='script.tvrage.com')

 __language__ = __settings__.getLocalizedString

 

@@ -411,7 +411,7 @@ class TVRageEps(xbmcgui.WindowXML):
                if sid == '0':

                        self.shows.append(Show(showid=sid,name=name))

                        return 1

-               show = Show(showid=sid,offset=self.air_offset).getShowData()

+               show = Show(showid=sid).getShowData()

                if skipCanceled and show.canceled: return 0

                self.shows.append(show)

                return 1


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

Summary of changes:
 script.tvrage.com/addon.xml     |    2 +-
 script.tvrage.com/changelog.txt |    6 +++++-
 script.tvrage.com/default.py    |    4 ++--
 3 files changed, 8 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Scripts

------------------------------------------------------------------------------
Nokia and AT&T present the 2010 Calling All Innovators-North America contest
Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
$10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store 
http://p.sf.net/sfu/nokia-dev2dev
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to