The branch, frodo has been updated
       via  cb6c44be2a0d8053d905734f0304bb3922b4cfe7 (commit)
      from  5487de0484a1e2157d6bcc3033fc6cd9bde28cb5 (commit)

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

commit cb6c44be2a0d8053d905734f0304bb3922b4cfe7
Author: root <root@Ionosphere.(none)>
Date:   Mon Jun 24 09:09:20 2013 +0200

    [plugin.video.teamhww] updated to version 1.0.1

diff --git a/plugin.video.teamhww/addon.py b/plugin.video.teamhww/addon.py
index ec3872a..c43e8f2 100644
--- a/plugin.video.teamhww/addon.py
+++ b/plugin.video.teamhww/addon.py
@@ -17,7 +17,7 @@
 #
 #also in ..._const
 __addon__       = "plugin.video.teamhww"
-__date__        = "10 may 2013"
+__date__        = "23 june 2013"
 __version__     = "1.0.0"
 
 #
@@ -46,7 +46,7 @@ if len(sys.argv[2]) == 0:
     #
     if (DEBUG) == 'true':
         xbmc.log( "[ADDON] %s v%s (%s) is starting, ARGV = %s" % ( __addon__, 
__version__, __date__, repr(sys.argv) ), xbmc.LOGNOTICE )
-    import teamhww_main as plugin
+    import teamhww_list as plugin
 else:
     action = 
urlparse.parse_qs(urlparse.urlparse(sys.argv[2]).query)['action'][0]
     #
diff --git a/plugin.video.teamhww/addon.xml b/plugin.video.teamhww/addon.xml
index 2a10939..5bb7ec4 100644
--- a/plugin.video.teamhww/addon.xml
+++ b/plugin.video.teamhww/addon.xml
@@ -2,7 +2,7 @@
 <addon 
        id="plugin.video.teamhww" 
        name="TeamHww" 
-       version="1.0.0" 
+       version="1.0.1" 
        provider-name="Skipmode A1">
   <requires>
     <import addon="xbmc.python"                 version="2.1.0"/>
@@ -14,12 +14,12 @@
   <extension point="xbmc.addon.metadata">
        <platform>all</platform>
        <summary lang="en">Watch tech and movie videos from Teamhww.nl 
(dutch)</summary>
-       <description lang="en">Watch videos from Teamhww.nl 
(dutch)</description>
+       <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>
     <platform>all</platform>
     <license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
-    <forum></forum>
+    <forum>http://forum.xbmc.org/showthread.php?tid=164585</forum>
     <website>http://www.teamhww.nl</website>
     <email></email>
     <source>git://github.com/skipmodea1/plugin.video.teamhww.git</source>
diff --git a/plugin.video.teamhww/changelog.txt 
b/plugin.video.teamhww/changelog.txt
index 96017e0..ee23400 100644
--- a/plugin.video.teamhww/changelog.txt
+++ b/plugin.video.teamhww/changelog.txt
@@ -1,2 +1,5 @@
 v1.0.0 (Friday, 10 may 2013) :
-- initial version
\ No newline at end of file
+- 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
diff --git a/plugin.video.teamhww/resources/lib/teamhww_const.py 
b/plugin.video.teamhww/resources/lib/teamhww_const.py
index 579999b..b97bd2b 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__        = "10 may 2013"
-__version__     = "1.0.0"
\ No newline at end of file
+__date__        = "23 june 2013"
+__version__     = "1.0.1"
\ No newline at end of file
diff --git a/plugin.video.teamhww/resources/lib/teamhww_list.py 
b/plugin.video.teamhww/resources/lib/teamhww_list.py
index 1ffbadb..9ec39f9 100644
--- a/plugin.video.teamhww/resources/lib/teamhww_list.py
+++ b/plugin.video.teamhww/resources/lib/teamhww_list.py
@@ -29,10 +29,15 @@ class Main:
                        xbmc.log( "[ADDON] %s v%s (%s) debug mode, %s = %s, %s 
= %s" % ( __addon__, __version__, __date__, "ARGV", repr(sys.argv), "File", 
str(__file__) ), xbmc.LOGNOTICE )
 
                # Parse parameters
-               self.plugin_category = 
urlparse.parse_qs(urlparse.urlparse(sys.argv[2]).query)['plugin_category'][0]
-               self.video_list_page_url = 
urlparse.parse_qs(urlparse.urlparse(sys.argv[2]).query)['url'][0]
-               self.next_page_possible = 
urlparse.parse_qs(urlparse.urlparse(sys.argv[2]).query)['next_page_possible'][0]
-               
+               if len(sys.argv[2]) == 0:
+                       self.plugin_category = __language__(30000)
+                       self.video_list_page_url = 
"http://www.teamhww.nl/category/videos/page/001/";
+                       self.next_page_possible = "True"
+               else:
+                       self.plugin_category = 
urlparse.parse_qs(urlparse.urlparse(sys.argv[2]).query)['plugin_category'][0]
+                       self.video_list_page_url = 
urlparse.parse_qs(urlparse.urlparse(sys.argv[2]).query)['url'][0]
+                       self.next_page_possible = 
urlparse.parse_qs(urlparse.urlparse(sys.argv[2]).query)['next_page_possible'][0]
+                                       
                if (self.DEBUG) == 'true':
                        xbmc.log( "[ADDON] %s v%s (%s) debug mode, %s = %s" % ( 
__addon__, __version__, __date__, "self.video_list_page_url", 
str(self.video_list_page_url) ), xbmc.LOGNOTICE )
                
diff --git a/plugin.video.teamhww/resources/lib/teamhww_play.py 
b/plugin.video.teamhww/resources/lib/teamhww_play.py
index f1a22c4..2b6d39e 100644
--- a/plugin.video.teamhww/resources/lib/teamhww_play.py
+++ b/plugin.video.teamhww/resources/lib/teamhww_play.py
@@ -110,7 +110,7 @@ class Main:
                
                        listitem = xbmcgui.ListItem( title, 
iconImage="DefaultVideo.png", thumbnailImage=thumbnail )
                        xbmcplugin.setResolvedUrl(handle=int(sys.argv[1]), 
succeeded=True, listitem=listitem)
-                       listitem.setInfo( "video", { "Title": title, "Studio" : 
"Gamekings", "Plot" : plot, "Genre" : genre } )
+                       listitem.setInfo( "video", { "Title": title, "Studio" : 
"Teamhww", "Plot" : plot, "Genre" : genre } )
                        playlist.add( video_url, listitem )
        
                        # Close wait dialog
diff --git a/plugin.video.teamhww/todo.txt b/plugin.video.teamhww/todo.txt
index d65160a..e69de29 100644
--- a/plugin.video.teamhww/todo.txt
+++ b/plugin.video.teamhww/todo.txt
@@ -1 +0,0 @@
-- Removing 'videos' category and going straight to the items (as 'videos' is 
the only category atm)

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

Summary of changes:
 plugin.video.teamhww/addon.py                      |    4 +-
 plugin.video.teamhww/addon.xml                     |    6 ++--
 plugin.video.teamhww/changelog.txt                 |    5 ++-
 .../resources/lib/teamhww_const.py                 |    4 +-
 plugin.video.teamhww/resources/lib/teamhww_list.py |   13 +++++--
 plugin.video.teamhww/resources/lib/teamhww_main.py |   35 --------------------
 plugin.video.teamhww/resources/lib/teamhww_play.py |    2 +-
 plugin.video.teamhww/todo.txt                      |    1 -
 8 files changed, 21 insertions(+), 49 deletions(-)
 delete mode 100644 plugin.video.teamhww/resources/lib/teamhww_main.py


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
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to