The branch, eden-pre has been updated
via 4f7ef55601927a496f630c75a2744437facd19c6 (commit)
via 9c915065511a2a50b4a65c79697c2c579a30e7cc (commit)
from 17f8cf2ba39c00b31d1bf08242db9f29848f42cd (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=4f7ef55601927a496f630c75a2744437facd19c6
commit 4f7ef55601927a496f630c75a2744437facd19c6
Author: spiff <[email protected]>
Date: Sun Jan 15 21:02:19 2012 +0100
[plugin.video.tvkaista] updated to version 3.0.2
diff --git a/plugin.video.tvkaista/addon.xml b/plugin.video.tvkaista/addon.xml
index 93eb8c9..35dbb75 100644
--- a/plugin.video.tvkaista/addon.xml
+++ b/plugin.video.tvkaista/addon.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="plugin.video.tvkaista" name="TVKaista.fi" version="3.0.1"
provider-name="Viljo Viitanen">
+<addon id="plugin.video.tvkaista" name="TVKaista.fi" version="3.0.2"
provider-name="Viljo Viitanen">
<requires>
<import addon="xbmc.python" version="2.0"/>
</requires>
diff --git a/plugin.video.tvkaista/changelog.txt
b/plugin.video.tvkaista/changelog.txt
index 329ea4a..409357e 100644
--- a/plugin.video.tvkaista/changelog.txt
+++ b/plugin.video.tvkaista/changelog.txt
@@ -1,3 +1,5 @@
+[B]3.0.2[/B]
+- Bugfix
[B]3.0.1[/B]
- Always show times in Finnish time, sort the series view, remove obsolete
proxy setting. Set the proxy server from tvkaista website. Thanks again Markki
Lamminluoto for helping with the proxies!
[B]3.0.0[/B]
diff --git a/plugin.video.tvkaista/default.py b/plugin.video.tvkaista/default.py
index 09009e5..73d7f1a 100644
--- a/plugin.video.tvkaista/default.py
+++ b/plugin.video.tvkaista/default.py
@@ -272,6 +272,7 @@ def listdates(url):
listfolder = xbmcgui.ListItem('www-pyynto ei onnistunut '+str(e.code))
listfolder.setInfo('video', {'Title': 'www-pyynto ei onnistunut
'+str(e.code)})
xbmcplugin.addDirectoryItem(int(sys.argv[1]), u, listfolder, isFolder=1)
+ xbmcplugin.endOfDirectory(int(sys.argv[1]))
return
# try:
dom = minidom.parseString(content)
@@ -309,6 +310,7 @@ def listfeeds(url):
listfolder = xbmcgui.ListItem('www-pyynto ei onnistunut '+str(e.code))
listfolder.setInfo('video', {'Title': 'www-pyynto ei onnistunut
'+str(e.code)})
xbmcplugin.addDirectoryItem(int(sys.argv[1]), u, listfolder, isFolder=1)
+ xbmcplugin.endOfDirectory(int(sys.argv[1]))
return
# try:
dom = minidom.parseString(content)
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=9c915065511a2a50b4a65c79697c2c579a30e7cc
commit 9c915065511a2a50b4a65c79697c2c579a30e7cc
Author: spiff <[email protected]>
Date: Sun Jan 15 20:58:56 2012 +0100
[plugin.video.the.trailers] updated to version 0.1.1
diff --git a/plugin.video.the.trailers/addon.xml
b/plugin.video.the.trailers/addon.xml
index 664aa5b..0bb0954 100644
--- a/plugin.video.the.trailers/addon.xml
+++ b/plugin.video.the.trailers/addon.xml
@@ -2,7 +2,7 @@
<addon
id="plugin.video.the.trailers"
name="The Trailers"
- version="0.1.0"
+ version="0.1.1"
provider-name="Martijn (orginal: nuka1195)">
<!-- Code taken from AMT-L and original creator ="nuka1195" -->
<requires>
diff --git a/plugin.video.the.trailers/changelog.txt
b/plugin.video.the.trailers/changelog.txt
index 7c09c10..7f5e079 100644
--- a/plugin.video.the.trailers/changelog.txt
+++ b/plugin.video.the.trailers/changelog.txt
@@ -1,3 +1,8 @@
+[B]0.1.1[/B]
+- Changed: Better looking icon.png (thx Jeroen)
+- Changed: Matching background
+- Changed: Make password field 'hidden'
+
[B]0.1.0[/B]
- Fixed: Now scrape latest movies again
- Fixed: Download and save works again
diff --git a/plugin.video.the.trailers/fanart.jpg
b/plugin.video.the.trailers/fanart.jpg
index f52d3df..4036466 100644
Binary files a/plugin.video.the.trailers/fanart.jpg and
b/plugin.video.the.trailers/fanart.jpg differ
diff --git a/plugin.video.the.trailers/icon.png
b/plugin.video.the.trailers/icon.png
index becf289..5a2c847 100644
Binary files a/plugin.video.the.trailers/icon.png and
b/plugin.video.the.trailers/icon.png differ
diff --git a/plugin.video.the.trailers/resources/settings.xml
b/plugin.video.the.trailers/resources/settings.xml
index 7d4c917..70505c3 100644
--- a/plugin.video.the.trailers/resources/settings.xml
+++ b/plugin.video.the.trailers/resources/settings.xml
@@ -33,6 +33,6 @@
<setting label="30264" type="text" id="cp_port" default="5000"
enable="eq(-2,true)" />
<setting label="30265" type="bool" id="cp_use_https" default="false"
enable="eq(-3,true)" />
<setting label="30261" type="text" id="cp_user" default=""
enable="eq(-4,true)" />
- <setting label="30262" type="text" id="cp_password" default=""
enable="eq(-5,true) + !eq(-1,)" />
+ <setting label="30262" type="text" id="cp_password" default=""
enable="eq(-5,true) + !eq(-1,)" option="hidden"/>
</category>
</settings>
-----------------------------------------------------------------------
Summary of changes:
plugin.video.the.trailers/addon.xml | 2 +-
plugin.video.the.trailers/changelog.txt | 5 +
plugin.video.the.trailers/fanart.jpg | Bin 638630 -> 256566
bytes
plugin.video.the.trailers/icon.png | Bin 25723 -> 77334 bytes
.../resources/language/German/strings.xml | 90 ++++++++++++++++++++
plugin.video.the.trailers/resources/settings.xml | 2 +-
plugin.video.tvkaista/addon.xml | 2 +-
plugin.video.tvkaista/changelog.txt | 2 +
plugin.video.tvkaista/default.py | 2 +
9 files changed, 102 insertions(+), 3 deletions(-)
create mode 100644
plugin.video.the.trailers/resources/language/German/strings.xml
hooks/post-receive
--
Plugins
------------------------------------------------------------------------------
RSA(R) Conference 2012
Mar 27 - Feb 2
Save $400 by Jan. 27
Register now!
http://p.sf.net/sfu/rsa-sfdev2dev2
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons