Re: [Xbmc-addons] [Git Pull] plugin.video.vimeo

2013-07-08 Thread Kibje
On Wed, Jul 3, 2013 at 8:11 PM, Henrik Jensen 
commander.john.crich...@gmail.com wrote:

 Sorry first email contained incorrect revisions, here are the correct
 ones..

 *addon - plugin.video.vimeo
 *version - 3.5.2
 *url - https://github.com/HenrikDK/vimeo-xbmc-plugin.git
 *revision - 83821e59fd95e45e82d37412ff25da76a3a43696
 *branch - frodo
 *xbmc version - frodo


 *addon - plugin.video.vimeo
 *version - 2.5.2
 *url - https://github.com/HenrikDK/vimeo-xbmc-plugin.git
 *revision - 1cf42c2008d0259413c3347393433a2029bfe1a7
 *branch - eden
 *xbmc version - eden


Sorry for the late reply.

Both addons have unmet dependencies on script.common.plugin.cache version
1.5.2 which does not exist.
I am unable to push them in this state - could you check that for me ?

Kibje
--
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


Re: [Xbmc-addons] [Zip Pull] script.service.radiovis

2013-07-08 Thread Kibje
On Thu, Jul 4, 2013 at 2:35 PM, Janek Ilgner ilg...@pqp.de wrote:

 *addon - script.service.radiovis
 *version - 0.2.1
 *url - http://www.radiodns.info/xbmc_service/script.service.radiovis.zip
 *xbmc version - frodo


The zipfile you referenced has several issues.
- it contains another folder with the 0.2.0 version of the addon in it
- It has many files that are CRLF line terminated.

I am sorry but I can't push this.

Kibje
--
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


[Xbmc-addons] Plugins branch, frodo, updated. 7fa2d08a83226b3b6822cd1c6c6ef3e3168434a6

2013-07-08 Thread Kibje
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
 providesvideo/provides
   /extension
   extension point=xbmc.addon.metadata
platformall/platform
-   summary lang=enWatch videos from Gameskings.tv (dutch)/summary
+   summary lang=enWatch videos from Gamekings.tv (dutch)/summary
description lang=enWatch videos from Gamekings.tv 
(dutch)/description
-   disclaimer lang=enFor bugs, requests or general questions visit the 
Gamekings thread on the XBMC forum./disclaimer
+   disclaimer lang=enFor bugs, requests or general questions visit the 
Gamekings.tv thread on the XBMC forum./disclaimer
+   summary lang=nlBekijk videos van Gamekings.tv (dutch)/summary
+   description lang=nlBekijk videos van Gamekings.tv 
(dutch)/description
+   disclaimer lang=nlBugs of andere feedback op deze plugin kan 
geplaatst worden in de Gamekings.tv thread op het XBMC forum./disclaimer
 languagenl/language
 platformall/platform
 licenseGNU 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

Re: [Xbmc-addons] [GIT PULL] plugin.video.mediathek

2013-07-08 Thread Kibje
On Fri, Jul 5, 2013 at 9:59 PM, Christian Kölpin raptor2...@gmx.de wrote:

 addon - plugin.video.mediathek
 version - 0.5.7
 url - git://github.com/raptor2101/Mediathek.git
 revision - 20f88942e8c476a2df93e2e717831f8e756912a8
 branch - master
 xbmc version - frodo


Pushed, cheers

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] plugin.video.nlhardwareinfo

2013-07-08 Thread Kibje
On Sat, Jul 6, 2013 at 8:04 PM, SkipmodeA1 skipmod...@outlook.com wrote:

  *addon - plugin.video.nlhardwareinfo

 *version - 1.0.2

 *url - git://github.com/skipmodea1/plugin.video.nlhardwareinfo.git

 *revision - 6ca4805e8dca7fbf36b1515b5ce9efbb625f3570

 *branch - master

 *xbmc version - frodo


Pushed, cheers

Kibje



--
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


Re: [Xbmc-addons] [git pull] plugin.programm.xbmcmail (frodo 0.1.0, NEW)

2013-07-08 Thread Kibje
On Sat, Jul 6, 2013 at 9:06 PM, Tristan Fischer sph...@dersphere.de wrote:

 *addon - plugin.programm.xbmcmail
 *version - 0.1.0
 *url - git://github.com/dersphere/plugin.programm.xbmcmail.git
 *revision - 00288796be4120341213aa60f35d24b223f70b99
 *branch - master
 *xbmc version - frodo


Updated, cheers

Kibje



--
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


Re: [Xbmc-addons] [Git Pull] plugin.video.dumpert

2013-07-08 Thread Kibje
On Sun, Jul 7, 2013 at 12:55 PM, SkipmodeA1 skipmod...@outlook.com wrote:

  *addon - plugin.video.dumpert

 *version - 1.0.2

 *url - git://github.com/skipmodea1/plugin.video.dumpert.git

 *revision - 3bcc32d5e4058f45b83f69d91f9581fb8b22d258

 *branch - master

 *xbmc version - frodo


Pushed, cheers

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] plugin.video.tweakers

2013-07-08 Thread Kibje
On Sun, Jul 7, 2013 at 12:59 PM, SkipmodeA1 skipmod...@outlook.com wrote:

  *addon - plugin.video.tweakers

 *version - 1.0.1

 *url - git://github.com/skipmodea1/plugin.video.tweakers.git

 *revision - 212a8e6a0324270a80da2bbac7063d074b7d5e72

 *branch - master

 *xbmc version - frodo


Pushed, cheers

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] plugin.video.teamhww

2013-07-08 Thread Kibje
On Sun, Jul 7, 2013 at 12:57 PM, SkipmodeA1 skipmod...@outlook.com wrote:

  *addon - plugin.video.teamhww

 *version - 1.0.2

 *url - git://github.com/skipmodea1/plugin.video.teamhww.git

 *revision - 2bb474cab56bb58db19d2236b93f2a0edb383910

 *branch - master

 *xbmc version - frodo


Pushed, cheers

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] plugin.video.gamekings

2013-07-08 Thread Kibje
On Sun, Jul 7, 2013 at 1:02 PM, SkipmodeA1 skipmod...@outlook.com wrote:

  *addon - plugin.video.gamekings

 *version - 1.0.3

 *url - git://github.com/skipmodea1/plugin.video.gamekings.git

 *revision - 7620aab55814e916d91b2fe7334c45ceebda9771

 *branch - master

 *xbmc version - frodo


Updated, cheers

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] MLS Live

2013-07-08 Thread Kibje
On Sun, Jul 7, 2013 at 10:27 PM, Micah Galizia micahgali...@gmail.comwrote:

 *addon - plugin.video.mlslive
 *version - 1.0.3
 *url - git://github.com/micahg/plugin.video.mlslive.git
 *revision - 3fb7e220
 *branch - master
 *xbmc version - frodo



Updated, cheers

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] script.module.addon.common

2013-07-02 Thread Kibje

 * addon - script.module.addon.common

 * version - 2.0.0
 * url - git://github.com/Eldorados/script.module.addon.common.git
 * revision - 47fc858e7c71bc54230f72fb74a22f8142912296
 * branch - master
 * xbmc version - frodo


 * addon - script.module.addon.common
 * version - 1.0.0
 * url - git://github.com/Eldorados/script.module.addon.common.git
 * revision - 0d87bd38862a777f9d0d7ca2e2c6e7f4ec2d0d66
 * branch - eden
 * xbmc version - eden

 Thanks for the request. Pushed it to Frodo.

Sorry but I can't push the new addon to Eden, per repository rules.
My apologies for the confusion. - I am substituting for Martijn / beenje
while they are on holiday and was not aware of that rule.


Sincerely,

Kibje
--
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


[Xbmc-addons] Plugins branch, frodo, updated. 86514e5326b102fc93019528b941546e33ac60b8

2013-07-02 Thread Kibje
The branch, frodo has been updated
   via  86514e5326b102fc93019528b941546e33ac60b8 (commit)
  from  d6e3628df8f0f97d5ac85738decde96c385f413d (commit)

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


---

Summary of changes:
 .../LICENSE.txt|0
 plugin.video.greenpeace/README |   36 +++
 plugin.video.greenpeace/addon.xml  |   22 ++
 plugin.video.greenpeace/changelog.txt  |   14 +
 plugin.video.greenpeace/default.py |  289 
 plugin.video.greenpeace/fanart.jpg |  Bin 0 - 93148 bytes
 plugin.video.greenpeace/icon.png   |  Bin 0 - 45986 bytes
 .../icons_and_fanart_credits.txt   |5 +
 plugin.video.greenpeace/lutil.py   |  210 ++
 .../resources/language/English/strings.xml |8 +
 .../resources/language/French/strings.xml  |8 +
 .../resources/language/German/strings.xml  |0
 .../resources/language/Spanish/strings.xml |8 +
 plugin.video.greenpeace/resources/settings.xml |5 +
 14 files changed, 605 insertions(+), 0 deletions(-)
 copy {plugin.audio.dradio = plugin.video.greenpeace}/LICENSE.txt (100%)
 create mode 100644 plugin.video.greenpeace/README
 create mode 100644 plugin.video.greenpeace/addon.xml
 create mode 100644 plugin.video.greenpeace/changelog.txt
 create mode 100644 plugin.video.greenpeace/default.py
 create mode 100644 plugin.video.greenpeace/fanart.jpg
 create mode 100644 plugin.video.greenpeace/icon.png
 create mode 100644 plugin.video.greenpeace/icons_and_fanart_credits.txt
 create mode 100644 plugin.video.greenpeace/lutil.py
 create mode 100644 
plugin.video.greenpeace/resources/language/English/strings.xml
 create mode 100644 
plugin.video.greenpeace/resources/language/French/strings.xml
 copy {plugin.video.attactv = 
plugin.video.greenpeace}/resources/language/German/strings.xml (100%)
 create mode 100644 
plugin.video.greenpeace/resources/language/Spanish/strings.xml
 create mode 100644 plugin.video.greenpeace/resources/settings.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


Re: [Xbmc-addons] [Git Pull] plugin.video.greenpeace v1.0.3 (Eden) and v1.1.3 (Frodo) - New

2013-07-02 Thread Kibje
 * addon - plugin.video.greenpeace
 * version - 1.0.3
 * url - git://github.com/jamontes/plugin.video.greenpeace.git
 * revision - f4fd6bcbb7dbf5b08e55f476d5c830120db6b627
 * branch - eden
 * xbmc version - eden

 * addon - plugin.video.greenpeace
 * version - 1.1.3
 * url - git://github.com/jamontes/plugin.video.greenpeace.git
 * revision - e9e70e5cd8d1d679ba3fb0d381f724283c4c99ca
 * branch - frodo
 * xbmc version - frodo


Hi, Pushed to Frodo repository, cheers.

We are not taking new addon submissions for the Eden repository anymore,
just fixes at this point - so I am unable to push that as well.

Sincerely,

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] script.trakt

2013-07-02 Thread Kibje
On Mon, Jul 1, 2013 at 6:53 PM, Justin Nemeth jus...@trakt.tv wrote:

 Fixed in commit
 073c364e842762c4fc8262d98746ee2e1aa30b85

 Thanks!


 On Mon, Jul 1, 2013 at 3:37 AM, Kibje k...@xbmc.org wrote:

 On Thu, Jun 27, 2013 at 7:37 PM, Justin Nemeth jus...@trakt.tv wrote:

 Just realized the original pull request email formatting was all messed
 up. Fixed below.

 *addon - script.trakt
 *version - 2.3.0
 *url - git://github.com/rectifyer/script.trakt.git
 *revision - 07131b41e5249b8e1e3ab1da627d187adc3e6a58
 *branch - master
 *xbmc version - frodo


 Sorry but I can't push this.
 * There is a *thumbs.db* included in your changes and there are
 windows-style line endings in *
 script.trakt/resources/language/Polish/strings.xml*
 *
 *
 Kibje



Updated, cheers

Kibje
--
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


Re: [Xbmc-addons] [git pull] script.screensaver.bigpictures (frodo 0.1.1)

2013-07-02 Thread Kibje
On Sun, Jun 23, 2013 at 11:57 PM, Tristan Fischer sph...@dersphere.dewrote:

 *addon - script.screensaver.bigpictures
 *version - 0.1.1
 *url - git://github.com/dersphere/script.screensaver.bigpictures.git
 *revision - 6532f72e35127b4f6dbb534695cfbc00acfb2de3
 *branch - master
 *xbmc version - frodo


Updated, cheers

Kibje
--
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


[Xbmc-addons] Scripts branch, frodo, updated. a45e7397704e26bad15f5c8c5c4ff3d048322d27

