The branch, eden has been updated
via 5f4066baac458cf3be6f639de77b6c83d9e87489 (commit)
from 66bcd1edcf4f84f6ea157577e7ec6a6c36204359 (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=5f4066baac458cf3be6f639de77b6c83d9e87489
commit 5f4066baac458cf3be6f639de77b6c83d9e87489
Author: ronie <[email protected]>
Date: Sun Mar 10 21:16:23 2013 +0100
[script.xbmc.lcdproc] -v1.2.1
diff --git a/script.xbmc.lcdproc/addon.xml b/script.xbmc.lcdproc/addon.xml
index 02d9033..e5624a8 100644
--- a/script.xbmc.lcdproc/addon.xml
+++ b/script.xbmc.lcdproc/addon.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="script.xbmc.lcdproc" name="XBMC LCDproc" version="1.2.0"
provider-name="Team XBMC: Memphiz, Daniel 'herrnst' Scheller">
+<addon id="script.xbmc.lcdproc" name="XBMC LCDproc" version="1.2.1"
provider-name="Team XBMC: Memphiz, Daniel 'herrnst' Scheller">
<requires>
<import addon="xbmc.python" version="2.0"/>
<import addon="xbmc.gui" version="3.0"/>
diff --git a/script.xbmc.lcdproc/changelog.txt
b/script.xbmc.lcdproc/changelog.txt
index d29c38b..6970eee 100644
--- a/script.xbmc.lcdproc/changelog.txt
+++ b/script.xbmc.lcdproc/changelog.txt
@@ -1,3 +1,5 @@
+1.2.1 / 2.2.1
+- Bugfixes, Credits, slightly more convenient configuration option bools
1.2.0 / 2.2.0
- Maintain versions for Eden (1.x.x) and Frodo+ (2.x.x)
- Support for extra stuff (icons, bars) on supporting displays
diff --git a/script.xbmc.lcdproc/resources/lib/lcdbase.py
b/script.xbmc.lcdproc/resources/lib/lcdbase.py
index ae8b25c..7c7ea07 100644
--- a/script.xbmc.lcdproc/resources/lib/lcdbase.py
+++ b/script.xbmc.lcdproc/resources/lib/lcdbase.py
@@ -253,7 +253,7 @@ class LcdBase():
progressbarSurroundings = element.find("progressbarsurroundings")
if progressbarSurroundings != None:
- if str(progressbarSurroundings.text) == "on":
+ if str(progressbarSurroundings.text).lower() in ["on", "true"]:
self.m_bProgressbarSurroundings = True
# icontext offset setting
@@ -278,7 +278,7 @@ class LcdBase():
allowemptylines = element.find("allowemptylines")
if allowemptylines != None:
- if str(allowemptylines.text) == "on":
+ if str(allowemptylines.text).lower() in ["on", "true"]:
self.m_bAllowEmptyLines = True
# extra progress bars
@@ -701,7 +701,7 @@ class LcdBase():
self.m_cExtraIcons.SetIconState(LCD_EXTRAICONS.LCD_EXTRAICON_ALARM,
False)
def SetExtraInfoBars(self, isplaying):
- for i in range(1, LCD_EXTRABARS_MAX):
+ for i in range(1, LCD_EXTRABARS_MAX + 1):
if self.m_extraBars[i] == "progress":
if isplaying:
self.m_cExtraIcons.SetBar(i, (InfoLabel_GetProgressPercent() * 100))
diff --git a/script.xbmc.lcdproc/resources/lib/lcdproc_extra_imon.py
b/script.xbmc.lcdproc/resources/lib/lcdproc_extra_imon.py
index 49618a3..8397186 100644
--- a/script.xbmc.lcdproc/resources/lib/lcdproc_extra_imon.py
+++ b/script.xbmc.lcdproc/resources/lib/lcdproc_extra_imon.py
@@ -4,7 +4,7 @@
Support for extra symbols on SoundGraph iMON LCD displays
Copyright (C) 2012 Daniel 'herrnst' Scheller
- Original C implementation (C) 2010 theonlychriss@vdr-portal
+ Original C implementation (C) 2010 Christian Leuschen
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/script.xbmc.lcdproc/resources/lib/lcdproc_extra_mdm166a.py
b/script.xbmc.lcdproc/resources/lib/lcdproc_extra_mdm166a.py
index 25285d4..ba296c6 100644
--- a/script.xbmc.lcdproc/resources/lib/lcdproc_extra_mdm166a.py
+++ b/script.xbmc.lcdproc/resources/lib/lcdproc_extra_mdm166a.py
@@ -4,7 +4,7 @@
Support for extra symbols on Futaba/Targa USB mdm166a VFD displays
Copyright (C) 2012 Daniel 'herrnst' Scheller
- Original C implementation (C) 2010 theonlychriss@vdr-portal
+ Original C implementation (C) 2010 Christian Leuschen
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/script.xbmc.lcdproc/resources/lib/settings.py
b/script.xbmc.lcdproc/resources/lib/settings.py
index 07a9da2..1e624cf 100644
--- a/script.xbmc.lcdproc/resources/lib/settings.py
+++ b/script.xbmc.lcdproc/resources/lib/settings.py
@@ -64,10 +64,10 @@ def settings_initGlobals():
g_hostip = "127.0.0.1"
g_hostport = 13666
g_timer = time.time()
- g_heartbeat = False
+ g_heartbeat = False
g_scrolldelay = 1
g_scrollmode = "0"
- g_settigsChanged = True
+ g_settingsChanged = True
g_dimonscreensaver = False
g_dimonshutdown = False
g_navtimeout = 3
@@ -242,4 +242,4 @@ def settings_setup():
settings_handleLcdSettings()
return reconnect
-
\ No newline at end of file
+
-----------------------------------------------------------------------
Summary of changes:
script.xbmc.lcdproc/addon.xml | 2 +-
script.xbmc.lcdproc/changelog.txt | 2 ++
script.xbmc.lcdproc/resources/lib/lcdbase.py | 6 +++---
.../resources/lib/lcdproc_extra_imon.py | 2 +-
.../resources/lib/lcdproc_extra_mdm166a.py | 2 +-
script.xbmc.lcdproc/resources/lib/settings.py | 6 +++---
6 files changed, 11 insertions(+), 9 deletions(-)
hooks/post-receive
--
Scripts
------------------------------------------------------------------------------
Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester
Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the
endpoint security space. For insight on selecting the right partner to
tackle endpoint security challenges, access the full report.
http://p.sf.net/sfu/symantec-dev2dev
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons