The branch, dharma has been updated
via c4e8dd19fdcb490521ec440af3dcb90a96f68abd (commit)
via 74bb7ae78d3d289d71aee7146e7a792fe4f07f0d (commit)
from c0d44f9ce0a714408c381645181b4d642a57fe10 (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=c4e8dd19fdcb490521ec440af3dcb90a96f68abd
commit c4e8dd19fdcb490521ec440af3dcb90a96f68abd
Author: spiff <[email protected]>
Date: Sat Jan 1 14:03:43 2011 +0100
[plugin.video.vimeo] updated to version 1.0.1
diff --git a/plugin.video.vimeo/VimeoCore.py b/plugin.video.vimeo/VimeoCore.py
index 3d2556d..ef398a2 100755
--- a/plugin.video.vimeo/VimeoCore.py
+++ b/plugin.video.vimeo/VimeoCore.py
@@ -341,7 +341,7 @@ class VimeoCore(object):
video = self._get_details(videoid)
- print "smomsomsos" + repr(video)
+ get = video.get
if not video:
# we need a scrape the homepage fallback when the api
doesn't want to give us the URL
if self.__dbg__:
@@ -351,7 +351,7 @@ class VimeoCore(object):
quality = "sd"
hd_quality = int(self.__settings__.getSetting( "hd_videos" ))
- if (hd_quality):
+ if (hd_quality and get("isHD","0") == "1"):
quality = "hd"
if ( 'apierror' not in video):
@@ -373,9 +373,8 @@ class VimeoCore(object):
def search(self, query, page = "0"):
if self.__dbg__:
- print self.__plugin__ + " search"
+ print self.__plugin__ + " search: " + repr(query)
- print self.__plugin__ + "search query: " + query
per_page = ( 10, 15, 20, 25, 30, 40, 50, )[ int(
self.__settings__.getSetting( "perpage" ) ) ]
result = self.v.vimeo_videos_search(query=query, page=int(page)
+ 1, per_page=per_page, full_response="true")
@@ -499,12 +498,12 @@ class VimeoCore(object):
def _get_details(self, videoid):
if self.__dbg__:
print self.__plugin__ + " _get_details: " +
repr(videoid)
-
+
url =
urllib2.Request("http://www.vimeo.com/moogaloop/load/clip:%s/local/" % videoid);
url.add_header('User-Agent', self.USERAGENT);
con = urllib2.urlopen(url);
- value = con.read()
+ value = con.read()
con.close()
soup = BeautifulStoneSoup(value)
@@ -519,6 +518,7 @@ class VimeoCore(object):
video['Studio'] =
soup.video.uploader_display_name.contents[0].encode( "utf-8" )
video['request_signature'] =
soup.request_signature.contents[0]
video['request_signature_expires'] =
soup.request_signature_expires.contents[0]
+ video['isHD'] = soup.video.ishd.contents[0]
result.append(video)
if len(result) == 0:
diff --git a/plugin.video.vimeo/addon.xml b/plugin.video.vimeo/addon.xml
index 859a7e5..e71a841 100644
--- a/plugin.video.vimeo/addon.xml
+++ b/plugin.video.vimeo/addon.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.vimeo"
name="Vimeo"
- version="1.0.0"
+ version="1.0.1"
provider-name="TheCollective">
<requires>
<import addon="xbmc.python" version="1.0"/>
diff --git a/plugin.video.vimeo/changelog.txt b/plugin.video.vimeo/changelog.txt
index ecf5819..da9c6c0 100644
--- a/plugin.video.vimeo/changelog.txt
+++ b/plugin.video.vimeo/changelog.txt
@@ -2,6 +2,9 @@
- [XBMC] Thumbnails sometimes turns into folders.
- XBMC has Excessive Memory use after running the plugin for prolonged periods
of time
+[B]Version 1.0.1[/B]
+- Fixed broken playback of SD videos when HD was selected.
+
[B]Version 1.0.0[/B]
- Version bump to Final Release
- Updated Changelog
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=74bb7ae78d3d289d71aee7146e7a792fe4f07f0d
commit 74bb7ae78d3d289d71aee7146e7a792fe4f07f0d
Author: spiff <[email protected]>
Date: Sat Jan 1 14:01:42 2011 +0100
[plugin.video.escapistmagazine] initial version (0.1.3). thanks to mike
cronce
diff --git a/.gitignore b/.gitignore
index 0acf00a..947700f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -29,3 +29,4 @@ plugin.video.eyetv.parser/.git
plugin.video.xbmcflicks/.git
plugin.video.gamestar/.git
plugin.video.gamestar/.gitignore
+plugin.video.escapistmagazine/images.raw*
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 1 +
plugin.video.escapistmagazine/addon.xml | 21 +++
plugin.video.escapistmagazine/changelog.txt | 10 ++
plugin.video.escapistmagazine/default.py | 176 +++++++++++++++++++++++++++
plugin.video.escapistmagazine/fanart.jpg | Bin 0 -> 34541 bytes
plugin.video.escapistmagazine/icon.png | Bin 0 -> 15534 bytes
plugin.video.vimeo/VimeoCore.py | 12 +-
plugin.video.vimeo/addon.xml | 2 +-
plugin.video.vimeo/changelog.txt | 3 +
9 files changed, 218 insertions(+), 7 deletions(-)
create mode 100644 plugin.video.escapistmagazine/addon.xml
create mode 100644 plugin.video.escapistmagazine/changelog.txt
create mode 100644 plugin.video.escapistmagazine/default.py
create mode 100644 plugin.video.escapistmagazine/fanart.jpg
create mode 100644 plugin.video.escapistmagazine/icon.png
hooks/post-receive
--
Plugins
------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and,
should the need arise, upgrade to a full multi-node Oracle RAC database
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons