The branch, eden has been updated
via 855286490f6c8f5c056cbc3ad0bb3809ac760095 (commit)
from 8625033fed365f5101a4a7df211b4e87cc25dafb (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=855286490f6c8f5c056cbc3ad0bb3809ac760095
commit 855286490f6c8f5c056cbc3ad0bb3809ac760095
Author: spiff <[email protected]>
Date: Sun Apr 1 14:20:08 2012 +0200
[plugin.video.pakee] updated to version 1.0.13
diff --git a/plugin.video.pakee/addon.xml b/plugin.video.pakee/addon.xml
index c7154cf..3221196 100644
--- a/plugin.video.pakee/addon.xml
+++ b/plugin.video.pakee/addon.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.pakee"
name="Pakee"
- version="1.0.10"
+ version="1.0.13"
provider-name="pakee">
<requires>
<import addon="xbmc.python" version="2.0"/>
diff --git a/plugin.video.pakee/changelog.txt b/plugin.video.pakee/changelog.txt
index 30afb74..ab8a73d 100644
--- a/plugin.video.pakee/changelog.txt
+++ b/plugin.video.pakee/changelog.txt
@@ -1,3 +1,13 @@
+[B]Version 1.0.13[/B]
+- Fixing bug while playing justin.tv
+
+[B]Version 1.0.12[/B]
+- Added ability to play justin.tv channels
+
+[B]Version 1.0.11[/B]
+- Added ability for live streams to be changed via next/previous controls
+
+
[B]Version 1.0.10[/B]
- MOving live channels into categories (by language)
diff --git a/plugin.video.pakee/default.py b/plugin.video.pakee/default.py
index 3c26006..c872bb1 100644
--- a/plugin.video.pakee/default.py
+++ b/plugin.video.pakee/default.py
@@ -9,7 +9,7 @@ __plugin__ = 'Pakee'
__author__ = '[email protected]'
__url__ = 'http://code.google.com/p/pakee/'
__date__ = '01-04-2011'
-__version__ = '1.0.10'
+__version__ = '1.0.13'
__settings__ = xbmcaddon.Addon(id='plugin.video.pakee')
__rooturl__ = 'http://pakee.hopto.org/pakee/pakee.php?id=xbmc&z=9'
#__rooturl__ = 'http://pakee.hopto.org/pakee/pakee-test.xml?ss=5'
@@ -28,6 +28,7 @@ PLUGIN_MODE_PLAY_SLIDESHOW = 90
PLUGIN_MODE_OPEN_SETTINGS = 100
PLUGIN_MODE_PLAY_STREAM = 110
+
#view modes
VIEW_THUMB = 500
VIEW_POSTER = 501
@@ -65,6 +66,8 @@ def play_youtube_video(video_id, name):
infolabels = { "title": name, "plot": name}
listitem.setInfo( type="Video", infoLabels=infolabels)
xbmc.Player( xbmc.PLAYER_CORE_DVDPLAYER ).play( str(url), listitem)
+
+
#Play a single song
def play_stream(url, name):
@@ -125,14 +128,20 @@ def play_playlist(origurl, index):
for item in items:
label, url, description, pubDate, guid, thumb, duration,
rating, viewcount = getItemFields(item)
+ playlisturl = None
if guid is not None and guid != '':
print "Found item: " + label + " guid: " + guid
playlisturl =
'plugin://plugin.video.youtube/?action=play_video&videoid=%s' % (guid)
+
+ elif 'plugin://plugin.video.jtv.archives' in url and
'play=True' in url:
+ playlisturl = url.replace('play=True','play=False')
+
+
elif url is not None and url != '':
#print "Found item: " + label + " url: " + url
playlisturl = url
-
+
if playlisturl is not None and playlisturl !='' and itemCount
>= index - 1:
listitem = xbmcgui.ListItem( label = label,
thumbnailImage = thumb, path=playlisturl )
listitem.setInfo( type="video", infoLabels={ "Title":
label, "Plot" : description } )
@@ -258,6 +267,11 @@ def build_show_directory(origurl):
url = origurl
+
+ if 'plugin://plugin.video.jtv.archives' in url and
'play=True' in url:
+ url = url.replace('play=True','play=False')
+
+
#For feeds with pictures as their first item, show
<start slideshow> as first listitem
if url[-4:]=='.jpg' or url[-4:]=='.gif' or
url[-4:]=='.png':
#For folders with videos, show play all option
@@ -292,7 +306,9 @@ def build_show_directory(origurl):
if 'fetchLiveFeeds.php' not in url and ('rtmp://' in
url or 'mms://' in url or 'rtsp://' in url or 'desistreams.xml' in origurl or
'LiveTV.xml' in origurl):
isFolder = False
- mode = PLUGIN_MODE_PLAY_STREAM
+ #mode = PLUGIN_MODE_PLAY_STREAM
+ mode = PLUGIN_MODE_PLAY_PLAYLIST
+ url = origurl
#For feeds with streams as their first item,
show <play all> listitem as first listitem
#if itemCount == 0:
@@ -301,6 +317,7 @@ def build_show_directory(origurl):
+
itemCount=itemCount+1
xbmcplugin.setContent( handle=int( sys.argv[ 1 ] ),
content='movies' )
listitem = xbmcgui.ListItem( label = label, iconImage = thumb,
thumbnailImage = thumb, path = url)
@@ -684,3 +701,4 @@ elif mode == PLUGIN_MODE_OPEN_SETTINGS:
open_settings()
+
diff --git a/plugin.video.pakee/resources/language/English/strings.xml
b/plugin.video.pakee/resources/language/English/strings.xml
index 56cf145..dd23a1c 100644
--- a/plugin.video.pakee/resources/language/English/strings.xml
+++ b/plugin.video.pakee/resources/language/English/strings.xml
@@ -16,8 +16,9 @@
<string id="30101">Default</string>
<string id="30102">Title</string>
- <string id="30200">Repeat playlist</string>
- <string id="30201">Shuffle playlist</string>
+
+ <string id="30200">Shuffle playlist</string>
+ <string id="30201">Repeat playlist</string>
<string id="30300">Default view</string>
<string id="30301">Thumbnail view</string>
-----------------------------------------------------------------------
Summary of changes:
plugin.video.pakee/addon.xml | 2 +-
plugin.video.pakee/changelog.txt | 10 ++++++++
plugin.video.pakee/default.py | 24 +++++++++++++++++--
.../resources/language/English/strings.xml | 5 ++-
4 files changed, 35 insertions(+), 6 deletions(-)
hooks/post-receive
--
Plugins
------------------------------------------------------------------------------
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here
http://p.sf.net/sfu/sfd2d-msazure
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons