The branch, dharma-pre has been updated
       via  50737e02b3d43f58e01f28fedc3d2f0df0579035 (commit)
       via  fca69696d3a78f2b4028ed5f829a8ba3d5c2ee81 (commit)
       via  282539ec33dc407e3fc25dbe81cc8ac3a7b12974 (commit)
       via  615013fab1f0968701e1c83307669c003b9c012a (commit)
      from  83026eb1d25e0a68e0eee6392964c696e4479bd8 (commit)

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

commit 50737e02b3d43f58e01f28fedc3d2f0df0579035
Author: Zeljko Ametovic <[email protected]>
Date:   Wed Oct 27 14:38:38 2010 +0400

    [script.favourites] -v 1.0.5
    - use current profile instead of master profile

diff --git a/script.favourites/addon.xml b/script.favourites/addon.xml
index 2556fe3..c980858 100644
--- a/script.favourites/addon.xml
+++ b/script.favourites/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="script.favourites"
        name="Favourites script"
-       version="1.0.4"
+       version="1.0.5"
        provider-name="CF2009">
   <requires>
     <import addon="xbmc.python" version="1.0"/>
diff --git a/script.favourites/default.py b/script.favourites/default.py
index 48a1d1f..838ee74 100644
--- a/script.favourites/default.py
+++ b/script.favourites/default.py
@@ -22,7 +22,7 @@ class Main:
 
     def _read_file( self ):
         # Set path
-        self.fav_dir = 'special://masterprofile//favourites.xml'
+        self.fav_dir = 'special://profile//favourites.xml'
         # Check to see if file exists
         if (os.path.isfile( self.fav_dir ) == False):
             self.favourites_xml = '<favourites><favourite name="Can Not Find 
favourites.xml">-</favourite></favourites>'

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


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

commit 282539ec33dc407e3fc25dbe81cc8ac3a7b12974
Author: Zeljko Ametovic <[email protected]>
Date:   Wed Oct 27 14:13:11 2010 +0400

    [script.xbmc.subtitles] -v 2.0.3
    - fixed: script fails in some cases, related to new window

diff --git a/script.xbmc.subtitles/addon.xml b/script.xbmc.subtitles/addon.xml
index 8ad99ba..959be28 100644
--- a/script.xbmc.subtitles/addon.xml
+++ b/script.xbmc.subtitles/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="script.xbmc.subtitles"
        name="XBMC Subtitles"
-       version="2.0.2"
+       version="2.0.3"
        provider-name="Amet">
   <requires>
     <import addon="xbmc.python" version="1.0"/>
diff --git a/script.xbmc.subtitles/changelog.txt 
b/script.xbmc.subtitles/changelog.txt
index 04ba4ab..3a6aadd 100644
--- a/script.xbmc.subtitles/changelog.txt
+++ b/script.xbmc.subtitles/changelog.txt
@@ -1,3 +1,6 @@
+2.0.3
+- fixed: script fails in some cases, related to new window
+
 2.0.2
 - fixed: os.mkdir() to os.makedirs(), it failed creating tmp folder. thx 
beenje!
 
diff --git a/script.xbmc.subtitles/resources/lib/gui.py 
b/script.xbmc.subtitles/resources/lib/gui.py
index 5c91942..a6bd867 100644
--- a/script.xbmc.subtitles/resources/lib/gui.py
+++ b/script.xbmc.subtitles/resources/lib/gui.py
@@ -555,15 +555,14 @@ class GUI( xbmcgui.WindowXMLDialog ):
     
     def onFocus( self, controlId ):
         self.controlId = controlId
-        if self.newWindow:
-          try:
-            if controlId == 8999:
-              self.setFocusId( 150 )
-              self.getControl( 8999 ).setVisible( False )
-            else:
-              self.getControl( 8999 ).setVisible( True )
-          except:
-            pass    
+        try:
+          if controlId == 8999:
+            self.setFocusId( 150 )
+            self.getControl( 8999 ).setVisible( False )
+          else:
+            self.getControl( 8999 ).setVisible( True )
+        except:
+          pass    
             
 
 

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

commit 615013fab1f0968701e1c83307669c003b9c012a
Author: Zeljko Ametovic <[email protected]>
Date:   Wed Oct 27 14:05:18 2010 +0400

    [script.bootable.disk.wizard] -v 0.9.6
    
    - proper unmount of removable drives

diff --git a/script.bootable.disk.wizard/addon.xml 
b/script.bootable.disk.wizard/addon.xml
index a4bb0cf..dc95954 100644
--- a/script.bootable.disk.wizard/addon.xml
+++ b/script.bootable.disk.wizard/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="script.bootable.disk.wizard"
        name="Bootable Disk Wizard"
-       version="0.9.5"
+       version="0.9.6"
        provider-name="Team XBMC">
   <requires>
     <import addon="xbmc.python" version="1.0"/>
diff --git a/script.bootable.disk.wizard/resources/lib/wizardCore.py 
b/script.bootable.disk.wizard/resources/lib/wizardCore.py
index 3de5b2a..92b7fb8 100644
--- a/script.bootable.disk.wizard/resources/lib/wizardCore.py
+++ b/script.bootable.disk.wizard/resources/lib/wizardCore.py
@@ -83,7 +83,7 @@ class WorkerThread(Thread):
              return self.running
 
        def getResults(self):
-             return self.retCode, self.stdout_value, self.stderr_value 
+             return self.retCode, self.stdout_value, self.stderr_value
 
 class WizardCore:
        const_minSizeMB = 800
@@ -143,7 +143,7 @@ class WizardCore:
                        self.__printDebugLine("os.path.islink does not return a 
correct value!")
 
 
-               
+
                # TODO Check for grub version
 
                return 1
@@ -222,15 +222,16 @@ class WizardCore:
 
                self.statusUpdater(1, 0)
 
-               aCmd = "mount | grep " + targetDevice + "1"
+               aCmd = "mount"
                stdErr, stdOut, retValue = self.__runSilent(aCmd)
-               if retValue==0:
-                       # aCmd = self.udev_helper + " --unmount " + 
targetDevice + "1"
-                       aCmd = 'echo "' + aPassword + '" | sudo -S umount ' + 
targetDevice  + "1"
-
-                       stdErr, stdOut, retValue = self.__runSilent(aCmd)
-                       if retValue >0:
-                               raise RuntimeError("-99")
+               outputLines = stdOut.splitlines()
+               for mountedDevice in outputLines:
+                       if mountedDevice.find(targetDevice)>=0:
+                               aDevice = (mountedDevice.split(' '))[0]
+                               aCmd = 'echo "' + aPassword + '" | sudo -S 
umount ' + aDevice
+                               stdErr, stdOut, retValue = 
self.__runSilent(aCmd)
+                               if retValue >0:
+                                       raise RuntimeError("-99")
 
                self.statusUpdater(1, 1)
 
@@ -244,7 +245,7 @@ class WizardCore:
                # I wish there could be a way to temporaily inhibit automounting
                aCmd = self.udev_helper + " --mount " + targetDevice + "1"
                stdErr, stdOut, retValue = self.__runSilent(aCmd)
-               
+
                aCmd = "mount | grep " + targetDevice + "1"
                stdErr, stdOut, retValue = self.__runSilent(aCmd)
                if retValue==0:
@@ -266,7 +267,7 @@ class WizardCore:
                        raise RuntimeError("3")
 
                self.__runSilent("sync")
-               
+
                self.statusUpdater(4, 85)
 
                if storageSizeMB>0:
@@ -362,7 +363,7 @@ class WizardCore:
                                if aDir == "debian":
                                         dirs.remove(aDir)
                        ###
-                       
+
                        for file in files:
                                if file == self.const_permStorageFilename:
                                        continue
@@ -467,7 +468,7 @@ class WizardCore:
 
 if __name__ == '__main__':
        import getpass
-       
+
        wCore = WizardCore(1)
 
        targetDevice = sys.argv[1]

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

Summary of changes:
 script.bootable.disk.wizard/addon.xml              |    2 +-
 .../resources/lib/wizardCore.py                    |   29 ++-
 script.favourites/addon.xml                        |    2 +-
 script.favourites/default.py                       |    2 +-
 .../LICENSE.txt                                    |    0
 script.xbmc.debug.log/addon.xml                    |   16 ++
 .../default.py                                     |   12 +-
 script.xbmc.debug.log/icon.png                     |  Bin 0 -> 79855 bytes
 .../resources/language/English/strings.xml         |   22 ++
 script.xbmc.debug.log/resources/lib/gui.py         |  258 ++++++++++++++++++++
 script.xbmc.debug.log/resources/lib/pastebin.py    |  163 ++++++++++++
 script.xbmc.debug.log/resources/settings.xml       |    7 +
 .../Default/720p/script-XBMC-debug-log-main.xml    |  254 +++++++++++++++++++
 .../skins/Default/media/log-background.jpg         |  Bin 73023 -> 73023 bytes
 .../skins/Default/media/log-breadcrumb.png         |  Bin 5376 -> 5376 bytes
 .../skins/Default/media/log-button-focus.png       |  Bin 5018 -> 5018 bytes
 .../skins/Default/media/log-button-nofocus.png     |  Bin 3921 -> 3921 bytes
 .../resources/skins/Default/media/log-floor.png    |  Bin 3905 -> 3905 bytes
 .../resources/skins/Default/media/log-icon.png     |  Bin 0 -> 79855 bytes
 .../skins/Default/media/log-list-focus.png         |  Bin 24951 -> 24951 bytes
 .../skins/Default/media/log-list-nofocus.png       |  Bin 3173 -> 3173 bytes
 .../resources/skins/Default/media/log-logo.png     |  Bin 12589 -> 12589 bytes
 .../resources/skins/Default/media/log-panel.png    |  Bin 128610 -> 128610 
bytes
 .../skins/Default/media/log-radiobutton-focus.png  |  Bin 5190 -> 5190 bytes
 .../Default/media/log-radiobutton-nofocus.png      |  Bin 4442 -> 4442 bytes
 .../resources/skins/Default/skin.xml               |    0
 script.xbmc.subtitles/addon.xml                    |    2 +-
 script.xbmc.subtitles/changelog.txt                |    3 +
 script.xbmc.subtitles/resources/lib/gui.py         |   17 +-
 29 files changed, 755 insertions(+), 34 deletions(-)
 copy {script.audio.grooveshark => script.xbmc.debug.log}/LICENSE.txt (100%)
 mode change 100644 => 100755
 create mode 100755 script.xbmc.debug.log/addon.xml
 copy {script.xbmc.subtitles => script.xbmc.debug.log}/default.py (55%)
 mode change 100644 => 100755
 create mode 100755 script.xbmc.debug.log/icon.png
 create mode 100755 script.xbmc.debug.log/resources/language/English/strings.xml
 create mode 100755 script.xbmc.debug.log/resources/lib/gui.py
 create mode 100755 script.xbmc.debug.log/resources/lib/pastebin.py
 create mode 100755 script.xbmc.debug.log/resources/settings.xml
 create mode 100755 
script.xbmc.debug.log/resources/skins/Default/720p/script-XBMC-debug-log-main.xml
 copy 
script.bootable.disk.wizard/resources/skins/Default/media/bdw-background.jpg => 
script.xbmc.debug.log/resources/skins/Default/media/log-background.jpg (100%)
 mode change 100644 => 100755
 copy 
script.bootable.disk.wizard/resources/skins/Default/media/bdw-breadcrumb.png => 
script.xbmc.debug.log/resources/skins/Default/media/log-breadcrumb.png (100%)
 mode change 100644 => 100755
 copy 
script.bootable.disk.wizard/resources/skins/Default/media/bdw-button-focus.png 
=> script.xbmc.debug.log/resources/skins/Default/media/log-button-focus.png 
(100%)
 mode change 100644 => 100755
 copy 
script.bootable.disk.wizard/resources/skins/Default/media/bdw-button-nofocus.png
 => script.xbmc.debug.log/resources/skins/Default/media/log-button-nofocus.png 
(100%)
 mode change 100644 => 100755
 copy script.bootable.disk.wizard/resources/skins/Default/media/bdw-floor.png 
=> script.xbmc.debug.log/resources/skins/Default/media/log-floor.png (100%)
 mode change 100644 => 100755
 create mode 100755 
script.xbmc.debug.log/resources/skins/Default/media/log-icon.png
 copy 
script.bootable.disk.wizard/resources/skins/Default/media/bdw-list-focus.png => 
script.xbmc.debug.log/resources/skins/Default/media/log-list-focus.png (100%)
 mode change 100644 => 100755
 copy 
script.bootable.disk.wizard/resources/skins/Default/media/bdw-list-nofocus.png 
=> script.xbmc.debug.log/resources/skins/Default/media/log-list-nofocus.png 
(100%)
 mode change 100644 => 100755
 copy script.bootable.disk.wizard/resources/skins/Default/media/bdw-logo.png => 
script.xbmc.debug.log/resources/skins/Default/media/log-logo.png (100%)
 mode change 100644 => 100755
 copy script.bootable.disk.wizard/resources/skins/Default/media/bdw-panel.png 
=> script.xbmc.debug.log/resources/skins/Default/media/log-panel.png (100%)
 mode change 100644 => 100755
 copy 
script.bootable.disk.wizard/resources/skins/Default/media/bdw-radiobutton-focus.png
 => 
script.xbmc.debug.log/resources/skins/Default/media/log-radiobutton-focus.png 
(100%)
 mode change 100644 => 100755
 copy 
script.bootable.disk.wizard/resources/skins/Default/media/bdw-radiobutton-nofocus.png
 => 
script.xbmc.debug.log/resources/skins/Default/media/log-radiobutton-nofocus.png 
(100%)
 mode change 100644 => 100755
 copy {script.bootable.disk.wizard => 
script.xbmc.debug.log}/resources/skins/Default/skin.xml (100%)
 mode change 100644 => 100755


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