The branch, frodo has been updated
       via  7fa2d08a83226b3b6822cd1c6c6ef3e3168434a6 (commit)
       via  a93a64c60bef06494156372287edf7da947e2e2d (commit)
       via  d019cd2b2c0d5dee5b989506469727ad6fda3c65 (commit)
       via  30b3c370f1d6c5da925f45bd1e67b057760d93fa (commit)
       via  4cf878fb6b93b4ff8be6540071438f9d0e209ab4 (commit)
       via  dfedff558af832643a07b579c692c26984751885 (commit)
       via  a0f08f9916a0c1999b86957ca1ff625a2bc28d06 (commit)
       via  305b67e5fee5b7ebee30eeab40dff11e965eb198 (commit)
      from  86514e5326b102fc93019528b941546e33ac60b8 (commit)

- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=7fa2d08a83226b3b6822cd1c6c6ef3e3168434a6

commit 7fa2d08a83226b3b6822cd1c6c6ef3e3168434a6
Author: kibje <k...@xbmc.org>
Date:   Mon Jul 8 13:02:50 2013 +0200

    [plugin.video.mlslive] updated to version 1.0.3

diff --git a/plugin.video.mlslive/addon.xml b/plugin.video.mlslive/addon.xml
index b9666f6..db45ac9 100644
--- a/plugin.video.mlslive/addon.xml
+++ b/plugin.video.mlslive/addon.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="plugin.video.mlslive" name="MLS Live" version="1.0.2" 
provider-name="Micah Galizia">
+<addon id="plugin.video.mlslive" name="MLS Live" version="1.0.3" 
provider-name="Micah Galizia">
   <requires>
     <import addon="xbmc.python"   version="2.1.0"/>
   </requires>
diff --git a/plugin.video.mlslive/changelog.txt 
b/plugin.video.mlslive/changelog.txt
index 39ecc08..1001a41 100644
--- a/plugin.video.mlslive/changelog.txt
+++ b/plugin.video.mlslive/changelog.txt
@@ -1,3 +1,7 @@
+[B]Version 1.0.3[/B]
+
+- fix crash with invalid home or away team abbreviations
+
 [B]Version 1.0.2[/B]
 
 - improve live and replay match menu layout
diff --git a/plugin.video.mlslive/default.py b/plugin.video.mlslive/default.py
index b33d454..7b42411 100644
--- a/plugin.video.mlslive/default.py
+++ b/plugin.video.mlslive/default.py
@@ -130,7 +130,8 @@ def createWeekMenu(my_mls, values_string, final_only=True):
         # get the home/away images
         home = my_mls.getTeamAbbr(teams, game['homeTeamID'])
         vist = my_mls.getTeamAbbr(teams, game['visitorTeamID'])
-        game_img = GAME_IMAGE_PREFIX + vist + "_at_" + home + ".jpg";
+        if not ((home == None) or (vist == None)):
+            game_img = GAME_IMAGE_PREFIX + vist + "_at_" + home + ".jpg";
 
         li = xbmcgui.ListItem(game_str, iconImage=game_img)
 

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

commit a93a64c60bef06494156372287edf7da947e2e2d
Author: kibje <k...@xbmc.org>
Date:   Mon Jul 8 13:02:46 2013 +0200

    [plugin.video.gamekings] updated to version 1.0.3

diff --git a/plugin.video.gamekings/addon.py b/plugin.video.gamekings/addon.py
index 3e7d754..20ce91d 100644
--- a/plugin.video.gamekings/addon.py
+++ b/plugin.video.gamekings/addon.py
@@ -17,8 +17,8 @@
 #
 #also in ..._const
 __addon__       = "plugin.video.gamekings"
-__date__        = "29 may 2013"
-__version__     = "1.0.2"
+__date__        = "7 july 2013"
+__version__     = "1.0.3"
 
 #
 # Imports
diff --git a/plugin.video.gamekings/addon.xml b/plugin.video.gamekings/addon.xml
index 812c882..9535362 100644
--- a/plugin.video.gamekings/addon.xml
+++ b/plugin.video.gamekings/addon.xml
@@ -2,20 +2,24 @@
 <addon 
        id="plugin.video.gamekings" 
        name="GameKings" 
-       version="1.0.2" 
+       version="1.0.3" 
        provider-name="Skipmode A1">
   <requires>
     <import addon="xbmc.python"                 version="2.1.0"/>
     <import addon="xbmc.addon"                  version="12.0.0"/>
+       <import addon="script.module.beautifulsoup" version="3.0.8"/>
   </requires>
   <extension point="xbmc.python.pluginsource"  library="addon.py">
     <provides>video</provides>
   </extension>
   <extension point="xbmc.addon.metadata">
        <platform>all</platform>
-       <summary lang="en">Watch videos from Gameskings.tv (dutch)</summary>
+       <summary lang="en">Watch videos from Gamekings.tv (dutch)</summary>
        <description lang="en">Watch videos from Gamekings.tv 
(dutch)</description>
-       <disclaimer lang="en">For bugs, requests or general questions visit the 
Gamekings thread on the XBMC forum.</disclaimer>
+       <disclaimer lang="en">For bugs, requests or general questions visit the 
Gamekings.tv thread on the XBMC forum.</disclaimer>
+       <summary lang="nl">Bekijk videos van Gamekings.tv (dutch)</summary>
+       <description lang="nl">Bekijk videos van Gamekings.tv 
(dutch)</description>
+       <disclaimer lang="nl">Bugs of andere feedback op deze plugin kan 
geplaatst worden in de Gamekings.tv thread op het XBMC forum.</disclaimer>
     <language>nl</language>
     <platform>all</platform>
     <license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
diff --git a/plugin.video.gamekings/changelog.txt 
b/plugin.video.gamekings/changelog.txt
index 56d07b4..c06587b 100644
--- a/plugin.video.gamekings/changelog.txt
+++ b/plugin.video.gamekings/changelog.txt
@@ -13,4 +13,7 @@ v1.0.1 (Wednesday, 10 april 2013) :
 
 v1.0.2 (Wednesday, 29 may 2013) :
 - sometimes the video-url in the content-tag is not (!) correct, in that case 
trying with added '/large' in the video-url
- 
\ No newline at end of file
+ 
+v1.0.3 (Saturday, 7 July 2013) :
+- added beautiful soup as dependency
+- added dutch strings
\ No newline at end of file
diff --git a/plugin.video.gamekings/resources/language/English/strings.xml 
b/plugin.video.gamekings/resources/language/English/strings.xml
index ba8b2f7..75ee4ba 100644
--- a/plugin.video.gamekings/resources/language/English/strings.xml
+++ b/plugin.video.gamekings/resources/language/English/strings.xml
@@ -4,7 +4,7 @@
      * Main
      -->
     <string id="30000">Videos</string>
-    <string id="30001">Afleveringen</string>
+    <string id="30001">TV Episodes</string>
     <string id="30002">Pc</string>
 
     <!-- 
diff --git a/plugin.video.gamekings/resources/lib/gamekings_const.py 
b/plugin.video.gamekings/resources/lib/gamekings_const.py
index e5d54e4..4bc99a2 100644
--- a/plugin.video.gamekings/resources/lib/gamekings_const.py
+++ b/plugin.video.gamekings/resources/lib/gamekings_const.py
@@ -8,5 +8,5 @@ __addon__       = "plugin.video.gamekings"
 __settings__    = xbmcaddon.Addon(id=__addon__ )
 __language__    = __settings__.getLocalizedString
 __images_path__ = os.path.join( xbmcaddon.Addon(id=__addon__ 
).getAddonInfo('path'), 'resources', 'images' )
-__date__        = "29 may 2013"
-__version__     = "1.0.2"
\ No newline at end of file
+__date__        = "7 july 2013"
+__version__     = "1.0.3"
\ No newline at end of file

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

commit d019cd2b2c0d5dee5b989506469727ad6fda3c65
Author: kibje <k...@xbmc.org>
Date:   Mon Jul 8 13:02:42 2013 +0200

    [plugin.video.tweakers] updated to version 1.0.1

diff --git a/plugin.video.tweakers/addon.py b/plugin.video.tweakers/addon.py
index 352bd21..9b1b9cd 100644
--- a/plugin.video.tweakers/addon.py
+++ b/plugin.video.tweakers/addon.py
@@ -17,8 +17,8 @@
 #
 #also in ..._const
 __addon__       = "plugin.video.tweakers"
-__date__        = "23 june 2013"
-__version__     = "1.0.0"
+__date__        = "7 july 2013"
+__version__     = "1.0.1"
 
 #
 # Imports
diff --git a/plugin.video.tweakers/addon.xml b/plugin.video.tweakers/addon.xml
index 4a5acd9..0af5793 100644
--- a/plugin.video.tweakers/addon.xml
+++ b/plugin.video.tweakers/addon.xml
@@ -2,11 +2,12 @@
 <addon 
        id="plugin.video.tweakers" 
        name="Tweakers" 
-       version="1.0.0" 
+       version="1.0.1" 
        provider-name="Skipmode A1">
   <requires>
     <import addon="xbmc.python"                 version="2.1.0"/>
     <import addon="xbmc.addon"                  version="12.0.0"/>
+       <import addon="script.module.beautifulsoup" version="3.0.8"/>
   </requires>
   <extension point="xbmc.python.pluginsource"  library="addon.py">
     <provides>video</provides>
@@ -15,7 +16,10 @@
        <platform>all</platform>
        <summary lang="en">Watch tech videos from Tweakers.net (dutch)</summary>
        <description lang="en">Watch tech videos from Tweakers.net 
(dutch)</description>
-       <disclaimer lang="en">For bugs, requests or general questions visit the 
tweakers thread on the XBMC forum.</disclaimer>
+       <disclaimer lang="en">For bugs, requests or general questions visit the 
tweakers.net thread on the XBMC forum.</disclaimer>
+       <summary lang="nl">Bekijk technologie videos van Tweakers.net 
(dutch)</summary>
+       <description lang="nl">Bekijk technologie videos van Tweakers.net 
(dutch)</description>
+       <disclaimer lang="nl">Bugs of andere feedback op deze plugin kan 
geplaatst worden in de Tweakers.net thread op het XBMC forum.</disclaimer>
     <language>nl</language>
     <platform>all</platform>
     <license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
