The branch, dharma-pre has been updated
       via  06b15ec4b56820cfaa79654f3d5904fbccbe2b30 (commit)
      from  ab99d769fdafd1244cba72b3f0a9d359e49dc66d (commit)

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

commit 06b15ec4b56820cfaa79654f3d5904fbccbe2b30
Author: Zeljko Ametovic <[email protected]>
Date:   Tue Oct 19 12:06:11 2010 +0400

    [script.recentlyadded] -1.0.9
    
    added separate episode and season number, thanks Kevin Goffe.

diff --git a/script.recentlyadded/addon.xml b/script.recentlyadded/addon.xml
index e5770c0..b24899b 100644
--- a/script.recentlyadded/addon.xml
+++ b/script.recentlyadded/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="script.recentlyadded"
        name="Recently Added script"
-       version="1.0.8"
+       version="1.0.9"
        provider-name="Nuka1195">
   <requires>
     <import addon="xbmc.python" version="1.0"/>
diff --git a/script.recentlyadded/default.py b/script.recentlyadded/default.py
index 3d794c6..b6e014f 100755
--- a/script.recentlyadded/default.py
+++ b/script.recentlyadded/default.py
@@ -218,6 +218,8 @@ class Main:
             self.WINDOW.setProperty( "LatestEpisode.%d.EpisodeTitle" % ( count 
+ 1, ), fields[ 2 ] )
             self.WINDOW.setProperty( "LatestEpisode.%d.EpisodeNo" % ( count + 
1, ), "s%02de%02d" % ( int( fields[ 14 ] ), int( fields[ 15 ] ), ) )
             self.WINDOW.setProperty( "LatestEpisode.%d.Rating" % ( count + 1, 
), fields[ 5 ] )
+            self.WINDOW.setProperty( "LatestEpisode.%d.EpisodeSeason" % ( 
count + 1, ), fields[ 14 ] )
+            self.WINDOW.setProperty( "LatestEpisode.%d.EpisodeNumber" % ( 
count + 1, ), fields[ 15 ] )
             self.WINDOW.setProperty( "LatestEpisode.%d.Plot" % ( count + 1, ), 
fields[ 3 ] )
             # get cache names of path to use for thumbnail/fanart and play path
             thumb_cache, fanart_cache, play_path = self._get_media( fields[ 25 
], fields[ 24 ] )

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

Summary of changes:
 script.recentlyadded/addon.xml  |    2 +-
 script.recentlyadded/default.py |    2 ++
 2 files changed, 3 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Scripts

------------------------------------------------------------------------------
Download new Adobe(R) Flash(R) Builder(TM) 4
The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly 
Flex(R) Builder(TM)) enable the development of rich applications that run
across multiple browsers and platforms. Download your free trials today!
http://p.sf.net/sfu/adobe-dev2dev
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to