-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathaddon.xml
More file actions
52 lines (52 loc) · 3.04 KB
/
addon.xml
File metadata and controls
52 lines (52 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.kodi.lifx.ambilight" version="1.0.7"
name="Lifx Ambilight" provider-name="Harshit Sanghvi">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.requests" version="2.3.0" />
</requires>
<extension point="xbmc.service" library="service.py"></extension>
<!-- <extension point="xbmc.python.script" library="default.py" /> -->
<extension point="xbmc.addon.metadata">
<summary>Kodi-controlled Lifx lights</summary>
<description>Let Kodi control your Lifx lights. Turn the lights into a room-sized theater with ambilight, and automatically dim and un-dim them when playback starts/stops.
It controls Lifx lights based on the following light groups, fully configurable using the setup wizard from addon settings:
1. Theater Group - Dim the lights when playback starts, undim when paused, restore when stops
2. Ambilight Group - Change color and brightness of lights based on the current picture frame
3. Static Group - Turn the light on when playback starts, off when it stops
</description>
<disclaimer lang="en_GB">
By using this addon, you take full reponsibility for anything that happens.
(Tip: Reset the addon settings and restart Kodi if you get any error after updating)
</disclaimer>
<language>en</language>
<platform>all</platform>
<forum>https://github.com/sanghviharshit/script.kodi.lifx.ambilight/issues</forum>
<license>GNU General Public License v2.0</license>
<website>https://sanghviharshit.github.io/script.kodi.lifx.ambilight/</website>
<source>https://github.com/sanghviharshit/script.kodi.lifx.ambilight</source>
<email>hello@sanghviharshit.com</email>
<news>
v1.0.7 (2019-01-01)
- Fix - Lights don't dim on initial playback
</news>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
<banner></banner>
<clearlogo></clearlogo>
<screenshot>resources/screenshot-01.png</screenshot>
<screenshot>resources/screenshot-02.png</screenshot>
<screenshot>resources/screenshot-03.png</screenshot>
<screenshot>resources/screenshot-04.png</screenshot>
<screenshot>resources/screenshot-05.png</screenshot>
<screenshot>resources/screenshot-06.png</screenshot>
<screenshot>resources/screenshot-07.png</screenshot>
</assets>
</extension>
<extension point="xbmc.addon.repository" name="Harshit's Add-on Repository">
<info compressed="false">https://raw.github.com/sanghviharshit/repository.kodi.hps/master/addons.xml</info>
<checksum>https://raw.github.com/sanghviharshit/repository.kodi.hps/master/addons.xml.md5</checksum>
<datadir zip="true">https://raw.github.com/sanghviharshit/repository.kodi.hps/master/repo/</datadir>
</extension>
</addon>