The branch, frodo has been updated
via 9c6aaa2cf9535fcf73a357972da9a39d1c3fc3a9 (commit)
from 9158099f57b28c1879ed1471a079fd31a3f7a944 (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=9c6aaa2cf9535fcf73a357972da9a39d1c3fc3a9
commit 9c6aaa2cf9535fcf73a357972da9a39d1c3fc3a9
Author: Martijn Kaijser <[email protected]>
Date: Sat Dec 21 15:03:40 2013 +0100
[service.xbmc.versioncheck] 0.1.15
diff --git a/service.xbmc.versioncheck/README.md
b/service.xbmc.versioncheck/README.md
index 5f8cbc5..1442d6f 100644
--- a/service.xbmc.versioncheck/README.md
+++ b/service.xbmc.versioncheck/README.md
@@ -3,4 +3,4 @@ XBMC Versioncheck
This service checks the installed XBMC version against the next available one
and notifies you if there is a new version available.
When a new version comes out the versions.txt should be updated to reflect the
latest version available.
-When updating the version.txt always put latest release at the top since the
list is read in chronological order.
+When updating the version.txt always put latest release at the top since the
list is read in chronilogical order.
diff --git a/service.xbmc.versioncheck/addon.xml
b/service.xbmc.versioncheck/addon.xml
index 7956034..7b92696 100644
--- a/service.xbmc.versioncheck/addon.xml
+++ b/service.xbmc.versioncheck/addon.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.xbmc.versioncheck"
name="XBMC Version Check"
- version="0.1.14"
+ version="0.1.15"
provider-name="Team XBMC">
<requires>
<import addon="xbmc.addon" version="12.0.0"/>
@@ -76,7 +76,7 @@
<disclaimer lang="sv">Använd gärna detta skript. För information,
besök xbmc.org</disclaimer>
<disclaimer
lang="zh">请éæä½¿ç¨æ¤èæ¬ï¼æ´å¤ä¿¡æ¯è®¿é®xbmc.org</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
- <platform>osx osx32 osx64 ios windx wingl linux</platform>
+ <platform>all</platform>
<website>http://xbmc.org</website>
<source>https://github.com/XBMC-Addons/service.xbmc.versioncheck</source>
<forum>http://forum.xbmc.org/showthread.php?tid=160228</forum>
diff --git a/service.xbmc.versioncheck/changelog.txt
b/service.xbmc.versioncheck/changelog.txt
index 2dd1fcb..48d8833 100644
--- a/service.xbmc.versioncheck/changelog.txt
+++ b/service.xbmc.versioncheck/changelog.txt
@@ -1,3 +1,6 @@
+v0.1.15
+- Add option for linux to disable check through "apt"
+
v0.1.14
- Update with 13.0 Gotham_alpha10
diff --git a/service.xbmc.versioncheck/resources/language/English/strings.po
b/service.xbmc.versioncheck/resources/language/English/strings.po
index 891e84f..7c3e528 100644
--- a/service.xbmc.versioncheck/resources/language/English/strings.po
+++ b/service.xbmc.versioncheck/resources/language/English/strings.po
@@ -93,3 +93,7 @@ msgstr ""
msgctxt "#32023"
msgid "Linux: Upgrade complete system"
msgstr ""
+
+msgctxt "#32024"
+msgid "Linux: Check using apt"
+msgstr ""
\ No newline at end of file
diff --git a/service.xbmc.versioncheck/resources/settings.xml
b/service.xbmc.versioncheck/resources/settings.xml
index b72c184..4787e64 100644
--- a/service.xbmc.versioncheck/resources/settings.xml
+++ b/service.xbmc.versioncheck/resources/settings.xml
@@ -2,6 +2,7 @@
<settings>
<category label="32020">
<setting label="32021" type="bool" id="versioncheck_enable"
default="true"/>
- <setting label="32023" type="bool" id="upgrade_system"
default="false"/>
+ <setting label="32024" type="bool" id="upgrade_apt"
default="false" enable="eq(-1,true)"/>
+ <setting label="32023" type="bool" id="upgrade_system" default="false"
enable="eq(-1,true)"/>
</category>
</settings>
diff --git a/service.xbmc.versioncheck/service.py
b/service.xbmc.versioncheck/service.py
index ea34b2b..8723a1b 100644
--- a/service.xbmc.versioncheck/service.py
+++ b/service.xbmc.versioncheck/service.py
@@ -39,7 +39,7 @@ class Main:
xbmc.executebuiltin('XBMC.AlarmClock(CheckAtBoot,XBMC.RunScript(service.xbmc.versioncheck,
started),00:00:30,silent)')
xbmc.executebuiltin('XBMC.AlarmClock(CheckWhileRunning,XBMC.RunScript(service.xbmc.versioncheck,
started),24:00:00,silent,loop)')
elif sys.argv[0] and sys.argv[1] == 'started':
- if xbmc.getCondVisibility('System.Platform.Linux'):
+ if xbmc.getCondVisibility('System.Platform.Linux') and
__addon__.getSetting("upgrade_apt") == 'true':
packages = ['xbmc']
_versionchecklinux(packages)
else:
-----------------------------------------------------------------------
Summary of changes:
service.xbmc.versioncheck/README.md | 2 +-
service.xbmc.versioncheck/addon.xml | 4 ++--
service.xbmc.versioncheck/changelog.txt | 3 +++
.../resources/language/English/strings.po | 4 ++++
service.xbmc.versioncheck/resources/settings.xml | 3 ++-
service.xbmc.versioncheck/service.py | 2 +-
6 files changed, 13 insertions(+), 5 deletions(-)
hooks/post-receive
--
Scripts
------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT
organizations don't have a clear picture of how application performance
affects their revenue. With AppDynamics, you get 100% visibility into your
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons