The branch, dharma-pre has been updated
       via  79b67b723bc93f98ffa9464732c25ec76ea4168c (commit)
      from  e88eb1828fd1689bf231f366b96bf7c821ab889e (commit)

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

commit 79b67b723bc93f98ffa9464732c25ec76ea4168c
Author: amet <a...@nospam>
Date:   Wed Oct 20 16:08:46 2010 +0400

    [script.xbmc.subtitles] -v 1.9.9
    - fixed: podnapisi name search string is urllib.quoted. helps with "$#*! My 
Dad Says" and similar
    - fixed: sync icon is made bigger on default skin window

diff --git a/script.xbmc.subtitles/addon.xml b/script.xbmc.subtitles/addon.xml
index c82e2b1..669cd6c 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="1.9.8"
+       version="1.9.9"
        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 827e1fc..abc7db6 100644
--- a/script.xbmc.subtitles/changelog.txt
+++ b/script.xbmc.subtitles/changelog.txt
@@ -1,3 +1,7 @@
+1.9.9
+- fixed: podnapisi name search string is urllib.quoted. helps with "$#*! My 
Dad Says" and similar
+- fixed: sync icon is made bigger on default skin window
+
 1.9.8
 - fixed: Script would fail on non English XBMC
 - added: New Dutch translation, Thanks Rob Verberk
diff --git 
a/script.xbmc.subtitles/resources/lib/services/Podnapisi/pn_utilities.py 
b/script.xbmc.subtitles/resources/lib/services/Podnapisi/pn_utilities.py
index 20f09c1..62ab898 100644
--- a/script.xbmc.subtitles/resources/lib/services/Podnapisi/pn_utilities.py
+++ b/script.xbmc.subtitles/resources/lib/services/Podnapisi/pn_utilities.py
@@ -149,7 +149,7 @@ class OSDBServer:
         search_url1 = None
         search_url2 = None
         
-        name = name.replace(" ","+")
+        name = urllib.quote(name.replace(" ","+"))
         search_url = "http://www.podnapisi.net/ppodnapisi/search?tbsl=1&sK="; + 
name + "&sJ=" +str(lang1)+ "&sY=" + str(year)+ "&sTS=" + str(season) + "&sTE=" 
+ str(episode) + "&sXML=1&lang=0"
         log( __name__ ,"%s - Language 1" % search_url)        
         if lang2!=lang1:
diff --git 
a/script.xbmc.subtitles/resources/skins/Default/720p/script-XBMC-Subtitles-main.xml
 
b/script.xbmc.subtitles/resources/skins/Default/720p/script-XBMC-Subtitles-main.xml
index d2e4a14..f258c16 100644
--- 
a/script.xbmc.subtitles/resources/skins/Default/720p/script-XBMC-Subtitles-main.xml
+++ 
b/script.xbmc.subtitles/resources/skins/Default/720p/script-XBMC-Subtitles-main.xml
@@ -145,9 +145,9 @@
                                </control>
                                <control type="image">
                                        <posx>135</posx>
-                                       <posy>16</posy>
-                                       <width>27</width>
-                                       <height>7</height>
+                                       <posy>13</posy>
+                                       <width>40</width>
+                                       <height>12</height>
                                        <texture>icon_sync.png</texture>
                                        
<visible>ListItem.property(sync)</visible>
                                </control>
@@ -208,9 +208,9 @@
                                </control>
                                <control type="image">
                                        <posx>135</posx>
-                                       <posy>16</posy>
-                                       <width>27</width>
-                                       <height>7</height>
+                                       <posy>13</posy>
+                                       <width>40</width>
+                                       <height>12</height>
                                        <texture>icon_sync.png</texture>
                                        
<visible>ListItem.property(sync)</visible>
                                        <colordiffuse>white</colordiffuse>

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

Summary of changes:
 script.xbmc.subtitles/addon.xml                    |    2 +-
 script.xbmc.subtitles/changelog.txt                |    4 ++++
 .../lib/services/Podnapisi/pn_utilities.py         |    2 +-
 .../Default/720p/script-XBMC-Subtitles-main.xml    |   12 ++++++------
 4 files changed, 12 insertions(+), 8 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