2013-07-02 Thread Kibje
The branch, frodo has been updated
   via  a45e7397704e26bad15f5c8c5c4ff3d048322d27 (commit)
  from  5ff85e176e0773d28c2b13ef41ab092e4bae29d0 (commit)

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

commit a45e7397704e26bad15f5c8c5c4ff3d048322d27
Author: kibje k...@xbmc.org
Date:   Tue Jul 2 08:57:21 2013 +0200

[script.screensaver.bigpictures] updated to version 0.1.1

diff --git a/script.screensaver.bigpictures/addon.xml 
b/script.screensaver.bigpictures/addon.xml
index 969d165..3837ff4 100644
--- a/script.screensaver.bigpictures/addon.xml
+++ b/script.screensaver.bigpictures/addon.xml
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes?
-addon id=script.screensaver.bigpictures name=The Big Pictures Screensaver 
version=0.1.0 provider-name=Tristan Fischer (sph...@dersphere.de)
+addon id=script.screensaver.bigpictures name=The Big Pictures Screensaver 
version=0.1.1 provider-name=Tristan Fischer (sph...@dersphere.de)
 requires
 import addon=xbmc.python version=2.1.0/
 import addon=script.module.bigpictures version=1.1.1/
@@ -12,7 +12,29 @@
 
sourcehttps://github.com/dersphere/script.screensaver.bigpictures/source
 forumhttp://forum.xbmc.org/showthread.php?tid=160347/forum
 emailsph...@dersphere.de/email
+summary lang=deFotojournalismus-Bildschirmschoner/summary
+summary lang=elΠροφύλαξη Οθόνης 
Φωτορεπορτάζ/summary
 summary lang=enPhotojournalism Screensaver/summary
+summary lang=esSalvapantallas de fotoperiodismo/summary
+summary lang=glProtector de pantalla de Fotoperiodismo/summary
+summary lang=itSalvaschermo Fotogiornalismo/summary
+summary lang=nlFotojournalisme screensaver/summary
+summary lang=plWygaszacz z Fotoreportaży/summary
+summary lang=ptUma protecção de ecrã de fotojornalismo/summary
+summary lang=pt_BRProteção de tela de fotojornalismo/summary
+summary lang=svFotojournalism-skärmsläckare/summary
+summary lang=zh新闻摄影屏幕保护/summary
+description lang=deDas Bildscript The Big Pictures als 
Bildschirmschoner./description
+description lang=elΧρήση του script The Big Pictures 
σαν Προφύλαξη Οθόνης/description
 description lang=enThe Image Script The Big Pictures as 
Screensaver./description
+description lang=esSalvapantallas del Script de imágenes The Big 
Pictures/description
+description lang=glO Script de Imaxe The Big Pictures como 
Protector de pantalla./description
+description lang=itLo Script The Big Pictures come 
Salvaschermo/description
+description lang=nlHet afbeelding script The Big Pictures als 
screensaver./description
+description lang=plSkrypt zdjęciowy The Big Pictures jako 
wygaszacz./description
+description lang=ptUsar o addon de imagem The Big Pictures como 
protecção de ecrã/description
+description lang=pt_BRO script de imagens The Big Pictures como 
proteção de tela/description
+description lang=svThe Image Script The Big Pictures som 
skärmsläckare./description
+description lang=zh用“The Big 
Pictures”做屏幕保护的图片脚本。/description
 /extension
 /addon
diff --git a/script.screensaver.bigpictures/changelog.txt 
b/script.screensaver.bigpictures/changelog.txt
index 2f76f56..646ea6d 100644
--- a/script.screensaver.bigpictures/changelog.txt
+++ b/script.screensaver.bigpictures/changelog.txt
@@ -1,3 +1,8 @@
+0.1.1 (23.06.2013)
+ - added preloading of the next image. This improves the sync between image 
and text
+ - fixed screensaver exit on abort requested
+ - added translations
+
 0.1.0 (05.05.2013)
  - added possibility to choose enabled scrapers
 
diff --git 
a/script.screensaver.bigpictures/resources/skins/default/720p/script-The Big 
Pictures Screensaver-main.xml 
b/script.screensaver.bigpictures/resources/skins/default/720p/script-The Big 
Pictures Screensaver-main.xml
index d4f33a3..112d949 100644
--- a/script.screensaver.bigpictures/resources/skins/default/720p/script-The 
Big Pictures Screensaver-main.xml  
+++ b/script.screensaver.bigpictures/resources/skins/default/720p/script-The 
Big Pictures Screensaver-main.xml  
@@ -82,5 +82,13 @@
 wrapmultilinetrue/wrapmultiline
 textcolorFFDD/textcolor
 /control
+control type=largeimage id=30006
+descriptionThe xext big picture (for preloading)/description
+posx1280/posx
+posy0/posy
+width16/width
+height9/height
+aspectratiokeep/aspectratio
+/control
 /controls
 /window
diff --git a/script.screensaver.bigpictures/screensaver.py 
b/script.screensaver.bigpictures/screensaver.py
index b75e94f..825376a

[Xbmc-addons] Plugins branch, frodo, updated. 30d3b6a7a8bf307e590e97389ddf1eda53deced1

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  30d3b6a7a8bf307e590e97389ddf1eda53deced1 (commit)
  from  c47b353e25ed036aa7c18ff22b9aec5bafe57657 (commit)

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

commit 30d3b6a7a8bf307e590e97389ddf1eda53deced1
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 09:11:03 2013 +0200

[plugin.video.nrk] updated to version 4.4.8

diff --git a/plugin.video.nrk/addon.xml b/plugin.video.nrk/addon.xml
index 02a84c5..a2d57ec 100644
--- a/plugin.video.nrk/addon.xml
+++ b/plugin.video.nrk/addon.xml
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes?
 addon id=plugin.video.nrk
name=NRK Nett-TV
-   version=4.4.7
+   version=4.4.8
provider-name=takoi
   requires
 import addon=xbmc.python version=2.1.0/
diff --git a/plugin.video.nrk/changelog.txt b/plugin.video.nrk/changelog.txt
index 9363c11..e461a28 100644
--- a/plugin.video.nrk/changelog.txt
+++ b/plugin.video.nrk/changelog.txt
@@ -1,3 +1,6 @@
+[B]4.4.8[/B]
+- Fikset direktestrømmer. Siden de endres så ofte, blir de nå hentet på 
nytt hver gang i stedet
+
 [B]4.4.7[/B]
 - Fikset direktestrømmer
 
diff --git a/plugin.video.nrk/data.py b/plugin.video.nrk/data.py
index 44abd6a..63e4ea7 100644
--- a/plugin.video.nrk/data.py
+++ b/plugin.video.nrk/data.py
@@ -31,6 +31,7 @@ session.headers['User-Agent'] = 'xbmc.org'
 xhrsession = requests.session()
 xhrsession.headers['User-Agent'] = 'xbmc.org'
 xhrsession.headers['X-Requested-With'] = 'XMLHttpRequest'
+xhrsession.headers['Cookie'] = 
NRK_PLAYER_SETTINGS_TV=devicetype=desktoppreferred-player-odm=hlslinkpreferred-player-live=hlslink
 
 
 def get_by_letter(arg):
@@ -61,6 +62,13 @@ def _parse_list(html):
   return titles, urls, thumbs, fanart
 
 
+def get_live_stream(ch):
+  url = http://tv.nrk.no/direkte/nrk%s; % ch
+  html = xhrsession.get(url).text
+  url = parseDOM(html, 'div', {'id':'playerelement'}, ret='data-media')[0]
+  img = parseDOM(html, 'img', {'class':'poster'}, ret='src')[0]
+  return url, img
+
 def get_recommended():
   url = http://tv.nrk.no/;
   html = xhrsession.get(url).text
diff --git a/plugin.video.nrk/default.py b/plugin.video.nrk/default.py
index cd30551..aa43467 100644
--- a/plugin.video.nrk/default.py
+++ b/plugin.video.nrk/default.py
@@ -39,9 +39,11 @@ def view_top():
 
 @plugin.route('/live')
 def live():