diff --git a/plugin.video.tweakers/changelog.txt 
b/plugin.video.tweakers/changelog.txt
index 3501504..a5cf67d 100644
--- a/plugin.video.tweakers/changelog.txt
+++ b/plugin.video.tweakers/changelog.txt
@@ -1,3 +1,6 @@
 v1.0.0 (Sunday, 23 June 2013) :
- - initial version;
- 
\ No newline at end of file
+ - initial version
+ 
+v1.0.1 (Saturday, 7 July 2013) :
+- added beautiful soup as dependency
+- added dutch strings
\ No newline at end of file
diff --git a/plugin.video.tweakers/resources/lib/tweakers_const.py 
b/plugin.video.tweakers/resources/lib/tweakers_const.py
index 6a41414..2a033bf 100644
--- a/plugin.video.tweakers/resources/lib/tweakers_const.py
+++ b/plugin.video.tweakers/resources/lib/tweakers_const.py
@@ -8,5 +8,5 @@ __addon__       = "plugin.video.tweakers"
 __settings__    = xbmcaddon.Addon(id=__addon__ )
 __language__    = __settings__.getLocalizedString
 __images_path__ = os.path.join( xbmcaddon.Addon(id=__addon__ 
).getAddonInfo('path'), 'resources', 'images' )
-__date__        = "23 june 2013"
-__version__     = "1.0.0"
\ No newline at end of file
+__date__        = "7 july 2013"
+__version__     = "1.0.1"
\ No newline at end of file

http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=30b3c370f1d6c5da925f45bd1e67b057760d93fa

commit 30b3c370f1d6c5da925f45bd1e67b057760d93fa
Author: kibje <k...@xbmc.org>
Date:   Mon Jul 8 13:02:38 2013 +0200

    [plugin.video.teamhww] updated to version 1.0.2

diff --git a/plugin.video.teamhww/addon.py b/plugin.video.teamhww/addon.py
index c43e8f2..b938cb5 100644
--- a/plugin.video.teamhww/addon.py
+++ b/plugin.video.teamhww/addon.py
@@ -17,8 +17,8 @@
 #
 #also in ..._const
 __addon__       = "plugin.video.teamhww"
-__date__        = "23 june 2013"
-__version__     = "1.0.0"
+__date__        = "7 july 2013"
+__version__     = "1.0.2"
 
 #
 # Imports
diff --git a/plugin.video.teamhww/addon.xml b/plugin.video.teamhww/addon.xml
index 5bb7ec4..1109065 100644
--- a/plugin.video.teamhww/addon.xml
+++ b/plugin.video.teamhww/addon.xml
@@ -2,11 +2,12 @@
 <addon 
        id="plugin.video.teamhww" 
        name="TeamHww" 
-       version="1.0.1" 
+       version="1.0.2" 
        provider-name="Skipmode A1">
   <requires>
     <import addon="xbmc.python"                 version="2.1.0"/>
     <import addon="xbmc.addon"                  version="12.0.0"/>
+       <import addon="script.module.beautifulsoup" version="3.0.8"/>
   </requires>
   <extension point="xbmc.python.pluginsource"  library="addon.py">
     <provides>video</provides>
@@ -15,8 +16,11 @@
        <platform>all</platform>
        <summary lang="en">Watch tech and movie videos from Teamhww.nl 
(dutch)</summary>
        <description lang="en">Watch tech and movie videos from Teamhww.nl 
(dutch)</description>
-       <disclaimer lang="en">For bugs, requests or general questions visit the 
Teamhww thread on the XBMC forum.</disclaimer>
-    <language>nl</language>
+       <disclaimer lang="en">For bugs, requests or general questions visit the 
Teamhww.nl thread on the XBMC forum.</disclaimer>
+       <summary lang="nl">Bekijk technologie en film videos van Teamhww.nl 
(dutch)</summary>
+       <description lang="nl">Bekijk technologie en film videos van Teamhww.nl 
(dutch)</description>
+       <disclaimer lang="nl">Bugs of andere feedback op deze plugin kan 
geplaatst worden in de Teamhww.nl thread op het XBMC forum.</disclaimer>
+       <language>nl</language>
     <platform>all</platform>
     <license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
     <forum>http://forum.xbmc.org/showthread.php?tid=164585</forum>
diff --git a/plugin.video.teamhww/changelog.txt 
b/plugin.video.teamhww/changelog.txt
index ee23400..b9c0866 100644
--- a/plugin.video.teamhww/changelog.txt
+++ b/plugin.video.teamhww/changelog.txt
@@ -2,4 +2,8 @@ v1.0.0 (Friday, 10 may 2013) :
 - initial version
 
 v1.0.1 (Sunday, 23 june 2013) :
-- removed videos menu so it goes directly to the video listing
\ No newline at end of file
+- removed videos menu so it goes directly to the video listing
+
+v1.0.2 (Saturday, 7 July 2013) :
+- added beautiful soup as dependency
+- added dutch strings
\ No newline at end of file
diff --git a/plugin.video.teamhww/resources/lib/teamhww_const.py 
b/plugin.video.teamhww/resources/lib/teamhww_const.py
index b97bd2b..5f5ffcb 100644
--- a/plugin.video.teamhww/resources/lib/teamhww_const.py
+++ b/plugin.video.teamhww/resources/lib/teamhww_const.py
@@ -8,5 +8,5 @@ __addon__       = "plugin.video.teamhww"
 __settings__    = xbmcaddon.Addon(id=__addon__ )
 __language__    = __settings__.getLocalizedString
 __images_path__ = os.path.join( xbmcaddon.Addon(id=__addon__ 
).getAddonInfo('path'), 'resources', 'images' )
-__date__        = "23 june 2013"
-__version__     = "1.0.1"
\ No newline at end of file
+__date__        = "7 july 2013"
+__version__     = "1.0.2"
\ No newline at end of file

http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=4cf878fb6b93b4ff8be6540071438f9d0e209ab4

commit 4cf878fb6b93b4ff8be6540071438f9d0e209ab4
Author: kibje <k...@xbmc.org>
Date:   Mon Jul 8 13:02:34 2013 +0200

    [plugin.video.dumpert] updated to version 1.0.2

diff --git a/plugin.video.dumpert/addon.py b/plugin.video.dumpert/addon.py
index 337bdb7..4480083 100644
--- a/plugin.video.dumpert/addon.py
+++ b/plugin.video.dumpert/addon.py
@@ -18,8 +18,8 @@
 #
 #also in ..._const
 __addon__       = "plugin.video.dumpert"
-__date__        = "10 may 2013"
-__version__     = "1.0.1"
+__date__        = "7 july 2013"
+__version__     = "1.0.2"
 
 #
 # Imports
diff --git a/plugin.video.dumpert/addon.xml b/plugin.video.dumpert/addon.xml
index 628a4a4..cadb535 100644
--- a/plugin.video.dumpert/addon.xml
+++ b/plugin.video.dumpert/addon.xml
@@ -2,20 +2,24 @@
 <addon 
        id="plugin.video.dumpert" 
        name="Dumpert" 
-       version="1.0.1" 
+       version="1.0.2" 
        provider-name="Skipmode A1">
   <requires>
     <import addon="xbmc.python"                 version="2.1.0"/>
     <import addon="xbmc.addon"                  version="12.0.0"/>
+       <import addon="script.module.beautifulsoup" version="3.0.8"/>
   </requires>
   <extension point="xbmc.python.pluginsource"  library="addon.py">
     <provides>video</provides>
   </extension>
   <extension point="xbmc.addon.metadata">
        <platform>all</platform>
-       <summary lang="en">Watch videos from Dumpert.nl (dutch)</summary>
+       <summary lang="en">Watch funny videos from Dumpert.nl (dutch)</summary>
        <description lang="en">Watch funny videos from Dumpert.nl 
(dutch)</description>
-       <disclaimer lang="en">For bugs, requests or general questions visit the 
Dumpert thread on the XBMC forum.</disclaimer>
+       <disclaimer lang="en">For bugs, requests or general questions visit the 
Dumpert.nl thread on the XBMC forum.</disclaimer>
+       <summary lang="nl">Bekijk grappige filmpjes van Dumpert.nl 
(dutch)</summary>
+       <description lang="nl">Bekijk grappige filmpjes van Dumpert.nl 
(dutch)</description>
+       <disclaimer lang="nl">Bugs of andere feedback op deze plugin kan 
geplaatst worden in de Dumpert.nl thread op het XBMC forum.</disclaimer>
     <language>nl</language>
     <platform>all</platform>
     <license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
diff --git a/plugin.video.dumpert/changelog.txt 
b/plugin.video.dumpert/changelog.txt
index 12c859d..a62e64b 100644
--- a/plugin.video.dumpert/changelog.txt
+++ b/plugin.video.dumpert/changelog.txt
@@ -3,4 +3,8 @@ v1.0.0 (Sunday, 14 april 2013) :
 
 v1.0.1 (Friday, 10 may 2013) :
 - added xbmc forum link
+ 
+v1.0.2 (Saturday, 7 July 2013) :
+- added beautiful soup as dependency
+- added dutch strings
  
\ No newline at end of file
diff --git a/plugin.video.dumpert/resources/language/English/strings.xml 
b/plugin.video.dumpert/resources/language/English/strings.xml
index ea18830..f374476 100644
--- a/plugin.video.dumpert/resources/language/English/strings.xml
+++ b/plugin.video.dumpert/resources/language/English/strings.xml
@@ -3,9 +3,9 @@
     <!--
      * Main
      -->
-       <string id="30000">Toppers</string>
-       <string id="30001">Filmpjes</string>
-       <string id="30002">Themas</string>
+       <string id="30000">Top</string>
+       <string id="30001">New</string>
+       <string id="30002">Themes</string>
 
     <!-- 
      * Settings labels 
