Skip to content

Commit

Permalink
Merge pull request #10 from amet/V2.0.2
Browse files Browse the repository at this point in the history
- [fix] activate static light when playing audio
  • Loading branch information
Memphiz committed Nov 26, 2012
2 parents d592a2e + b44cca9 commit 0dbb412
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion script.xbmc.boblight/addon.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.xbmc.boblight" name="XBMC Boblight" version="2.0.1" provider-name="bobo1on1, Memphiz">
<addon id="script.xbmc.boblight" name="XBMC Boblight" version="2.0.2" provider-name="bobo1on1, Memphiz">
<requires>
<import addon="xbmc.python" version="2.1"/>
</requires>
Expand Down
3 changes: 3 additions & 0 deletions script.xbmc.boblight/changelog.txt
@@ -1,3 +1,6 @@
2.0.2
- [fix] activate static light when playing audio

2.0.1
- [fix] close download dialog once we finished/failed
- [fix] - catch exceptions during libboblight download and add a toast for suggesting a check of the fs permissions
Expand Down
2 changes: 2 additions & 0 deletions script.xbmc.boblight/default.py
Expand Up @@ -149,6 +149,8 @@ def myPlayerChanged(state):
else:
if xbmc.getCondVisibility("VideoPlayer.Content(musicvideos)"):
ret = "musicvideo"
elif xbmc.getCondVisibility("Player.HasAudio()"):
ret = "static"
else:
ret = "movie"

Expand Down

0 comments on commit 0dbb412

Please sign in to comment.