-  add(NRK 1, http://nrk1-i.akamaihd.net/hls/live/213271/nrk1/master.m3u8;, 
application/vnd.apple.mpegurl, nrk1.png)
-  add(NRK 2, http://nrk2-i.akamaihd.net/hls/live/213272/nrk2/master.m3u8;, 
application/vnd.apple.mpegurl, nrk2.png)
-  add(NRK 3, http://nrk3-i.akamaihd.net/hls/live/213273/nrk3/master.m3u8;, 
application/vnd.apple.mpegurl, nrk3.png)
+  import data
+  res = os.path.join(plugin.path, resources/images)
+  for ch in [1,2,3]:
+url, fanart = data.get_live_stream(ch)
+add(NRK %s % ch, url, application/vnd.apple.mpegurl, os.path.join(res, 
nrk%d.png % ch), fanart)
   add(NRK P1, http://lyd.nrk.no/nrk_radio_p1_ostlandssendingen_mp3_h;, 
audio/mpeg)
   add(NRK P2, http://lyd.nrk.no/nrk_radio_p2_mp3_h;, audio/mpeg)
   add(NRK P3, http://lyd.nrk.no/nrk_radio_p3_mp3_h;, audio/mpeg)
@@ -58,12 +60,10 @@ def live():
   add(Super, http://lyd.nrk.no/nrk_radio_super_mp3_h;, audio/mpeg)
   endOfDirectory(plugin.handle)
 
-def add(title, url, mimetype, thumb=):
-  if thumb:
-img_path = os.path.join(plugin.path, resources/images)
-thumb = os.path.join(img_path, thumb)
+def add(title, url, mimetype, thumb=, fanart=):
   li =  ListItem(title, thumbnailImage=thumb)
   li.setProperty('mimetype', mimetype)
+  li.setProperty('fanart_image', fanart)
   addDirectoryItem(plugin.handle, url, li, False)
 
 def view(titles, urls, thumbs=repeat(''), bgs=repeat(''), descr=repeat(''), 
update_listing=False):

---

Summary of changes:
 plugin.video.nrk/addon.xml |2 +-
 plugin.video.nrk/changelog.txt |3 +++
 plugin.video.nrk/data.py   |8 
 plugin.video.nrk/default.py|   14 +++---
 4 files changed, 19 insertions(+), 8 deletions(-)


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


Re: [Xbmc-addons] [git pull] plugin.video.nrk

2013-07-01 Thread Kibje
On Wed, Jun 26, 2013 at 3:03 PM, takoi ta...@substep.org wrote:

 * addon: plugin.video.nrk
 * version: 4.4.8
 * url: git://github.com/takoi/xbmc-addon-nrk.git
 * tag: v4.4.8
 * xbmc version: frodo


Updated, cheers

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] EpisodeHunter

2013-07-01 Thread Kibje
On Wed, Jun 26, 2013 at 9:27 PM, Oskar Karlsson i...@episodehunter.tvwrote:

 *addon - script.episodeHunter
 *version - 1.0.3
 *url - git://github.com/tjoskar/script.episodeHunter.git
 *revision - 5d023c2b8dc2fac18003ffdfac4db06295dfdbfe
 *branch - master
 *xbmc version - frodo


Updated, cheers

kibje

ps: For next months version, the correct spelling is 'response' :P
--
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


[Xbmc-addons] Scripts branch, frodo, updated. ce70dbb7e389e7ff6a349b129176c7548b3989ea

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  ce70dbb7e389e7ff6a349b129176c7548b3989ea (commit)
  from  35401834f23baba830cb272cdf9df950041b51f7 (commit)

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


---

Summary of changes:
 script.episodeHunter/LICENSE.txt   |  282 +
 script.episodeHunter/README.md |   12 +
 script.episodeHunter/ToDo  |   11 +
 script.episodeHunter/addon.py  |  308 +++
 script.episodeHunter/addon.xml |   28 ++
 script.episodeHunter/changelog.txt |   42 +++
 script.episodeHunter/connection.py |  199 
 script.episodeHunter/database.py   |  130 
 script.episodeHunter/default.py|   32 ++
 script.episodeHunter/fanart.jpg|  Bin 0 - 1115722 bytes
 script.episodeHunter/helper.py |   83 +
 script.episodeHunter/httpconn.py   |   43 +++
 script.episodeHunter/icon.png  |  Bin 0 - 4769 bytes
 .../resources/language/English/strings.xml |   60 
 script.episodeHunter/resources/lib/README.md   |4 +
 script.episodeHunter/resources/media/README.md |4 +
 script.episodeHunter/resources/settings.xml|   13 +
 script.episodeHunter/sqlite.db |  Bin 0 - 5120 bytes
 script.episodeHunter/sync.py   |  317 
 script.episodeHunter/xbmc_helper.py|  178 +++
 20 files changed, 1746 insertions(+), 0 deletions(-)
 create mode 100644 script.episodeHunter/LICENSE.txt
 create mode 100644 script.episodeHunter/README.md
 create mode 100644 script.episodeHunter/ToDo
 create mode 100644 script.episodeHunter/addon.py
 create mode 100644 script.episodeHunter/addon.xml
 create mode 100644 script.episodeHunter/changelog.txt
 create mode 100644 script.episodeHunter/connection.py
 create mode 100644 script.episodeHunter/database.py
 create mode 100644 script.episodeHunter/default.py
 create mode 100644 script.episodeHunter/fanart.jpg
 create mode 100644 script.episodeHunter/helper.py
 create mode 100644 script.episodeHunter/httpconn.py
 create mode 100644 script.episodeHunter/icon.png
 create mode 100644 script.episodeHunter/resources/language/English/strings.xml
 create mode 100644 script.episodeHunter/resources/lib/README.md
 create mode 100644 script.episodeHunter/resources/media/README.md
 create mode 100644 script.episodeHunter/resources/settings.xml
 create mode 100644 script.episodeHunter/sqlite.db
 create mode 100644 script.episodeHunter/sync.py
 create mode 100644 script.episodeHunter/xbmc_helper.py


hooks/post-receive
-- 
Scripts

--
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


[Xbmc-addons] Plugins branch, eden, updated. 2176c872dafbe8ea8bce6634ae8f767ca95cfcae

2013-07-01 Thread Kibje
The branch, eden has been updated
   via  2176c872dafbe8ea8bce6634ae8f767ca95cfcae (commit)
  from  7dafd44f165bb726eaae2ac7c87fbd3a092f1aaf (commit)

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

commit 2176c872dafbe8ea8bce6634ae8f767ca95cfcae
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 12:05:51 2013 +0200

[plugin.video.attactv] updated to version 1.0.1

diff --git a/plugin.video.attactv/addon.xml b/plugin.video.attactv/addon.xml
index 2e83c14..9193f60 100644
--- a/plugin.video.attactv/addon.xml
+++ b/plugin.video.attactv/addon.xml
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=UTF-8?
-addon id=plugin.video.attactv name=attac tv version=1.0.0 
provider-name=jamontes
+addon id=plugin.video.attactv name=attac tv version=1.0.1 
provider-name=jamontes
 requires
 import addon=xbmc.python version=2.0/
 import addon=plugin.video.youtube version=3.4.1/
@@ -20,5 +20,8 @@
 summary lang=deATTAC TV. Ein weiterer TV ist möglich./summary
 description lang=deATTAC ist eine internationale Organisation, die 
zur globalisierungskritischen Bewegung gehört. Wir kämpfen gegen die freie 
Globalisierung und arbeiten an sozialen, ökologischen und demokratischen 
Alternativen, um die Grundrechte für alle zu sichern. Wir setzen uns im 
Besonderen für die Regulierung der Finanzmärkte ein, für die Schließung der 
Steuerparadiese, die Einführung einer globalen Abgabe zur weltweiten 
Finanzierung des Allgemeinguts, für die Streichung aller Schulden der 
Entwicklungsländer, für einen gerechten Handel und die Einführung von 
Grenzwerten für den freien Handel und Kapitalbewegungen.[CR]Dieses plugin 
erlaubt es, die videos und documentals aus dem ATTAC TV website zu 
sehen./description
 languageen es fr de/language
+licenseGNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007/license
+forumhttp://forum.xbmc.org/showthread.php?tid=155306/forum
+sourcehttps://github.com/jamontes/plugin.video.attactv/source
 /extension
 /addon
diff --git a/plugin.video.attactv/changelog.txt 
b/plugin.video.attactv/changelog.txt
index 8f2f452..5d5f947 100644
--- a/plugin.video.attactv/changelog.txt
+++ b/plugin.video.attactv/changelog.txt
@@ -1,3 +1,6 @@
+1.0.1
+- Added Add-on optional tags and forum support thread.
+- Fix for default language settings on first run.
 1.0.0
 - First official Eden release for repository.
 0.0.9
diff --git a/plugin.video.attactv/default.py b/plugin.video.attactv/default.py
index 0f7310d..c010ce6 100644
--- a/plugin.video.attactv/default.py
+++ b/plugin.video.attactv/default.py
@@ -38,7 +38,12 @@ language_list = ('system', 'es', 'en', 'fr', 'de')
 trans_language = {'Spanish' : 'es', 'English' : 'en', 'French' : 'fr', 
'German' : 'de'}
 
 # Language gets the the proper value from language_list
-language = language_list[int(language_id)]
+try:
+language = language_list[int(language_id)]
+except:
+lutil.log(attactv.main Warning: language not defined. fixed to 0)
+settings.setSetting(language, 0)
+language = language_list[0]
 
 if language == 'system':
 # We need to get the system language used by the GUI.
diff --git a/plugin.video.attactv/resources/settings.xml 
b/plugin.video.attactv/resources/settings.xml
index 6a397ee..6e71145 100644
--- a/plugin.video.attactv/resources/settings.xml
+++ b/plugin.video.attactv/resources/settings.xml
@@ -1,4 +1,5 @@
+?xml version=1.0 encoding=utf-8 standalone=yes?
 settings
-   setting id=language type=enum label=30101 values=System 
default|ES|EN|FR|DE/
+   setting id=language type=enum label=30101 values=System 
default|ES|EN|FR|DE default=System default/
setting id=debug type=bool label=30102 default=false/
 /settings

---

Summary of changes:
 plugin.video.attactv/addon.xml  |5 -
 plugin.video.attactv/changelog.txt  |3 +++
 plugin.video.attactv/default.py |7 ++-
 plugin.video.attactv/resources/settings.xml |3 ++-
 4 files changed, 15 insertions(+), 3 deletions(-)


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


Re: [Xbmc-addons] [Git Pull] plugin.video.attactv v1.0.1 (Eden) and v1.1.1 (Frodo) - Update

2013-07-01 Thread Kibje

 * addon - plugin.video.attactv
 * version - 1.0.1
 * url - git://github.com/jamontes/plugin.video.attactv.git
 * revision - eaa4ef05682c430ba0890c2fa337630819f3eeba
 * branch - eden
 * xbmc version - eden

 * addon - plugin.video.attactv
 * version - 1.1.1
 * url - git://github.com/jamontes/plugin.video.attactv.git
 * revision - 04f69ef118857c65be3e21c4273d7f49865e6448
 * branch - frodo
 * xbmc version - frodo


Updated both, cheers

kibje
--
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


[Xbmc-addons] Plugins branch, frodo, updated. 547d1711c7af80e8aaa5d28a386f024d83357515

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  547d1711c7af80e8aaa5d28a386f024d83357515 (commit)
  from  30d3b6a7a8bf307e590e97389ddf1eda53deced1 (commit)

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

commit 547d1711c7af80e8aaa5d28a386f024d83357515
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 12:09:38 2013 +0200

[plugin.video.attactv] updated to version 1.1.1

diff --git a/plugin.video.attactv/addon.xml b/plugin.video.attactv/addon.xml
index b06da6a..bf44b44 100644
--- a/plugin.video.attactv/addon.xml
+++ b/plugin.video.attactv/addon.xml
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=UTF-8?
-addon id=plugin.video.attactv name=attac tv version=1.1.0 
provider-name=jamontes
+addon id=plugin.video.attactv name=attac tv version=1.1.1 
provider-name=jamontes
 requires
 import addon=xbmc.python version=2.1.0/
 import addon=plugin.video.youtube version=4.4.1/
@@ -20,5 +20,8 @@
 summary lang=deATTAC TV. Ein weiterer TV ist möglich./summary
 description lang=deATTAC ist eine internationale Organisation, die 
zur globalisierungskritischen Bewegung gehört. Wir kämpfen gegen die freie 
Globalisierung und arbeiten an sozialen, ökologischen und demokratischen 
Alternativen, um die Grundrechte für alle zu sichern. Wir setzen uns im 
Besonderen für die Regulierung der Finanzmärkte ein, für die Schließung der 
Steuerparadiese, die Einführung einer globalen Abgabe zur weltweiten 
Finanzierung des Allgemeinguts, für die Streichung aller Schulden der 
Entwicklungsländer, für einen gerechten Handel und die Einführung von 
Grenzwerten für den freien Handel und Kapitalbewegungen.[CR]Dieses plugin 
erlaubt es, die videos und documentals aus dem ATTAC TV website zu 
sehen./description
 languageen es fr de/language
+licenseGNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007/license
+forumhttp://forum.xbmc.org/showthread.php?tid=155306/forum
+sourcehttps://github.com/jamontes/plugin.video.attactv/source
 /extension
 /addon
diff --git a/plugin.video.attactv/changelog.txt 
b/plugin.video.attactv/changelog.txt
index c7048da..5f875a5 100644
--- a/plugin.video.attactv/changelog.txt
+++ b/plugin.video.attactv/changelog.txt
@@ -1,3 +1,6 @@
+1.1.1
+- Added Add-on optional tags and forum support thread.
+- Fix for default language settings on first run.
 1.1.0
 - Added branch for Frodo repository.
 - Updated versions of plugin dependencies.
diff --git a/plugin.video.attactv/default.py b/plugin.video.attactv/default.py
index 0f7310d..c010ce6 100644
--- a/plugin.video.attactv/default.py
+++ b/plugin.video.attactv/default.py
@@ -38,7 +38,12 @@ language_list = ('system', 'es', 'en', 'fr', 'de')
 trans_language = {'Spanish' : 'es', 'English' : 'en', 'French' : 'fr', 
'German' : 'de'}
 
 # Language gets the the proper value from language_list
-language = language_list[int(language_id)]
+try:
+language = language_list[int(language_id)]
+except:
+lutil.log(attactv.main Warning: language not defined. fixed to 0)
+settings.setSetting(language, 0)
+language = language_list[0]
 
 if language == 'system':
 # We need to get the system language used by the GUI.
diff --git a/plugin.video.attactv/resources/settings.xml 
b/plugin.video.attactv/resources/settings.xml
index 6a397ee..6e71145 100644
--- a/plugin.video.attactv/resources/settings.xml
+++ b/plugin.video.attactv/resources/settings.xml
@@ -1,4 +1,5 @@
+?xml version=1.0 encoding=utf-8 standalone=yes?
 settings
-   setting id=language type=enum label=30101 values=System 
default|ES|EN|FR|DE/
+   setting id=language type=enum label=30101 values=System 
default|ES|EN|FR|DE default=System default/
setting id=debug type=bool label=30102 default=false/
 /settings

---

Summary of changes:
 plugin.video.attactv/addon.xml  |5 -
 plugin.video.attactv/changelog.txt  |3 +++
 plugin.video.attactv/default.py |7 ++-
 plugin.video.attactv/resources/settings.xml |3 ++-
 4 files changed, 15 insertions(+), 3 deletions(-)


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


Re: [Xbmc-addons] [SVN Pull] PreviewNetworks - Update

2013-07-01 Thread Kibje
On Thu, Jun 27, 2013 at 11:50 AM, Nicola Mazzariello nm...@tiscali.itwrote:

 *addon - plugin.video.previewnetworks
 *version - 2.3.3
 *url -
 http://previewnetworks-xbmc-plugin.googlecode.com/svn/trunk/plugin.video.previewnetworks/
 *revision - 29
 *xbmc version - frodo


Updated, cheers

kibje
--
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


[Xbmc-addons] Plugins branch, frodo, updated. 7ff2d469530c06aae3fa08e98da9da96561f80ff

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  7ff2d469530c06aae3fa08e98da9da96561f80ff (commit)
  from  547d1711c7af80e8aaa5d28a386f024d83357515 (commit)

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

commit 7ff2d469530c06aae3fa08e98da9da96561f80ff
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 12:13:18 2013 +0200

[plugin.video.previewnetworks] updated to version 2.3.3

diff --git a/plugin.video.previewnetworks/addon.xml 
b/plugin.video.previewnetworks/addon.xml
index 68a4fa5..e04d7a2 100644
--- a/plugin.video.previewnetworks/addon.xml
+++ b/plugin.video.previewnetworks/addon.xml
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes?
 addon id=plugin.video.previewnetworks
name=Preview Networks
-   version=2.3.2
+   version=2.3.3
provider-name=nmazz64
 requires
 import addon=xbmc.python version=2.1.0/
diff --git a/plugin.video.previewnetworks/changelog.txt 
b/plugin.video.previewnetworks/changelog.txt
index 4b189ad..cf08232 100644
--- a/plugin.video.previewnetworks/changelog.txt
+++ b/plugin.video.previewnetworks/changelog.txt
@@ -1,3 +1,6 @@
+[B]2.3.3[/B]
+- same bug fix and other optimizations
+
 [B]2.3.2[/B]
 - optimizations to reduce the timing for download the list of video preview
 
@@ -8,7 +11,9 @@
 - compatibility changes for Frodo beta
 
 [B]2.2.1[/B]
-- Same bugfix[B]2.2[/B]
+- Same bugfix
+
+[B]2.2[/B]
 - Solved the DownloadView option
 
 [B]2.1[/B]
diff --git a/plugin.video.previewnetworks/default.py 
b/plugin.video.previewnetworks/default.py
index 0b879f7..5d85335 100644
--- a/plugin.video.previewnetworks/default.py
+++ b/plugin.video.previewnetworks/default.py
@@ -1,5 +1,5 @@
 
-Plugin for streaming Preview network 
+Plugin for streaming Preview network
 
 
 # main imports
@@ -21,7 +21,7 @@ __author__ = nmazz64
 __url__ = http://code.google.com/p/previewnetworks-xbmc-plugin;
 __svn_url__ = 
http://previewnetworks-xbmc-plugin.googlecode.com/svn/trunk/plugin.video.previewnetworks/;
 __useragent__ = QuickTime/7.6.5 (qtver=7.6.5;os=Windows NT 5.1Service Pack 3)
-__version__ = 2.3.2
+__version__ = 2.3.3
 __svn_revision__ = $Revision: 0$
 __XBMC_Revision__ = 31633
 __Channel_ID__ = 391100379-1
@@ -52,8 +52,9 @@ def categories(root):
 next_icon = os.path.join(Addon.getAddonInfo('path'), 'resources','images', 
'next.png')
 genre_icon = os.path.join(Addon.getAddonInfo('path'), 
'resources','images', 'genre.png')
 search_icon = os.path.join(Addon.getAddonInfo('path'), 
'resources','images', 'search.png')
-##   baseurl=http://%s.feed.previewnetworks.com/v3.1/%s/;
-baseurl=http://%s.hdplus.previewnetworks.com/v3.1/%s/;
+#baseurl=http://%s.feed.previewnetworks.com/v3.1/%s/;
+#baseurl=http://%s.hdplus.previewnetworks.com/v3.1/%s/;
+baseurl=http://%s.%s.previewnetworks.com/v3.1/%s/;
 
 if root:
 addDir(Addon.getLocalizedString(30301),baseurl+'now-%s/%s',1,now_icon)
@@ -62,35 +63,34 @@ def categories(root):
 addDir(Addon.getLocalizedString(30300),'genre:',0,genre_icon)
 
addDir(Addon.getLocalizedString(30340),baseurl+'search-%s/%s/?search_field=product_titlesearch_query=%s',99,search_icon)
 else:
-
addDir(Addon.getLocalizedString(30304),baseurl+'CinemaAction/%s',10,icona)
-
addDir(Addon.getLocalizedString(30305),baseurl+'CinemaAdventure/%s',11,icona)
-
addDir(Addon.getLocalizedString(30306),baseurl+'CinemaAnimation/%s',12,icona)
-
addDir(Addon.getLocalizedString(30307),baseurl+'CinemaBiography/%s',13,icona)
-
addDir(Addon.getLocalizedString(30308),baseurl+'CinemaComedy/%s',14,icona)
-
addDir(Addon.getLocalizedString(30309),baseurl+'CinemaCrime/%s',15,icona)
-
addDir(Addon.getLocalizedString(30310),baseurl+'CinemaDocumentary/%s',16,icona)
-
addDir(Addon.getLocalizedString(30311),baseurl+'CinemaDrama/%s',17,icona)
-
addDir(Addon.getLocalizedString(30312),baseurl+'CinemaFamily/%s',18,icona)
-
addDir(Addon.getLocalizedString(30313),baseurl+'CinemaFantasy/%s',19,icona)
-
addDir(Addon.getLocalizedString(30314),baseurl+'CinemaFilmNoir/%s',20,icona)
-
addDir(Addon.getLocalizedString(30315),baseurl+'CinemaGameShow/%s',21,icona)
-
addDir(Addon.getLocalizedString(30316),baseurl+'CinemaHistory/%s',22,icona)
-
addDir(Addon.getLocalizedString(30317),baseurl+'CinemaHorror/%s',23,icona)
-
addDir(Addon.getLocalizedString(30318),baseurl+'CinemaMusic/%s',24,icona)
-
addDir(Addon.getLocalizedString(30319),baseurl+'CinemaMusical/%s',25,icona)
-
addDir(Addon.getLocalizedString(30320),baseurl+'CinemaMystery/%s',26,icona)
-
addDir(Addon.getLocalizedString(30321),baseurl+'CinemaNews/%s',27,icona)
-
addDir(Addon.getLocalizedString(30322),baseurl+'CinemaRealityTV/%s',28,icona)
-
addDir(Addon.getLocalizedString(30323

Re: [Xbmc-addons] [Git Pull] script.trakt

2013-07-01 Thread Kibje
On Thu, Jun 27, 2013 at 7:37 PM, Justin Nemeth jus...@trakt.tv wrote:

 Just realized the original pull request email formatting was all messed
 up. Fixed below.

 *addon - script.trakt
 *version - 2.3.0
 *url - git://github.com/rectifyer/script.trakt.git
 *revision - 07131b41e5249b8e1e3ab1da627d187adc3e6a58
 *branch - master
 *xbmc version - frodo


Sorry but I can't push this.
* There is a *thumbs.db* included in your changes and there are
windows-style line endings in *
script.trakt/resources/language/Polish/strings.xml*
*
*
Kibje
--
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


[Xbmc-addons] Plugins branch, frodo, updated. c86258fa9ddea6a9fab7ea89e0186499433d5cf3

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  c86258fa9ddea6a9fab7ea89e0186499433d5cf3 (commit)
  from  7ff2d469530c06aae3fa08e98da9da96561f80ff (commit)

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

commit c86258fa9ddea6a9fab7ea89e0186499433d5cf3
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 12:38:12 2013 +0200

[plugin.image.moebooru] updated to version 0.8.0

diff --git a/plugin.image.moebooru/addon.xml b/plugin.image.moebooru/addon.xml
index ee8566e..18f1bbd 100644
--- a/plugin.image.moebooru/addon.xml
+++ b/plugin.image.moebooru/addon.xml
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes?
 addon id=plugin.image.moebooru
name=Moebooru
-   version=0.5.0
+   version=0.8.0
provider-name=Markus Koch
   requires
 import addon=xbmc.python version=2.1.0/
diff --git a/plugin.image.moebooru/changelog.txt 
b/plugin.image.moebooru/changelog.txt
index 586bceb..1674714 100644
--- a/plugin.image.moebooru/changelog.txt
+++ b/plugin.image.moebooru/changelog.txt
@@ -1,14 +1,26 @@
 ## Version history ##
+### 0.8 Beta ###
+2013-06-20  Added sorting options for tags
+Various bugfixes
+### 0.7 Beta ###
+2013-06-15  Added related tags for tags
+2013-06-16  Added the search for tags
+Search will be automatically invoked if no images were 
retrieved
+### 0.6 Beta ###
+2013-06-04  Fixed random
+Added installation instructions
+2013-06-14  Added a function to show the tags of the image to the context 
menu
+2013-06-15  Added preview images for related tags
 ### 0.5 Beta ###
-2013-05-29  Fixed an error requiring the user to reenter the search query 
when using the slideshow button.
+2013-05-29  Fixed an error requiring the user to reenter the search query 
when using the slideshow button
 ### 0.4 Beta ###
 2013-05-20  Updated translation system
 Various bugfixes
 Added the German translation
 ### 0.3 Beta ###
+2013-05-19  Various bugfixes and optimizations
 2013-05-20  Added proper icons
 Added a fanart
-2013-05-19  Various bugfixes and optimizations
 ### 0.2 Beta ###
 2013-04-01  Added default search parameters (rating and order)
 2013-04-03  Finished the pools
diff --git a/plugin.image.moebooru/default.py b/plugin.image.moebooru/default.py
index a1655be..057d3ce 100644
--- a/plugin.image.moebooru/default.py
+++ b/plugin.image.moebooru/default.py
@@ -14,7 +14,24 @@ language = __settings__.getLocalizedString
 
 IMAGE_PATH = 
os.path.join(xbmc.translatePath(__settings__.getAddonInfo('path')),'resources','images')
 SHISTORY_PATH = 
os.path.join(xbmc.translatePath(__settings__.getAddonInfo('profile')),'search_history')
-SHISTORY_DATASEP = '%preview_img%'
+SHISTORY_DATASEP = '#preview_img#'
+
+_MODE_LATEST = 1
+_MODE_SEARCH = 2
+_MODE_RANDOM = 3
+_MODE_POOLS = 4
+_MODE_POOL = 5
+_MODE_HISTORY = 6
+_MODE_ADVSEARCH = 7
+_MODE_TAGS = 8
+
+_MODE_IMAGE = 100
+
+_GETREL = #gEtReL# # Needs to be 8 characters and must not be a valid tag
+_GETUSR = #gEtUsR#
+
+_REF_HISTORY = 1
+_REF_TAGLIST = 2
 
 # Make profile dir on first startup
 if not 
os.path.exists(xbmc.translatePath(__settings__.getAddonInfo('profile'))):
@@ -25,6 +42,7 @@ class moebooruApi:
 def __init__(self):
 self.pRating = [, safe, questionable, explicit, 
questionableplus, questionableless]
 self.pOrder = [, score, fav, wide, nonwide]
+self.pTagOrder = [, date, count, name]
 
 def getAdvSearch(self, search):
 advSettings = 
@@ -36,9 +54,9 @@ class moebooruApi:
 advSettings +=  rating: + 
self.pRating[int(__settings__.getSetting('rating'))]
 return advSettings
 
-def getImages(self, search, page=1):
+def getImages(self, search, page=1, epp=__settings__.getSetting('epp')):
 result = []
-raw_result = urllib.urlopen(__settings__.getSetting('server') + 
/post.json + ?tags= + urllib.quote_plus(str(search) + 
self.getAdvSearch(search)) + limit= + str(__settings__.getSetting('epp')) + 
page= + str(page))
+raw_result = urllib.urlopen(__settings__.getSetting('server') + 
/post.json + ?tags= + urllib.quote_plus(str(search) + 
self.getAdvSearch(search)) + limit= + str(epp) + page= + str(page))
 json = simplejson.loads(raw_result.read())
 return json
 
@@ -55,39 +73,59 @@ class moebooruApi:
 return result
 
 def getImageCount(self, search=): # Since the JSON answer doesn't 
include the total post count we need to parse XML.
-raw_result = urllib.urlopen(__settings__.getSetting('server') + 
/post.xml + ?limit=1query= + urllib.quote_plus(str(search) + 
self.getAdvSearch(search)))
+raw_result = urllib.urlopen(__settings__.getSetting('server') + 
/post.xml + ?limit=1tags

Re: [Xbmc-addons] [ZIP Pull] plugin.image.moebooru

2013-07-01 Thread Kibje
 *addon - plugin.image.moebooru
 *version - 0.8.0
 *url -

 https://bitbucket.org/C_Classic/xbmc.plugin.image.moebooru/downloads/plugin.image.moebooru-0.8.0.zip
 *xbmc version - Frodo


Updated, cheers

kibje
--
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


Re: [Xbmc-addons] [Git Pull] script.module.addon.common

2013-07-01 Thread Kibje
On Sat, Jun 29, 2013 at 4:58 PM, Mike M mjm...@hotmail.com wrote:

 This is a rename of script.module.t0mm0.common with a couple small changes
 that would have otherwise broken existing addons

 Purpose is mainly to rename the module with a more generic name, and start
 adding new features without affecting other addons using the old
 t0mm0.common

 Let me know if this is ok, we would like t0mm0.common to remain for a
 small period of time

  * addon - script.module.addon.common
 * version - 2.0.0
 * url - git://github.com/Eldorados/script.module.addon.common.git
 * revision - 9f9a167c666259bfc9b19f77cbb7cfdd1c2611ce
 * branch - master
 * xbmc version - frodo


 Is it still possible to add to the Eden repo?

 * addon - script.module.addon.common
 * version - 1.0.0
 * url - git://github.com/Eldorados/script.module.addon.common.git
 * revision - aa76897a8678a6befac9394bdab707048b39a1e1
 * branch - eden
 * xbmc version - eden

 Hi,

I have no problem with a different name for this addon because of changes
to the core functionality and to prevent breaking of addons.
I presume you will contact the addons using your addon and direct them to
start the new version whenever possible.

However, I can't push this script as it is now, because it is missing a
(required) language tag.
If you could correct this and resend a request I'll process it.

Sincerely,

Kibje
--
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


[Xbmc-addons] Scripts branch, frodo, updated. 26125b5b0b09d8f04417f0472e576a144ba2cc07

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  26125b5b0b09d8f04417f0472e576a144ba2cc07 (commit)
  from  ce70dbb7e389e7ff6a349b129176c7548b3989ea (commit)

- Log -
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=26125b5b0b09d8f04417f0472e576a144ba2cc07

commit 26125b5b0b09d8f04417f0472e576a144ba2cc07
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 12:44:56 2013 +0200

[service.script.isyevents] updated to version 0.2.1

diff --git a/service.script.isyevents/ISYevents.py 
b/service.script.isyevents/ISYevents.py
index e4a4b5a..3b83ac3 100644
--- a/service.script.isyevents/ISYevents.py
+++ b/service.script.isyevents/ISYevents.py
@@ -29,7 +29,7 @@
 
 # CONSTANTS
 __author__ = 'Humble Robot'
-__version__ = '0.2.0'
+__version__ = '0.2.1'
 __url__ = 'https://code.google.com/p/isy-events/'
 __date__ = '4/2013'
 
@@ -38,6 +38,7 @@ __date__ = '4/2013'
 import sys
 # xbmc
 import xbmcaddon
+import xbmcgui
 
 # fetch addon information
 isy_events = xbmcaddon.Addon('service.script.isyevents')
@@ -61,7 +62,7 @@ password = isy_browse.getSetting('password')
 host = isy_browse.getSetting('host')
 port = int(isy_browse.getSetting('port'))
 usehttps = isy_browse.getSetting('usehttps') == 'true'
- 
+
 # open isy connection
 isy = pyisy.open(username, password, host, port, usehttps)
 # verify isy opened correctly
@@ -70,32 +71,44 @@ if isy.__dummy__:
 message = log.translator(35002)
 xbmc.executebuiltin('Notification(' + header + ',' + message + ', 15000)')
 
+# check last version run
+last_ver = isy_events.getSetting('last_run_ver')
+if last_ver != __version__:
+header = log.translator(36000)
+message = [log.translator(36001), log.translator(36002), 
log.translator(36003)]
+xbmcgui.Dialog().ok(header, message[0], message[1], message[2])
+isy_events.setSetting('last_run_ver', __version__)
+
 # create xbmc event handler
 xEvents = xb_events.xbmcEvents()
 # add handlers
 node_events = {
-'onStart': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_xbmc_start'), 
isy_events.getSetting('devact_xbmc_start')),
-'onQuit': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_xbmc_quit'), 
isy_events.getSetting('devact_xbmc_quit')),
-'onPlayMovie': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_video_start'), 
isy_events.getSetting('devact_video_start')),
-'onStopMovie': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_video_end'), 
isy_events.getSetting('devact_video_end')),
-'onPauseMovie': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_video_pause'), 
isy_events.getSetting('devact_video_pause')),
-'onResumeMovie': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_video_resume'), 
isy_events.getSetting('devact_video_resume')),
-'onPlayMusic': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_audio_start'), 
isy_events.getSetting('devact_audio_start')),
-'onStopMusic': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_audio_end'), 
isy_events.getSetting('devact_audio_end')),
-'onPauseMusic': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_audio_pause'), 
isy_events.getSetting('devact_audio_pause')),
-'onResumeMusic': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_audio_resume'), 
isy_events.getSetting('devact_audio_resume'))}
+'onStart': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_xbmc_start'),
+'onQuit': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_xbmc_quit'),
+'onScreenSaverOn': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_xbmc_sson'),
+'onScreenSaverOff': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_xbmc_ssoff'),
+'onPlayMovie': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_video_start'),
+'onStopMovie': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_video_end'),
+'onPauseMovie': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_video_pause'),
+'onResumeMovie': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_video_resume'),
+'onPlayMusic': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_audio_start'),
+'onStopMusic': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_audio_end'),
+'onPauseMusic': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_audio_pause'),
+'onResumeMusic': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_audio_resume')}
 xEvents.AddHandlers(node_events)
 program_events ={
-'onStart': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('prog_xbmc_start'), 
isy_events.getSetting('progact_xbmc_start')),
-'onQuit': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('prog_xbmc_quit'), 
isy_events.getSetting('progact_xbmc_quit')),
-'onPlayMovie': event_actions.ParseActionSettings(isy

Re: [Xbmc-addons] [SVN Pull] service.script.isyevents

2013-07-01 Thread Kibje
On Thu, Jun 27, 2013 at 2:14 AM, Ryan Kraus rmkr...@gmail.com wrote:

 *addon -   service.script.isyevents
 *version - 0.2.1
 *url -
 https://isy-events.googlecode.com/svn/trunk/service.script.isyevents
 *revision - 47
 *branch - master
 *xbmc version - frodo


Updated it, cheers

Kibje

ps. your code looked a lot better than the pull request ;)
--
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


[Xbmc-addons] Plugins branch, frodo, updated. d6e3628df8f0f97d5ac85738decde96c385f413d

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  d6e3628df8f0f97d5ac85738decde96c385f413d (commit)
  from  c86258fa9ddea6a9fab7ea89e0186499433d5cf3 (commit)

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

commit d6e3628df8f0f97d5ac85738decde96c385f413d
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 12:54:54 2013 +0200

[plugin.video.orftvthek] updated to version 0.1.3

diff --git a/plugin.video.orftvthek/addon.xml b/plugin.video.orftvthek/addon.xml
index c7b3602..17707a3 100755
--- a/plugin.video.orftvthek/addon.xml
+++ b/plugin.video.orftvthek/addon.xml
@@ -1,8 +1,9 @@
 ?xml version=1.0 encoding=UTF-8?
-addon id=plugin.video.orftvthek name=ORF TVthek version=0.1.2 
provider-name=sofaking
+addon id=plugin.video.orftvthek name=ORF TVthek version=0.1.3 
provider-name=sofaking
 requires
 import addon=xbmc.python version=2.1.0/
 import addon=script.module.beautifulsoup/
+   import addon=script.common.plugin.cache version=0.9.1/
 /requires
 extension point=xbmc.python.pluginsource library=default.py
 providesvideo/provides
diff --git a/plugin.video.orftvthek/changelog.txt 
b/plugin.video.orftvthek/changelog.txt
index db5cda7..bab7b63 100755
--- a/plugin.video.orftvthek/changelog.txt
+++ b/plugin.video.orftvthek/changelog.txt
@@ -1,3 +1,8 @@
+0.1.3
+- added Search function
+- fixed the low resolution preview image problem
+- added History for Search function
+
 0.1.2
 - fixed bad view mode on aeon nox
 - added force view option
diff --git a/plugin.video.orftvthek/default.py 
b/plugin.video.orftvthek/default.py
index 461701e..2ef3622 100755
--- a/plugin.video.orftvthek/default.py
+++ b/plugin.video.orftvthek/default.py
@@ -8,11 +8,16 @@ import urlparse
 import os.path
 from xml.dom import Node;
 from xml.dom import minidom;
+try:
+   import StorageServer
+except:
+   import storageserverdummy as StorageServer
+cache = StorageServer.StorageServer(plugin.video.orftvthek, 99)
 
-version = 0.1.2
+version = 0.1.3
 plugin = ORF-TVthek- + version
 author = sofaking
-
+ 
 
 
 socket.setdefaulttimeout(30)
@@ -71,6 +76,15 @@ def 
createListItem(name,banner,summary,runtime,backdrop,videourl,playable,folder
backdrop = defaultbackdrop
 if banner == '':
banner = defaultbanner
+if /image1/ in banner:
+   if .jpeg in banner:
+  banner = banner.replace(/image1/,/image/)
+  newbanner = banner.split(/image/)
+  filename = newbanner[1]
+  
+  filename = filename.split(.jpeg)
+  number = int(filename[0])-2
+  banner = newbanner[0]+/image/+str(number)+.jpeg
 liz=xbmcgui.ListItem(cleanText(name), iconImage=banner, 
thumbnailImage=banner)
 liz.setInfo( type=Video, infoLabels={ Title: cleanText(name) } )
 liz.setInfo( type=Video, infoLabels={ Plot: cleanText(summary) } )
@@ -222,7 +236,11 @@ def getLinks(url,quality):
 flashVars = flashVarReg.findall(html)
 for flashVar in flashVars:
 xml = xmlVarRef.search(flashVar).group()
-image = %s/%s % (base_url,imgVarRef.search(html).group())
+try:
+   image = %s/%s % (base_url,imgVarRef.search(html).group())
+except:
+image = 
+pass
 flashDom = minidom.parseString(urllib.unquote(xml))
 asxurl = 
 asxUrls = flashDom.getElementsByTagName(AsxUrl)
@@ -275,6 +293,7 @@ def getMainMenu():
 addDirectory(Neu,defaultbanner,defaultbackdrop,,getNeu)
 addDirectory(Meist 
gesehen,defaultbanner,defaultbackdrop,,getMostViewed)
 addDirectory(Sendung 
verpasst?,defaultbanner,defaultbackdrop,,getArchiv)
+addDirectory(Suchen,defaultbanner,defaultbackdrop,,searchPhrase)
 xbmcplugin.setContent(pluginhandle,'episodes')
 xbmcplugin.endOfDirectory(pluginhandle)
 if forceView:
@@ -710,7 +729,104 @@ def getCategories():
 xbmcplugin.endOfDirectory(pluginhandle)
 if forceView:
 xbmc.executebuiltin(defaultViewMode)
+   
+
 
+def search():
+addDirectory(Suchen ...,defaultbanner,defaultbackdrop,,searchNew)
+cache.table_name = searchhistory
+some_dict = cache.get(searches).split(|)
+for str in reversed(some_dict):
+addDirectory(str,defaultbanner,defaultbackdrop,str.replace( 
,+),searchNew)
+xbmcplugin.setContent(pluginhandle,'episodes')
+xbmcplugin.endOfDirectory(pluginhandle)
+if forceView:
+   xbmc.executebuiltin(defaultViewMode)
+xbmcplugin.setPluginFanart(int(sys.argv[1]), defaultbackdrop, 
color2='0x3300')
+   
+def searchTV():
+keyboard = xbmc.Keyboard('')
+keyboard.doModal()
+if (keyboard.isConfirmed()):
+  cache.table_name = searchhistory
+  keyboard_in = keyboard.getText()
+  some_dict = cache.get(searches

Re: [Xbmc-addons] [GIT Pull] ORF TVthek

2013-07-01 Thread Kibje

  *addon -   plugin.video.orftvthek
  *version - 0.1.3
  *url - https://github.com/s0faking/plugin.video.orftvthek.git 
 http://webmail.lowfidelity.at/?_task=mail_action=preview_uid=834_mbox=INBOX.Sent_framed=1
  *revision - c8aa315f69
  *branch - master
  *xbmc version - frodo

 Updated, cheers

Kibje

ps. next time please insert a correct URL - this one redirects to a webmail
login which b0rked up the push script.
--
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


[Xbmc-addons] Scripts branch, frodo, updated. 336e55f928da8779702dfb50c272c26604874d10

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  336e55f928da8779702dfb50c272c26604874d10 (commit)
  from  26125b5b0b09d8f04417f0472e576a144ba2cc07 (commit)

- Log -
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=336e55f928da8779702dfb50c272c26604874d10


---

Summary of changes:
 .../LICENSE.txt|0
 .../addon.xml  |   16 ++--
 script.module.addon.common/changelog.txt   |4 ++
 .../lib/addon}/__init__.py |0
 .../lib/addon}/common/__init__.py  |0
 .../lib/addon}/common/addon.py |   40 +++
 .../lib/addon}/common/net.py   |4 +-
 7 files changed, 49 insertions(+), 15 deletions(-)
 copy {script.games.rom.collection.browser = 
script.module.addon.common}/LICENSE.txt (100%)
 copy {script.module.t0mm0.common = script.module.addon.common}/addon.xml (54%)
 create mode 100644 script.module.addon.common/changelog.txt
 copy {script.ace.extrapack/resources = 
script.module.addon.common/lib/addon}/__init__.py (100%)
 copy {script.module.t0mm0.common/lib/t0mm0 = 
script.module.addon.common/lib/addon}/common/__init__.py (100%)
 copy {script.module.t0mm0.common/lib/t0mm0 = 
script.module.addon.common/lib/addon}/common/addon.py (94%)
 copy {script.module.t0mm0.common/lib/t0mm0 = 
script.module.addon.common/lib/addon}/common/net.py (99%)


