The branch, eden-pre has been updated
       via  acd5fe6cb618eed58d4f7e9dc9eb916c96b990c4 (commit)
      from  d72d0d4b58af8abb85eacfa7bfb299861a5ff949 (commit)

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

commit acd5fe6cb618eed58d4f7e9dc9eb916c96b990c4
Author: ronie <[email protected]>
Date:   Sat Nov 19 00:15:59 2011 +0100

    [script.tv.show.next.aired] -v4.1.5
    
    make items in gui clickable

diff --git a/script.tv.show.next.aired/addon.xml 
b/script.tv.show.next.aired/addon.xml
index 09ec17b..6697ed2 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.4"
+       version="4.1.5"
        provider-name="Ppic, Frost, ronie, `Black">
   <requires>
     <import addon="xbmc.python" version="2.0"/>
diff --git a/script.tv.show.next.aired/changelog.txt 
b/script.tv.show.next.aired/changelog.txt
index 45ac018..c9b1af1 100644
--- a/script.tv.show.next.aired/changelog.txt
+++ b/script.tv.show.next.aired/changelog.txt
@@ -1,3 +1,6 @@
+v4.1.5
+- make items in the gui clickable
+
 v4.1.4
 - added library path property
 - use simplejson instead of regex
diff --git a/script.tv.show.next.aired/resources/lib/next_aired_dialog.py 
b/script.tv.show.next.aired/resources/lib/next_aired_dialog.py
index c72347f..fff9143 100644
--- a/script.tv.show.next.aired/resources/lib/next_aired_dialog.py
+++ b/script.tv.show.next.aired/resources/lib/next_aired_dialog.py
@@ -87,6 +87,11 @@ class Gui( xbmcgui.WindowXML ):
         if controlID == 8:
             self.settingsOpen = True
             __addon__.openSettings()
+        elif controlID in ( 200, 201, 202, 203, 204, 205, 206, ):
+            listitem = self.getControl( controlID ).getSelectedItem()
+            library = listitem.getProperty('Library')
+            self.close()
+            xbmc.executebuiltin('ActivateWindow(Videos,' + library + 
',return)')
 
     def onFocus(self, controlID):
         pass

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

Summary of changes:
 script.tv.show.next.aired/addon.xml                |    2 +-
 script.tv.show.next.aired/changelog.txt            |    3 +++
 .../resources/lib/next_aired_dialog.py             |    5 +++++
 3 files changed, 9 insertions(+), 1 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