The branch, frodo has been updated
       via  9db553b0aa5060ccab2ae78d1775c6beb7654b12 (commit)
      from  48a12a8303957c6064e67921888a1b9d9bfb2a66 (commit)

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

commit 9db553b0aa5060ccab2ae78d1775c6beb7654b12
Author: beenje <bee...@xbmc.org>
Date:   Fri Jan 10 19:17:04 2014 +0100

    [plugin.video.fox.news] updated to version 3.1.1

diff --git a/plugin.video.fox.news/addon.xml b/plugin.video.fox.news/addon.xml
index 2778321..2d299a7 100644
--- a/plugin.video.fox.news/addon.xml
+++ b/plugin.video.fox.news/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="plugin.video.fox.news"
        name="Fox News"
-       version="3.1.0"
+       version="3.1.1"
        provider-name="divingmule">
     <requires>
         <import addon="xbmc.python" version="2.1.0"/>
diff --git a/plugin.video.fox.news/changelog.txt 
b/plugin.video.fox.news/changelog.txt
index d31cecc..d36fcc1 100644
--- a/plugin.video.fox.news/changelog.txt
+++ b/plugin.video.fox.news/changelog.txt
@@ -1,3 +1,6 @@
+Version 3.1.1
+fix website changes
+
 Version 3.1.0
 added videos from video.foxbusiness.com
 we are now using multi-bitrate m3u8 streams, quality depends on the system 
bandwidth limit setting
diff --git a/plugin.video.fox.news/default.py b/plugin.video.fox.news/default.py
index f51654e..eb9cafe 100644
--- a/plugin.video.fox.news/default.py
+++ b/plugin.video.fox.news/default.py
@@ -65,7 +65,10 @@ def get_categories(url=None):
         # add_dir('Watch Live', news_domain + '/playlist/live-landing-page/', 
icon, 'get_playlist')
         add_dir('FoxBusiness.com', business_domain, icon, 'get_categories')
         url = news_domain
-    soup = get_soup(url)
+        cat_url = url + '/playlist/featured-editors-picks/'
+    else:
+        cat_url = url + '/playlist/latest-video-latest-video/'
+    soup = get_soup(cat_url)
     for i in soup.find('nav')('a'):
         add_dir(i.string.encode('utf-8'), url + i['href'], icon, 'get_sub_cat')
 

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

Summary of changes:
 plugin.video.fox.news/addon.xml     |    2 +-
 plugin.video.fox.news/changelog.txt |    3 +++
 plugin.video.fox.news/default.py    |    5 ++++-
 3 files changed, 8 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Plugins

------------------------------------------------------------------------------
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments & Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk
_______________________________________________
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to