hooks/post-receive
-- 
Scripts

--
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


Re: [Xbmc-addons] [Git Pull] plugin.video.tweakers

2013-06-24 Thread Kibje [XBMC]
On Mon, Jun 24, 2013 at 6:00 AM, SkipmodeA1 skipmod...@outlook.com wrote:

 *addon - plugin.video.tweakers
 *version - 1.0.0
 *url - git://github.com/skipmodea1/plugin.video.tweakers.git
 *revision - 22ecb27b77d2b11a1ffeac81b9329b3f56a06816
 *branch - master
 *xbmc version - frodo


Pulled it in, congrats!

Kibje
--
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


Re: [Xbmc-addons] [SVN Pull] ISY Events

2013-06-24 Thread Kibje [XBMC]
On Sun, Jun 23, 2013 at 11:43 PM, Ryan Kraus rmkr...@gmail.com wrote:

 *addon -   plugin.program.isyevents
 *version - 0.2.1
 *url - https://isy-events.
 googlecode.com/svn/trunk/plugin.program.isyevents
 *revision - 47
 *branch - master
 *xbmc version - frodo


File not found.

I see you have both a plugin and a script there.
http://isy-events.googlecode.com/svn/trunk/plugin.program.isybrowse/
http://isy-events.googlecode.com/svn/trunk/service.script.isyevents/

Which one did you mean? - Please create a new mail with the correct addon
name and location !

Cheers,

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] plugin.video.teamhww

2013-06-24 Thread Kibje [XBMC]
On Mon, Jun 24, 2013 at 6:01 AM, SkipmodeA1 skipmod...@outlook.com wrote:

  *addon - plugin.video.teamhww

 *version - 1.0.1

 *url - git://github.com/skipmodea1/plugin.video.teamhww.git

 *revision - 6532a6aa5ae7a9f1b44112d875ab0a6640dc6b83

 *branch - master

 *xbmc version - frodo


Updated, cheers.

Kibje
--
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


[Xbmc-addons] Plugins branch, frodo, updated. 46d6a6160f55658e36f0cf3bd786b5496a405b1b

2013-06-24 Thread Kibje
The branch, frodo has been updated
   via  46d6a6160f55658e36f0cf3bd786b5496a405b1b (commit)
  from  cb6c44be2a0d8053d905734f0304bb3922b4cfe7 (commit)

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

commit 46d6a6160f55658e36f0cf3bd786b5496a405b1b
Author: kibje k...@xbmc.org
Date:   Mon Jun 24 15:06:27 2013 +0200

[plugin.video.neterratv] updated to version 2.0.1

diff --git a/plugin.video.neterratv/addon.xml b/plugin.video.neterratv/addon.xml
index 7daab35..5fe4338 100644
--- a/plugin.video.neterratv/addon.xml
+++ b/plugin.video.neterratv/addon.xml
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes?
-addon id=plugin.video.neterratv name=Neterra.TV version=2.0.0 
provider-name=mr.o...@gmail.com
+addon id=plugin.video.neterratv name=Neterra.TV version=2.0.1 
provider-name=mr.o...@gmail.com
   requires
 import addon=xbmc.python version=2.1.0/
 import addon=script.module.xbmcswift version=0.2.0/
diff --git a/plugin.video.neterratv/changelog.txt 
b/plugin.video.neterratv/changelog.txt
index 98d6aa8..6a39329 100644
--- a/plugin.video.neterratv/changelog.txt
+++ b/plugin.video.neterratv/changelog.txt
@@ -38,4 +38,7 @@ Todo: Need function to delete cookie file
 - fixed issue with TV station list (duplicate entries)
 - set final version for Eden to 1.0.0
 - set final version for Frodo to 2.0.0
+
+1.0.1 / 2.0.1
+- fixed issue live and timeshift streams not playing after website updates 
  
\ No newline at end of file
diff --git a/plugin.video.neterratv/resources/lib/neterratv.py 
b/plugin.video.neterratv/resources/lib/neterratv.py
index 3692ea8..a7dbf78 100644
--- a/plugin.video.neterratv/resources/lib/neterratv.py
+++ b/plugin.video.neterratv/resources/lib/neterratv.py
@@ -33,6 +33,7 @@ LIBNAME = 'neterratv'
 class handles html get and post for neterratv website
 '''
 class neterra:
+
 #static values
 CLASSNAME = 'neterra'
 PLUGINID = 'plugin.video.neterratv'
@@ -62,19 +63,18 @@ class neterra:
 USEROPTIONMUSICISSUES = 'type_view=music_issueschoice_view=1' #sets view 
to small icons
 USEROPTIONTIMESHIFT = 'type_view=timeshiftchoice_view=1' #sets view to 
small icons
 DEFAULTPOSTSETTINGS = 'offset=0category=date=text=' #default options
-ISLOGGEDINSTR = 'form method=POST 
action=http://www.neterra.tv/user/login_page; id=login_fail_form' #string 
to check if user is logged in
-
 #flashplayer settings
-SWFBUFFERDEFAULT = 'buffer=3000'
-SWFPLAYERURL = 
'swfUrl=http://www.neterra.tv/players/players/flowplayer/flowplayer.rtmp-3.2.10.swf'
 #url to flash player
-
+SWFPLAYERURL = 
'swfurl=http://www.neterra.tv/players/flowplayer/flowplayer.commercial-3.2.16.swf'
 
+SWFBUFFERDEFAULT = 'buffer=3000'
+SWFPAGEURL='pageurl=http://www.neterra.tv/content'
+ISLOGGEDINSTR = 'form method=POST 
action=http://www.neterra.tv/user/login_page; id=login_fail_form' #string 
to check if user is logged in
 #globals variables
 __cj__ = None
 __cookiepath__ = None
 __isLoggedIn__ = None
 __username__ = None
 __password__ = None
-
+
 '''
 method for logging
 '''
@@ -649,31 +649,33 @@ returns true if login successful
 plays live stream
 '''
 def playLiveStream(tv_username, tv_password, url):