diff --git a/plugin.video.dumpert/resources/lib/dumpert_const.py 
b/plugin.video.dumpert/resources/lib/dumpert_const.py
index e8166be..9addb4f 100644
--- a/plugin.video.dumpert/resources/lib/dumpert_const.py
+++ b/plugin.video.dumpert/resources/lib/dumpert_const.py
@@ -8,5 +8,5 @@ __addon__       = "plugin.video.dumpert"
 __settings__    = xbmcaddon.Addon(id=__addon__ )
 __language__    = __settings__.getLocalizedString
 __images_path__ = os.path.join( 
xbmcaddon.Addon(id=__addon__).getAddonInfo('path'), 'resources', 'images' )
-__date__        = "10 may 2013"
-__version__     = "1.0.1"
\ No newline at end of file
+__date__        = "7 july 2013"
+__version__     = "1.0.2"
\ No newline at end of file

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


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

commit a0f08f9916a0c1999b86957ca1ff625a2bc28d06
Author: kibje <k...@xbmc.org>
Date:   Mon Jul 8 13:02:24 2013 +0200

    [plugin.video.nlhardwareinfo] updated to version 1.0.2

diff --git a/plugin.video.nlhardwareinfo/addon.py 
b/plugin.video.nlhardwareinfo/addon.py
index 1e726d1..b47aec7 100644
--- a/plugin.video.nlhardwareinfo/addon.py
+++ b/plugin.video.nlhardwareinfo/addon.py
@@ -11,6 +11,7 @@
 #   * Team XBMC @ XBMC.org                                              
[http://xbmc.org/]
 #   * Leonard Richardson <leona...@segfault.org> - BeautifulSoup 3.0.7a 
[http://www.crummy.com/software/BeautifulSoup/]
 #   * Eric Lawrence <e_lawre...@hotmail.com>     - Fiddler Web Debugger 
[http://www.fiddler2.com]
+#   * http://nl.hardware.info/
 #
 
 # 
@@ -18,8 +19,8 @@
 #
 #also in ..._const
 __addon__       = "plugin.video.nlhardwareinfo"
-__date__        = "10 may 2013"
-__version__     = "1.0.1"
+__date__        = "3 july 2013"
+__version__     = "1.0.2"
 
 #
 # Imports
@@ -40,25 +41,9 @@ sys.path.append (LIB_DIR)
 # Get plugin settings
 DEBUG = xbmcaddon.Addon(id='plugin.video.nlhardwareinfo').getSetting('debug')
 
-# Parse parameters...
-if len(sys.argv[2]) == 0:
-    #
-    # Main menu
-    #
-    if (DEBUG) == 'true':
-        xbmc.log( "[ADDON] %s v%s (%s) is starting, ARGV = %s" % ( __addon__, 
__version__, __date__, repr(sys.argv) ), xbmc.LOGNOTICE )
-    import nlhardwareinfo_main as plugin
-else:
-    action = 
urlparse.parse_qs(urlparse.urlparse(sys.argv[2]).query)['action'][0]
-    #
-    # List
-    #
-    if action == 'list':
-        import nlhardwareinfo_list as plugin
-    #
-    # Play
-    #
-    elif action == 'play':
-        import nlhardwareinfo_play as plugin
+if (DEBUG) == 'true':
+    xbmc.log( "[ADDON] %s v%s (%s) is starting, ARGV = %s" % ( __addon__, 
__version__, __date__, repr(sys.argv) ), xbmc.LOGNOTICE )
+
+import nlhardwareinfo_list_play as plugin
 
 plugin.Main()
\ No newline at end of file
diff --git a/plugin.video.nlhardwareinfo/addon.xml 
b/plugin.video.nlhardwareinfo/addon.xml
index 6f40dbd..ef08363 100644
--- a/plugin.video.nlhardwareinfo/addon.xml
+++ b/plugin.video.nlhardwareinfo/addon.xml
@@ -1,21 +1,25 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon 
        id="plugin.video.nlhardwareinfo" 
-       name="HardwareInfo Tv" 
-       version="1.0.1" 
+       name="Hardware.Info TV" 
+       version="1.0.2" 
        provider-name="Skipmode A1">
   <requires>
     <import addon="xbmc.python"                 version="2.1.0"/>
     <import addon="xbmc.addon"                  version="12.0.0"/>
+       <import addon="script.module.beautifulsoup" version="3.0.8"/>
   </requires>
        <extension point="xbmc.python.pluginsource" library="addon.py">
                <provides>video</provides>
        </extension>
   <extension point="xbmc.addon.metadata">
        <platform>all</platform>
-       <summary lang="en">Watch hardware videos from Nl.Hardware.Info 
(dutch)</summary>
-       <description lang="en">Watch videos from Nl.Hardware.Info 
(dutch)</description>
-       <disclaimer lang="en">For bugs, requests or general questions visit the 
HardwareInfo thread on the XBMC forum.</disclaimer>
+       <summary lang="en">Hardware.Info TV is a webcast in which the editors 
of Hardware.Info discuss the latest hardware, gadgets and consumer electronics. 
(Dutch)</summary>
+    <description lang="en">Hardware.Info TV is a webcast in which the editors 
of Hardware.Info discuss the latest hardware, gadgets and consumer electronics. 
This plugin lets you view Hardware.Info TV episodes in HD quality via 
XBMC.</description>
+    <disclaimer lang="en">For bugs, requests or general questions visit the 
Hardware.Info thread on the XBMC forum.</disclaimer>
+    <summary lang="nl">Hardware.Info TV is een webcast waarin de redactie van 
Hardware.Info de nieuwste hardware, gadgets en consumentenelektronica 
bespreekt.</summary>
+    <description lang="nl">Hardware.Info TV is een webcast waarin de redactie 
van Hardware.Info de nieuwste hardware, gadgets en consumentenelektronica 
bespreekt. Via deze plugin kun je de afleveringen van Hardware.Info TV 
eenvoudig in HD-kwaliteit via XBMC bekijken.</description>
+    <disclaimer lang="nl">Bugs of andere feedback op deze plugin kan geplaatst 
worden in de Hardware.Info thread op het XBMC forum.</disclaimer>
     <language>nl</language>
     <platform>all</platform>
     <license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
diff --git a/plugin.video.nlhardwareinfo/changelog.txt 
b/plugin.video.nlhardwareinfo/changelog.txt
index ad34536..9f2a6e2 100644
--- a/plugin.video.nlhardwareinfo/changelog.txt
+++ b/plugin.video.nlhardwareinfo/changelog.txt
@@ -4,4 +4,12 @@ v1.0.0 (Wednesday, 10 April 2013) :
 v1.0.1 (Friday, 10 May 2013) :
 - added optional fields addon.xml
 
- 
\ No newline at end of file
+v1.0.2 (Wednesday, 3 July 2013) :
+- using different page to get the video items
+- removed the 'losse items' category 
+- the plugin now starts by displaying the available video's
+- using hi res thumbnails
+- using hi res background
+- using different icon
+- added beautiful soup as dependency
+- added dutch strings
diff --git a/plugin.video.nlhardwareinfo/fanart.jpg 
b/plugin.video.nlhardwareinfo/fanart.jpg
index 77a0b53..2cda6c9 100644
Binary files a/plugin.video.nlhardwareinfo/fanart.jpg and 
b/plugin.video.nlhardwareinfo/fanart.jpg differ
diff --git a/plugin.video.nlhardwareinfo/icon.png 
b/plugin.video.nlhardwareinfo/icon.png
index 2b2329a..36ce9b1 100644
Binary files a/plugin.video.nlhardwareinfo/icon.png and 
b/plugin.video.nlhardwareinfo/icon.png differ
diff --git a/plugin.video.nlhardwareinfo/resources/language/English/strings.xml 
b/plugin.video.nlhardwareinfo/resources/language/English/strings.xml
index 78327ef..f7528f1 100644
--- a/plugin.video.nlhardwareinfo/resources/language/English/strings.xml
+++ b/plugin.video.nlhardwareinfo/resources/language/English/strings.xml
@@ -3,8 +3,7 @@
     <!--
      * Main
      -->
-    <string id="30000">Hardware.Info Tv</string>
-       <string id="30001">Losse Items</string>
+    <string id="30000">Hardware.Info TV</string>
 
     <!-- 
      * Settings labels 
diff --git a/plugin.video.nlhardwareinfo/resources/lib/nlhardwareinfo_const.py 
b/plugin.video.nlhardwareinfo/resources/lib/nlhardwareinfo_const.py
index 479e77f..28a5bd0 100644
--- a/plugin.video.nlhardwareinfo/resources/lib/nlhardwareinfo_const.py
+++ b/plugin.video.nlhardwareinfo/resources/lib/nlhardwareinfo_const.py
@@ -8,5 +8,5 @@ __addon__       = "plugin.video.nlhardwareinfo"
 __settings__    = xbmcaddon.Addon(id=__addon__ )
 __language__    = __settings__.getLocalizedString
 __images_path__ = os.path.join( xbmcaddon.Addon(id=__addon__ 
).getAddonInfo('path'), 'resources', 'images' )
-__date__        = "10 may 2013"
-__version__     = "1.0.1"
\ No newline at end of file
+__date__        = "3 july 2013"
+__version__     = "1.0.2"
\ No newline at end of file

http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=305b67e5fee5b7ebee30eeab40dff11e965eb198

commit 305b67e5fee5b7ebee30eeab40dff11e965eb198
Author: kibje <k...@xbmc.org>
Date:   Mon Jul 8 13:02:17 2013 +0200

    [plugin.video.mediathek] updated to version 0.5.7

diff --git a/plugin.video.mediathek/addon.xml b/plugin.video.mediathek/addon.xml
index 47f93bc..65f80e8 100644
--- a/plugin.video.mediathek/addon.xml
+++ b/plugin.video.mediathek/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <addon
   id="plugin.video.mediathek"
-  version="0.5.6"
+  version="0.5.7"
   name="Mediathek"
   provider-name="Raptor 2101 [raptor2...@gmx.de]">
   <requires>
@@ -17,11 +17,11 @@
     <summary lang="en">Gives acces to the most video-platforms from german 
public service broadcaster</summary>
     <description lang="de">Ermöglicht den zugriff auf alle deutschen 
Mediatheken der öffentlich Rechtlichen.
 Aktuell implementiert sind:
-  3Sat, ARD, ZDF, ARTE, Bayrisches Fernsehen, ORF, WDR, NDR, KiKa (ohne 
Kikaninchen)
+  3Sat, ARD, ZDF, ARTE, ORF, NDR, KiKa (ohne Kikaninchen)
 </description>
     <description lang="en">Gives acces to the most video-platforms from german 
public service broadcaster.
 Currently implemented:
-  3Sat, ARD, ZDF, ARTE, Bayrisches Fernsehen, ORF, WDR, NDR, KiKa (without 
Kikaninchen)
+  3Sat, ARD, ZDF, ARTE, ORF, NDR, KiKa (without Kikaninchen)
 </description>
     <language>de</language>
     <platform>all</platform>
diff --git a/plugin.video.mediathek/changelog.txt 
b/plugin.video.mediathek/changelog.txt
index 1b1c86c..75f29f6 100644
--- a/plugin.video.mediathek/changelog.txt
+++ b/plugin.video.mediathek/changelog.txt
@@ -1,3 +1,6 @@
+0.5.6 - CHG: Temporaily disable BR, BR Alpha
+           FIX: 3Sat offers webem, will used as fallback
+           REM: WDR Support - they moves to a creepy format and i'am unable to 
handle this in xbmc correctly
 0.5.6 - FIX: NDR Update by dethfeet
 0.5.5 - FIX: More NDR fixes
 0.5.4 - FIX: NDR Fixed by dethfeet
diff --git a/plugin.video.mediathek/mediathek/__init__.py 
b/plugin.video.mediathek/mediathek/__init__.py
index b24eae0..5d18b91 100644
--- a/plugin.video.mediathek/mediathek/__init__.py
+++ b/plugin.video.mediathek/mediathek/__init__.py
@@ -60,7 +60,7 @@ class Mediathek(object):
         req = urllib2.Request(safe_url, data)
       else:
         req = urllib2.Request(safe_url)
-      req.add_header('User-Agent', 'Mozilla/5.0')
+      req.add_header('User-Agent', 'Mozilla/5.0 (Windows NT 6.1; rv:15.0) 
Gecko/20100101 Firefox/15.0.1')
       req.add_header('Accept', 
'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8')
       req.add_header('Accept-Language', 'de-de,de;q=0.8,en-us;q=0.5,en;q=0.3')
       req.add_header('Accept-Charset', 'utf-8')
diff --git a/plugin.video.mediathek/mediathek/dreisat.py 
b/plugin.video.mediathek/mediathek/dreisat.py
index 8b61678..b9de1bc 100644
--- a/plugin.video.mediathek/mediathek/dreisat.py
+++ b/plugin.video.mediathek/mediathek/dreisat.py
@@ -55,6 +55,8 @@ class DreiSatMediathek(Mediathek):
     else:
       self.baseType ="video/quicktime";
     
+    
+    self.webEmType = "video/webm";
     self.menuTree = (
       
TreeNode("0","Bauerfeind","http://www.3sat.de/mediathek/rss/mediathek_bauerfeind.xml",True),
       
TreeNode("1","Bookmark","http://www.3sat.de/mediathek/rss/mediathek_bookmark.xml",True),
@@ -170,7 +172,7 @@ class DreiSatMediathek(Mediathek):
     links = {};
     for contentNode in itemNode.getElementsByTagName("media:content"):
       mediaType = contentNode.getAttribute("type");
-      if(not self.baseType == mediaType):
+      if(not (self.baseType == mediaType or mediaType == self.webEmType)):
         continue;
       
       height = int(contentNode.getAttribute("height"));
diff --git a/plugin.video.mediathek/mediathek/factory.py 
b/plugin.video.mediathek/mediathek/factory.py
index d22343a..a5b1794 100644
--- a/plugin.video.mediathek/mediathek/factory.py
+++ b/plugin.video.mediathek/mediathek/factory.py
@@ -33,10 +33,10 @@ class MediathekFactory(object):
        ZDFMediathek.name():ZDFMediathek,
        ARTEMediathek.name():ARTEMediathek,
        DreiSatMediathek.name():DreiSatMediathek,
-       BayerischesFSMediathek.name():BayerischesFSMediathek,
+       #BayerischesFSMediathek.name():BayerischesFSMediathek,
        ORFMediathek.name():ORFMediathek,
-       WDRMediathek.name():WDRMediathek,
-       BRAlphaMediathek.name():BRAlphaMediathek,
+       #WDRMediathek.name():WDRMediathek,
+       #BRAlphaMediathek.name():BRAlphaMediathek,
        NDRMediathek.name():NDRMediathek,
        KIKAPlus.name():KIKAPlus
       }

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

Summary of changes:
 .../LICENSE.txt                                    |    0
 plugin.programm.xbmcmail/addon.py                  |  308 ++++++++++++++++++++
 plugin.programm.xbmcmail/addon.xml                 |   21 ++
 plugin.programm.xbmcmail/changelog.txt             |    9 +
 plugin.programm.xbmcmail/icon.png                  |  Bin 0 -> 4374 bytes
 .../resources/__init__.py                          |    0
 .../resources/language/English/strings.xml         |   20 ++
 .../resources/lib}/__init__.py                     |    0
 plugin.programm.xbmcmail/resources/lib/client.py   |  274 +++++++++++++++++
 plugin.programm.xbmcmail/resources/settings.xml    |    8 +
 plugin.video.dumpert/addon.py                      |    4 +-
 plugin.video.dumpert/addon.xml                     |   10 +-
 plugin.video.dumpert/changelog.txt                 |    4 +
 .../resources/language/Dutch/strings.xml           |   38 +++
 .../resources/language/English/strings.xml         |    6 +-
 .../resources/lib/dumpert_const.py                 |    4 +-
 plugin.video.gamekings/addon.py                    |    4 +-
 plugin.video.gamekings/addon.xml                   |   10 +-
 plugin.video.gamekings/changelog.txt               |    5 +-
 .../resources/language/Dutch/strings.xml           |   38 +++
 .../resources/language/English/strings.xml         |    2 +-
 .../resources/lib/gamekings_const.py               |    4 +-
 plugin.video.mediathek/addon.xml                   |    6 +-
 plugin.video.mediathek/changelog.txt               |    3 +
 plugin.video.mediathek/mediathek/__init__.py       |    2 +-
 plugin.video.mediathek/mediathek/dreisat.py        |    4 +-
 plugin.video.mediathek/mediathek/factory.py        |    6 +-
 plugin.video.mlslive/addon.xml                     |    2 +-
 plugin.video.mlslive/changelog.txt                 |    4 +
 plugin.video.mlslive/default.py                    |    3 +-
 plugin.video.nlhardwareinfo/addon.py               |   29 +--
 plugin.video.nlhardwareinfo/addon.xml              |   14 +-
 plugin.video.nlhardwareinfo/changelog.txt          |   10 +-
 plugin.video.nlhardwareinfo/fanart.jpg             |  Bin 161004 -> 435957 
bytes
 plugin.video.nlhardwareinfo/icon.png               |  Bin 99638 -> 43070 bytes
 .../resources/language/Dutch/strings.xml           |   36 +++
 .../resources/language/English/strings.xml         |    3 +-
 .../resources/lib/nlhardwareinfo_const.py          |    4 +-
 .../resources/lib/nlhardwareinfo_list.py           |  172 -----------
 .../resources/lib/nlhardwareinfo_list_play.py      |  204 +++++++++++++
 .../resources/lib/nlhardwareinfo_main.py           |   44 ---
 .../resources/lib/nlhardwareinfo_play.py           |  133 ---------
 plugin.video.teamhww/addon.py                      |    4 +-
 plugin.video.teamhww/addon.xml                     |   10 +-
 plugin.video.teamhww/changelog.txt                 |    6 +-
 .../resources/language/Dutch/strings.xml           |   36 +++
 .../resources/lib/teamhww_const.py                 |    4 +-
 plugin.video.tweakers/addon.py                     |    4 +-
 plugin.video.tweakers/addon.xml                    |    8 +-
 plugin.video.tweakers/changelog.txt                |    7 +-
 .../resources/language/Dutch/strings.xml           |   36 +++
 .../resources/lib/tweakers_const.py                |    4 +-
 52 files changed, 1141 insertions(+), 426 deletions(-)
 copy {plugin.audio.booksshouldbefree_com => 
plugin.programm.xbmcmail}/LICENSE.txt (100%)
 create mode 100644 plugin.programm.xbmcmail/addon.py
 create mode 100644 plugin.programm.xbmcmail/addon.xml
 create mode 100644 plugin.programm.xbmcmail/changelog.txt
 create mode 100644 plugin.programm.xbmcmail/icon.png
 copy {plugin.audio.jambmc => plugin.programm.xbmcmail}/resources/__init__.py 
(100%)
 create mode 100644 
plugin.programm.xbmcmail/resources/language/English/strings.xml
 copy {plugin.audio.jambmc/resources => 
plugin.programm.xbmcmail/resources/lib}/__init__.py (100%)
 create mode 100644 plugin.programm.xbmcmail/resources/lib/client.py
 create mode 100644 plugin.programm.xbmcmail/resources/settings.xml
 create mode 100644 plugin.video.dumpert/resources/language/Dutch/strings.xml
 create mode 100644 plugin.video.gamekings/resources/language/Dutch/strings.xml
 create mode 100644 
plugin.video.nlhardwareinfo/resources/language/Dutch/strings.xml
 delete mode 100644 
plugin.video.nlhardwareinfo/resources/lib/nlhardwareinfo_list.py
 create mode 100644 
plugin.video.nlhardwareinfo/resources/lib/nlhardwareinfo_list_play.py
 delete mode 100644 
plugin.video.nlhardwareinfo/resources/lib/nlhardwareinfo_main.py
 delete mode 100644 
plugin.video.nlhardwareinfo/resources/lib/nlhardwareinfo_play.py
 create mode 100644 plugin.video.teamhww/resources/language/Dutch/strings.xml
 create mode 100644 plugin.video.tweakers/resources/language/Dutch/strings.xml


hooks/post-receive
-- 
Plugins

------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to