-
Notifications
You must be signed in to change notification settings - Fork 14
/
addon.xml
52 lines (46 loc) · 1.74 KB
/
addon.xml
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="screensaver.turnoff" name="Turn Off" version="0.10.3" provider-name="dagwieers">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
</requires>
<extension point="xbmc.ui.screensaver" library="default.py"/>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en_GB">Screensaver that turns your display off to save power</summary>
<description lang="en_GB">
The Turn Off screensaver turns your TV, projector or screen off, like any old fashioned screensaver is intended to do.
Next to managing your display, it can also manage your device power state, log your profile off or mute audio to avoid sounds through your A/V receiver.
</description>
<license>GPL-2.0-or-later</license>
<email>[email protected]</email>
<website>https://kodi.wiki/view/Add-on:Turn_Off</website>
<source>https://github.com/dagwieers/screensaver.turnoff</source>
<forum>https://forum.kodi.tv/showthread.php?tid=331076</forum>
<news>
v0.10.3 (2020-08-01)
- Workflow changes for Matrix
v0.10.2 (2019-11-21)
- Create separate entrypoint
- Improve stability
- Add more unit tests
v0.10.1 (2019-10-30)
- Add sanity tests, unit tests and coverage support
- Use JSON-RPC for all built-ins
- Improvements for Python 3
- Support Odroid-C2 display method
v0.10.0 (2019-03-13)
- Support RPi touchscreen display method
- Improve mute and unmuting audio using JSON-RPC
v0.9.2 (2018-06-07)
- Fix translations
- Fix an issue when stopping the screensaver
v0.9.1 (2018-04-14)
- Improve documentation
- Don't log when no action was taken
- Fix sanity issues
</news>
<assets>
<icon>resources/media/icon.png</icon>
</assets>
</extension>
</addon>