-log('Start playLiveStream')
-#get a neterra class
-Neterra = neterra(tv_username, tv_password)
-html=Neterra.getTVStream(url)
-log(html)
-#parse html for flashplayer link
-startpoint = html.find('rtmp')
-endpoint = html.find('file_link')-3
-#remove crap from string
-rtmp = html[startpoint:endpoint]
-rtmp = rtmp.replace('\\','')
-startpoint = html.find('file_link')+len('file_link')+3
-endpoint = html.find(',',startpoint)-1
-playpath = html[startpoint:endpoint]
-#log some details
-log('playpath: ' + playpath)
-log('rtmp: ' + rtmp)
-#url=rtmp+' '+ neterra.SWFPLAYERURL+' playpath='+playpath+' live=1 
'+neterra.SWFBUFFERDEFAULT +' conn=O:1 conn=NN:capabilities:239 conn=O:1 
conn=NN:audioCodecs:3575 conn=O:1 conn=NN:videoCodecs:252 conn=O:1 
conn=NN:videoFunction:1 conn=O:1 conn=NN:objectEncoding:3 conn=O:1 
conn=NS:flashVer:3:WIN 11,6,602,180' #conn=O:0'
-url=rtmp+' '+ neterra.SWFPLAYERURL+' playpath='+playpath+' live=1 
'+neterra.SWFBUFFERDEFAULT
-#call player
-xbmc.Player().play(url)
-log('URL: ' + url)
-log('Finished playLiveStream')
-html=''
-return html
+   log('Start playLiveStream')
+   #get a neterra class
+   Neterra = neterra(tv_username, tv_password)
+   html=Neterra.getTVStream(url)
+   log(html)
+   #parse html for flashplayer link
+   startpoint = html.find('rtmp')
+   endpoint = html.find('file_link')-3
+   #remove crap from string
+   rtmp = html[startpoint:endpoint

[Xbmc-addons] Plugins branch, eden, updated. 2770f421b2139b49bb8adf5190f2abccf274dacf

2013-06-24 Thread Kibje
The branch, eden has been updated
   via  2770f421b2139b49bb8adf5190f2abccf274dacf (commit)
  from  40dbf49e084b845696d44326d5f96165573a3626 (commit)

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

commit 2770f421b2139b49bb8adf5190f2abccf274dacf
Author: kibje k...@xbmc.org
Date:   Mon Jun 24 15:06:30 2013 +0200

[plugin.video.neterratv] updated to version 1.0.1

diff --git a/plugin.video.neterratv/addon.xml b/plugin.video.neterratv/addon.xml
index 020328e..147d90b 100644
--- a/plugin.video.neterratv/addon.xml
+++ b/plugin.video.neterratv/addon.xml
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes?
-addon id=plugin.video.neterratv name=Neterra.TV version=1.0.0 
provider-name=mr.o...@gmail.com
+addon id=plugin.video.neterratv name=Neterra.TV version=1.0.1 
provider-name=mr.o...@gmail.com
   requires
 import addon=xbmc.python version=2.0/
 import addon=script.module.xbmcswift version=0.2.0/
diff --git a/plugin.video.neterratv/changelog.txt 
b/plugin.video.neterratv/changelog.txt
index 98d6aa8..6a39329 100644
--- a/plugin.video.neterratv/changelog.txt
+++ b/plugin.video.neterratv/changelog.txt
@@ -38,4 +38,7 @@ Todo: Need function to delete cookie file
 - fixed issue with TV station list (duplicate entries)
 - set final version for Eden to 1.0.0
 - set final version for Frodo to 2.0.0
+
+1.0.1 / 2.0.1
+- fixed issue live and timeshift streams not playing after website updates 
  
\ No newline at end of file
diff --git a/plugin.video.neterratv/resources/lib/neterratv.py 
b/plugin.video.neterratv/resources/lib/neterratv.py
index 3692ea8..a7dbf78 100644
--- a/plugin.video.neterratv/resources/lib/neterratv.py
+++ b/plugin.video.neterratv/resources/lib/neterratv.py
@@ -33,6 +33,7 @@ LIBNAME = 'neterratv'
 class handles html get and post for neterratv website
 '''
 class neterra:
+
 #static values
 CLASSNAME = 'neterra'
 PLUGINID = 'plugin.video.neterratv'
@@ -62,19 +63,18 @@ class neterra:
 USEROPTIONMUSICISSUES = 'type_view=music_issueschoice_view=1' #sets view 
to small icons
 USEROPTIONTIMESHIFT = 'type_view=timeshiftchoice_view=1' #sets view to 
small icons
 DEFAULTPOSTSETTINGS = 'offset=0category=date=text=' #default options
-ISLOGGEDINSTR = 'form method=POST 
action=http://www.neterra.tv/user/login_page; id=login_fail_form' #string 
to check if user is logged in
-
 #flashplayer settings
-SWFBUFFERDEFAULT = 'buffer=3000'
-SWFPLAYERURL = 
'swfUrl=http://www.neterra.tv/players/players/flowplayer/flowplayer.rtmp-3.2.10.swf'
 #url to flash player
-
+SWFPLAYERURL = 
'swfurl=http://www.neterra.tv/players/flowplayer/flowplayer.commercial-3.2.16.swf'
 
+SWFBUFFERDEFAULT = 'buffer=3000'
+SWFPAGEURL='pageurl=http://www.neterra.tv/content'
+ISLOGGEDINSTR = 'form method=POST 
action=http://www.neterra.tv/user/login_page; id=login_fail_form' #string 
to check if user is logged in
 #globals variables
 __cj__ = None
 __cookiepath__ = None
 __isLoggedIn__ = None
 __username__ = None
 __password__ = None
-
+
 '''
 method for logging
 '''
@@ -649,31 +649,33 @@ returns true if login successful
 plays live stream
 '''
 def playLiveStream(tv_username, tv_password, url):
-log('Start playLiveStream')
-#get a neterra class
-Neterra = neterra(tv_username, tv_password)
-html=Neterra.getTVStream(url)
-log(html)
-#parse html for flashplayer link
-startpoint = html.find('rtmp')
-endpoint = html.find('file_link')-3
-#remove crap from string
-rtmp = html[startpoint:endpoint]
-rtmp = rtmp.replace('\\','')
-startpoint = html.find('file_link')+len('file_link')+3
-endpoint = html.find(',',startpoint)-1
-playpath = html[startpoint:endpoint]
-#log some details
-log('playpath: ' + playpath)
-log('rtmp: ' + rtmp)
-#url=rtmp+' '+ neterra.SWFPLAYERURL+' playpath='+playpath+' live=1 
'+neterra.SWFBUFFERDEFAULT +' conn=O:1 conn=NN:capabilities:239 conn=O:1 
conn=NN:audioCodecs:3575 conn=O:1 conn=NN:videoCodecs:252 conn=O:1 
conn=NN:videoFunction:1 conn=O:1 conn=NN:objectEncoding:3 conn=O:1 
conn=NS:flashVer:3:WIN 11,6,602,180' #conn=O:0'
-url=rtmp+' '+ neterra.SWFPLAYERURL+' playpath='+playpath+' live=1 
'+neterra.SWFBUFFERDEFAULT
-#call player
-xbmc.Player().play(url)
-log('URL: ' + url)
-log('Finished playLiveStream')
-html=''
-return html
+   log('Start playLiveStream')
+   #get a neterra class
+   Neterra = neterra(tv_username, tv_password)
+   html=Neterra.getTVStream(url)
+   log(html)
+   #parse html for flashplayer link
+   startpoint = html.find('rtmp')
+   endpoint = html.find('file_link')-3
+   #remove crap from string
+   rtmp = html[startpoint:endpoint

[Xbmc-addons] Plugins branch, frodo, updated. 45eb07abaac5abc90b24226bc3553fdd3e427f3f

2013-06-24 Thread Kibje
The branch, frodo has been updated
   via  45eb07abaac5abc90b24226bc3553fdd3e427f3f (commit)
   via  44b9e875df2eb4714a92f3a25bb35eb2ce69c4f8 (commit)
  from  46d6a6160f55658e36f0cf3bd786b5496a405b1b (commit)

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


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

commit 44b9e875df2eb4714a92f3a25bb35eb2ce69c4f8
Author: kibje k...@xbmc.org
Date:   Mon Jun 24 22:59:04 2013 +0200

[plugin.video.4players] updated to version 2.0.2

diff --git a/plugin.video.4players/addon.py b/plugin.video.4players/addon.py
index cf92d0f..311aeb6 100644
--- a/plugin.video.4players/addon.py
+++ b/plugin.video.4players/addon.py
@@ -128,7 +128,7 @@ def play_video(url):
 
 
 def __format_videos(videos):
-quality = plugin.get_setting('quality', choices=('normal', 'hq'))
+quality = plugin.get_setting('quality2', choices=('normal', 'hq'))
 videos = [{
 'label': '%s: %s' % (video['game']['title'], video['video_title']),
 'thumbnail': video['thumb'],
diff --git a/plugin.video.4players/addon.xml b/plugin.video.4players/addon.xml
index 51d75e7..22f9ce0 100644
--- a/plugin.video.4players/addon.xml
+++ b/plugin.video.4players/addon.xml
@@ -1,16 +1,44 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes?
-addon id=plugin.video.4players name=4Players Videos version=2.0.1 
provider-name=Tristan Fischer (sph...@dersphere.de)
-  requires
-import addon=xbmc.python version=2.1.0/
-import addon=script.module.xbmcswift2 version=2.4.0/
-  /requires
-  extension point=xbmc.python.pluginsource library=addon.py
-providesvideo/provides
-  /extension
-  extension point=xbmc.addon.metadata
-platformall/platform
-languagede/language
-summary lang=enGame related videos from www.4players.de/summary
-description lang=en4Players is a german video-game magazine.[CR]With 
this add-on you can browse latest- or popular-videos, game reviews or browse 
videos by games you are interested in.[CR]You can also filter the videos by 
platforms in the add-on settings./description
-  /extension
+addon id=plugin.video.4players name=4Players Videos version=2.0.2 
provider-name=Tristan Fischer (sph...@dersphere.de)
+requires
+import addon=xbmc.python version=2.1.0/
+import addon=script.module.xbmcswift2 version=2.4.0/
+/requires
+extension point=xbmc.python.pluginsource library=addon.py
+providesvideo/provides
+/extension
+extension point=xbmc.addon.metadata
+platformall/platform
+languagede/language
+websitehttp://www.4players.de//website
+sourcehttps://github.com/dersphere/plugin.video.4players/source
+forumhttp://forum.xbmc.org/showthread.php?tid=110689/forum
+emailsph...@dersphere.de/email
+licenseGNU GENERAL PUBLIC LICENSE. Version 2, June 1991/license
+summary lang=deVideos über Computer-Spiele von 
www.4players.de/summary
+summary lang=elΒίντεο παιχνιδιών από το 
www.4players.de/summary
+summary lang=enGame related videos from www.4players.de/summary
+summary lang=esVideos de juegos de www.4players.de/summary
+summary lang=frVidéos de jeu de www.4players.de/summary
+summary lang=glVídeos de www.4players.de sobre Xogos/summary
+summary lang=itFilmati relativi al Gioco da 
www.4players.de/summary
+summary lang=nlSpel gerelateerde video's van 
www.4players.de/summary
+summary lang=plWideo o grach z www.4players.de/summary
+summary lang=ptVídeos de jogos a partir de 
www.4players.de/summary
+summary lang=pt_BRVídeos relacionados a Jogos de 
www.4players.de/summary
+summary lang=svSpelrelaterade videor från 
www.4players.de/summary
+summary lang=zhwww.4players.de上的游戏相关视频/summary
+description lang=de4Players ist ein deutesches 
Videospielmagazin.[CR]Mit diesem Addon können die neuesten oder populärsten 
Videos, Spiel-Reviews oder Videos von Spielen, an denen Du interessiert bist, 
durchsucht werden.[CR]Die Videos können auch nach Plattform gefiltert werden, 
siehe Addon-Einstellungen./description
+description lang=elΤο 4Players είναι ένα 
γερμανικό περιοδικό βιντεοπαιχνιδιών.[CR]Με 
αυτό το πρόσθετο να δείτε τα πιο πρόσφατα ή 
δημοφιλή βίντεο, κριτικές παιχνιδιών ή να 
βρείτε παιχνίδια τα οποία σας ενδιαφέρου
ν.[CR]Μπορείτε, επίσης, να φιλτράρετε τα 
βίντεο ανά παιχνιδομηχανή στις ρυθμίσεις 
του πρόσθετου./description
+description lang=en4Players is a german video-game

Re: [Xbmc-addons] [git pull] plugin.video.4players (frodo 2.0.2)

2013-06-24 Thread Kibje
On Mon, Jun 24, 2013 at 10:12 PM, Tristan Fischer sph...@dersphere.dewrote:

 *addon - plugin.video.4players
 *version - 2.0.2
 *url - git://github.com/dersphere/plugin.video.4players
 *revision - 617062b45c0b1cd83f8c2ad2e629fbbd24207468
 *branch - master
 *xbmc version - frodo


Updated, cheers

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] plugin.video.9gagtv

2013-06-24 Thread Kibje
On Mon, Jun 24, 2013 at 10:51 PM, Malte stateofthear...@gmail.com wrote:

  *addon - plugin.video.9gagtv
  *version - 0.1.0
  *url - https://github.com/StateOfTheArt89/plugin.video.9gagtv.git
  *revision - 2265bb0146a04af53727a297b5a85ee50f988275
  *branch - master
  *xbmc version - frodo

 Cheers,
 Malte


Updated, cheers!

Kibje
--
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


[Xbmc-addons] Plugins branch, eden, updated. 7dafd44f165bb726eaae2ac7c87fbd3a092f1aaf

2013-06-24 Thread Kibje
The branch, eden has been updated
   via  7dafd44f165bb726eaae2ac7c87fbd3a092f1aaf (commit)
  from  2770f421b2139b49bb8adf5190f2abccf274dacf (commit)

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

commit 7dafd44f165bb726eaae2ac7c87fbd3a092f1aaf
Author: kibje k...@xbmc.org
Date:   Mon Jun 24 23:20:21 2013 +0200

[plugin.video.mlbmc] updated to version 1.1.5

diff --git a/plugin.video.mlbmc/addon.xml b/plugin.video.mlbmc/addon.xml
index 3a44ce3..f7002a7 100644
--- a/plugin.video.mlbmc/addon.xml
+++ b/plugin.video.mlbmc/addon.xml
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes?
 addon id=plugin.video.mlbmc
name=MLBMC
-   version=1.1.4
+   version=1.1.5
provider-name=divingmule
   requires
 import addon=xbmc.python version=2.0/
diff --git a/plugin.video.mlbmc/changelog.txt b/plugin.video.mlbmc/changelog.txt
index 4cb3dd4..0cd0960 100644
--- a/plugin.video.mlbmc/changelog.txt
+++ b/plugin.video.mlbmc/changelog.txt
@@ -1,3 +1,6 @@
+Version 1.1.5
+fix website changes
+
 Version 1.1.4
 fix game highlights
 fix identity error after user has changed their password
diff --git a/plugin.video.mlbmc/default.py b/plugin.video.mlbmc/default.py
index 02d349e..1281c30 100644
--- a/plugin.video.mlbmc/default.py
+++ b/plugin.video.mlbmc/default.py
@@ -108,7 +108,7 @@ if mode==1:
 
 if mode==2:
 if podcasts:
-mlb.setVideoURL(url,True)
+mlb.setVideoURL(url, True)
 else:
 mlb.setVideoURL(url)
 
@@ -201,7 +201,8 @@ if mode==23:
 xbmcplugin.endOfDirectory(int(sys.argv[1]))
 
 if mode==24:
-pass
+mlb.get_topic_playlist(url, eval(game_type))
+xbmcplugin.endOfDirectory(int(sys.argv[1]))
 
 if mode==25:
 mlbtv.mlbGame(event, True)
@@ -213,4 +214,15 @@ if mode==26:
 
 if mode==27:
 mlb.getRealtimeVideo(url)
-xbmcplugin.endOfDirectory(int(sys.argv[1]))
\ No newline at end of file
+xbmcplugin.endOfDirectory(int(sys.argv[1]))
+
+if mode==28:
+mlb.get_playlist_cats()
+xbmcplugin.endOfDirectory(int(sys.argv[1]))
+
+if mode==29:
+mlb.get_playlist_cats(url)
+xbmcplugin.endOfDirectory(int(sys.argv[1]))
+
+if mode==30:
+pass
\ No newline at end of file
diff --git a/plugin.video.mlbmc/resources/language/English/strings.xml 
b/plugin.video.mlbmc/resources/language/English/strings.xml
index 51d2b80..3cd8a0a 100644
--- a/plugin.video.mlbmc/resources/language/English/strings.xml
+++ b/plugin.video.mlbmc/resources/language/English/strings.xml
@@ -11,10 +11,10 @@
   string id=30007MLB.com Podcasts/string
   string id=30008MLB.com Realtime Highlights/string
   string id=30009Search/string
-  string id=30010/string
-  string id=30011/string
-  string id=30012/string
-  string id=30013/string
+  string id=30010Teams/string
+  string id=30011Browse all Categories/string
+  string id=30012Current Player Roster/string
+  string id=30013Latest Highlights/string
   string id=30014/string
   !-- game calander --
   string id=30015Older Dates/string
diff --git a/plugin.video.mlbmc/resources/mlb.py 
b/plugin.video.mlbmc/resources/mlb.py
index 4bf6017..ae9ebbc 100644
--- a/plugin.video.mlbmc/resources/mlb.py
+++ b/plugin.video.mlbmc/resources/mlb.py
@@ -1,6 +1,7 @@
 import urllib
 import sys
 import os
+import re
 import xbmc
 import xbmcgui
 import xbmcplugin
@@ -31,12 +32,13 @@ if debug == 'true':
 
 
 def categories():
+''' initial directory listing, mode None '''
 thumb_path = 'http://mlbmc-xbmc.googlecode.com/svn/icons/'
 addDir(language(3),'',3,thumb_path+'mlb.tv.png')
 addDir(language(30001),'',13,thumb_path+'condensed.png')
 addDir(language(30002),'',23,thumb_path+'fullcount.png')
-
addDir(language(30003),'http://www.mlb.com/video/',18,thumb_path+'playlist.png')
-
addPlaylist(language(30004),'http://mlb.mlb.com/video/play.jsp?tcid=mm_mlb_vid',12,thumb_path+'latestvid.png')
+
addDir(language(30003),'http://wapc.mlb.com/play',18,thumb_path+'playlist.png')
+
addPlaylist(language(30004),'play_latest_videos',12,thumb_path+'latestvid.png')
 addDir(language(30005),'add_playlist',4,thumb_path+'tvideo.png')
 addDir(language(30006),'',17,thumb_path+'highlights.png')
 addDir(language(30007),'',22,thumb_path+'podcast.png')
@@ -44,82 +46,112 @@ def categories():
 addDir(language(30009),'',16,thumb_path+'search.png')
 
 
-def mlb_playlist(url):
+def get_playlist_page(url):
+''' This function returns a dict of category playlist from the given url 
'''
 soup = BeautifulSoup(getRequest(url), 
convertEntities=BeautifulSoup.HTML_ENTITIES)
-try:
-thumb_string = soup.find('div', attrs={'id': promoFeature})['style']
-thumbnail = re.findall('background:url\((.+?)\)', thumb_string)[0]
-except:
-thumbnail = ''
-cats = soup.find('div', attrs={'id': videoBrowseNav})
-categories = cats('li', attrs

[Xbmc-addons] Plugins branch, frodo, updated. c47b353e25ed036aa7c18ff22b9aec5bafe57657

2013-06-24 Thread Kibje
The branch, frodo has been updated
   via  c47b353e25ed036aa7c18ff22b9aec5bafe57657 (commit)
  from  45eb07abaac5abc90b24226bc3553fdd3e427f3f (commit)

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

commit c47b353e25ed036aa7c18ff22b9aec5bafe57657
Author: kibje k...@xbmc.org
Date:   Mon Jun 24 23:20:13 2013 +0200

[plugin.video.mlbmc] updated to version 2.0.4

diff --git a/plugin.video.mlbmc/addon.xml b/plugin.video.mlbmc/addon.xml
index cd76bdc..4d36585 100644
--- a/plugin.video.mlbmc/addon.xml
+++ b/plugin.video.mlbmc/addon.xml
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes?
 addon id=plugin.video.mlbmc
name=MLBMC
-   version=2.0.3
+   version=2.0.4
provider-name=divingmule
   requires
 import addon=xbmc.python version=2.1.0/
diff --git a/plugin.video.mlbmc/changelog.txt b/plugin.video.mlbmc/changelog.txt
index 969f5ac..6a06c95 100644
--- a/plugin.video.mlbmc/changelog.txt
+++ b/plugin.video.mlbmc/changelog.txt
@@ -1,3 +1,6 @@
+Version 2.0.4
+fix website changes
+
 Version 2.0.3
 fix game highlights
 fix identity error after user has changed their password
diff --git a/plugin.video.mlbmc/default.py b/plugin.video.mlbmc/default.py
index 02d349e..1281c30 100644
--- a/plugin.video.mlbmc/default.py
+++ b/plugin.video.mlbmc/default.py
@@ -108,7 +108,7 @@ if mode==1:
 
 if mode==2:
 if podcasts:
-mlb.setVideoURL(url,True)
+mlb.setVideoURL(url, True)
 else:
 mlb.setVideoURL(url)
 
@@ -201,7 +201,8 @@ if mode==23:
 xbmcplugin.endOfDirectory(int(sys.argv[1]))
 
 if mode==24:
-pass
+mlb.get_topic_playlist(url, eval(game_type))
+xbmcplugin.endOfDirectory(int(sys.argv[1]))
 
 if mode==25:
 mlbtv.mlbGame(event, True)
@@ -213,4 +214,15 @@ if mode==26:
 
 if mode==27:
 mlb.getRealtimeVideo(url)
-xbmcplugin.endOfDirectory(int(sys.argv[1]))
\ No newline at end of file
+xbmcplugin.endOfDirectory(int(sys.argv[1]))
+
+if mode==28:
+mlb.get_playlist_cats()
+xbmcplugin.endOfDirectory(int(sys.argv[1]))
+
+if mode==29:
+mlb.get_playlist_cats(url)
+xbmcplugin.endOfDirectory(int(sys.argv[1]))
+
+if mode==30:
+pass
\ No newline at end of file
diff --git a/plugin.video.mlbmc/resources/language/English/strings.xml 
b/plugin.video.mlbmc/resources/language/English/strings.xml
index 51d2b80..3cd8a0a 100644
--- a/plugin.video.mlbmc/resources/language/English/strings.xml
+++ b/plugin.video.mlbmc/resources/language/English/strings.xml
@@ -11,10 +11,10 @@
   string id=30007MLB.com Podcasts/string
   string id=30008MLB.com Realtime Highlights/string
   string id=30009Search/string
-  string id=30010/string
-  string id=30011/string
-  string id=30012/string
-  string id=30013/string
+  string id=30010Teams/string
+  string id=30011Browse all Categories/string
+  string id=30012Current Player Roster/string
+  string id=30013Latest Highlights/string
   string id=30014/string
   !-- game calander --
   string id=30015Older Dates/string
diff --git a/plugin.video.mlbmc/resources/mlb.py 
b/plugin.video.mlbmc/resources/mlb.py
index 4bf6017..ae9ebbc 100644
--- a/plugin.video.mlbmc/resources/mlb.py
+++ b/plugin.video.mlbmc/resources/mlb.py
@@ -1,6 +1,7 @@
 import urllib
 import sys
 import os
+import re
 import xbmc
 import xbmcgui
 import xbmcplugin
@@ -31,12 +32,13 @@ if debug == 'true':
 
 
 def categories():
+''' initial directory listing, mode None '''
 thumb_path = 'http://mlbmc-xbmc.googlecode.com/svn/icons/'
 addDir(language(3),'',3,thumb_path+'mlb.tv.png')
 addDir(language(30001),'',13,thumb_path+'condensed.png')
 addDir(language(30002),'',23,thumb_path+'fullcount.png')
-
addDir(language(30003),'http://www.mlb.com/video/',18,thumb_path+'playlist.png')
-
addPlaylist(language(30004),'http://mlb.mlb.com/video/play.jsp?tcid=mm_mlb_vid',12,thumb_path+'latestvid.png')
+
addDir(language(30003),'http://wapc.mlb.com/play',18,thumb_path+'playlist.png')
+
addPlaylist(language(30004),'play_latest_videos',12,thumb_path+'latestvid.png')
 addDir(language(30005),'add_playlist',4,thumb_path+'tvideo.png')
 addDir(language(30006),'',17,thumb_path+'highlights.png')
 addDir(language(30007),'',22,thumb_path+'podcast.png')
@@ -44,82 +46,112 @@ def categories():
 addDir(language(30009),'',16,thumb_path+'search.png')
 
 
-def mlb_playlist(url):
+def get_playlist_page(url):
+''' This function returns a dict of category playlist from the given url 
'''
 soup = BeautifulSoup(getRequest(url), 
convertEntities=BeautifulSoup.HTML_ENTITIES)
-try:
-thumb_string = soup.find('div', attrs={'id': promoFeature})['style']
-thumbnail = re.findall('background:url\((.+?)\)', thumb_string)[0]
-except:
-thumbnail = ''
-cats = soup.find('div', attrs={'id': videoBrowseNav})
-categories = cats('li

Re: [Xbmc-addons] [SVN Pull] plugin.video.mlbmc - Fix

2013-06-24 Thread Kibje
On Mon, Jun 24, 2013 at 6:22 PM, divingmule divingm...@gmail.com wrote:

 addon - plugin.video.mlbmc
 version - 2.0.4
 url - http://mlbmc-xbmc.googlecode.com/svn/trunk
 revision - r58
 xbmc version - frodo

 addon - plugin.video.mlbmc
 version - 1.1.5
 url - http://mlbmc-xbmc.googlecode.com/svn/branches/eden
 revision - r58
 xbmc version - eden


Pushed both, cheers !

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] plugin.video.tmz v3.0.13

2013-06-23 Thread Kibje [XBMC]
On Sat, Jun 22, 2013 at 10:37 PM, stacked.x...@gmail.com 
stacked.x...@gmail.com wrote:

 addon: plugin.video.tmz
 version: 3.0.13
 url: git://github.com/stacked/plugin.video.tmz.git
 tag: v3.0.13
 xbmc version: frodo

 addon: plugin.video.tmz
 version: 2.0.13
 url: git://github.com/stacked/plugin.video.tmz.git
 tag: v2.0.13
 xbmc version: eden


Updated both, cheers.

Kibje
--
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


Re: [Xbmc-addons] [git pull] plugin.video.couchpotato_manager (frodo 0.0.6)

2013-06-23 Thread Kibje [XBMC]
On Sun, Jun 23, 2013 at 8:17 PM, Tristan Fischer sph...@dersphere.dewrote:

 *addon - plugin.video.couchpotato_manager
 *version - 0.0.6
 *url - git://github.com/dersphere/XBMC-CouchPotato-Manager.git
 *revision - 95a8c4680cc21cd00511c6d39d31ef7cb5520a3e
 *branch - master
 *xbmc version - frodo


Updated, cheers.

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] plugin.video.tweakers

2013-06-23 Thread Kibje [XBMC]
On Sun, Jun 23, 2013 at 5:57 PM, SkipmodeA1 skipmod...@outlook.com wrote:

  *addon - plugin.video.tweakers

 *version - 1.0.0

 *url - git://github.com/skipmodea1/plugin.video.tweakers.git

 *revision - eba1cf2664448d4d3ce1f883f770cc4e7b690f0f

 *branch - master

 *xbmc version - frodo


Could you make sure your icon.png is 256x256px and not 310x256.
Be sure to check out the basic sanity checks here:
http://wiki.xbmc.org/index.php?title=Official_add-on_repository#Basic_sanity_checks

Cheers,

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] plugin.video.teamhww

2013-06-23 Thread Kibje [XBMC]
On Sun, Jun 23, 2013 at 5:56 PM, SkipmodeA1 skipmod...@outlook.com wrote:

   *addon - plugin.video.teamhww

 *version - 1.0.1

 *url - git://github.com/skipmodea1/plugin.video.teamhww.git

 *revision - f4731a3c84eb9233105994d153dcf060821634de

 *branch - master

 *xbmc version - frodo


The revision you entered is version 1.0.0 so I can't pull this.
Can you modify this and send a new request ?

Cheers,

Kibje
--
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


Re: [Xbmc-addons] [git pull] plugin.video.trakt_list_manager (frodo 0.1.3)

2013-06-23 Thread Kibje [XBMC]
On Sun, Jun 23, 2013 at 10:47 PM, Tristan Fischer sph...@dersphere.dewrote:

 *addon - plugin.video.trakt_list_manager
 *version - 0.1.3
 *url - git://github.com/dersphere/plugin.video.trakt_list_manager.git
 *revision - df50b6b1b41f9fd0e3c5b7987b2c72c5cb3cd8ad
 *branch - master
 *xbmc version - frodo


Updated, cheers.

kibje
--
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


Re: [Xbmc-addons] [Git Pull] script.moviequiz 1.0.0

2013-06-23 Thread Kibje [XBMC]
On Sat, Jun 22, 2013 at 7:32 PM, Tommy Winther to...@net-comm.dk wrote:

 addon: script.moviequiz
 version: 1.0.0
 url: git://github.com/twinther/script.moviequiz.git
 tag: v1.0.0
 xbmc version: frodo


Checked and pushed, cheers.

Kibje
--
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


Re: [Xbmc-addons] [Git Pull] plugin.video.neterratv2.0.1 / 1.0.1 (update)

2013-06-22 Thread Kibje [XBMC]
On Fri, Jun 21, 2013 at 5:21 PM, Olaf Kretzschmar mr.o...@gmail.com wrote:

 * addon - plugin.video.neterratv

 * version - 2.0.1

 * url - git://github.com/mrolix/plugin.video.neterratv.git

 * revision - 63154da5b0e3ced8bd2d784362859031badc1547

 * branch - master

 * xbmc version - frodo

 * addon - plugin.video.neterratv

 * version - 1.0.1

 * url - git://github.com/mrolix/plugin.video.neterratv.git

 * revision - 80f0690250b93b6b1f4616467b496fd99e31a9a2

 * branch - master

 * xbmc version - eden


Olaf,

I see debug mode set to true in your commits. Am I correct that this is an
unintended leftover from development ?

Cheers,

kibje
--
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


Re: [Xbmc-addons] [SVN Pull] PreviewNetworks - Update

2013-06-22 Thread Kibje [XBMC]
Pushed it in, cheers.

Kibje
--
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


Re: [Xbmc-addons] [SVN Pull] PreviewNetworks - Update

2013-06-21 Thread Kibje [XBMC]
On Fri, Jun 21, 2013 at 9:47 AM, Nicola Mazzariello nm...@tiscali.itwrote:

 *addon - plugin.video.previewnetworks
 *version - 2.3.2
 *url -

 http://previewnetworks-xbmc-plugin.googlecode.com/svn/trunk/plugin.video.previewnetworks/
 *revision - 24
 *xbmc version - frodo


Hi Nicola,
Thanks for the changes so far.
Could you also change the usage of os.getcwd()
in plugin.video.previewnetworks/resources/lib/download.py
This call is deprecated and should not be used anymore, as explained
http://wiki.xbmc.org/index.php?title=Official_add-on_repository#Requirements_for_scripts_and_plugins

Cheers,

kibje
--
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