-
Notifications
You must be signed in to change notification settings - Fork 6
/
addon.xml
61 lines (53 loc) · 2.16 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
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.openvfd" name="OpenVFD" version="1.0.6" provider-name="Arthur Liberman">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
</requires>
<extension point="xbmc.service" library="service.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Service for controlling VFD displays</summary>
<summary lang="es">Servicio de control de pantallas VFD</summary>
<description lang="en">Service for controlling VFD displays, e.g. Display icons (Ethernet/WiFi connection status) Time, Date, Playback time</description>
<description lang="es">Servicio para controlar las pantallas VFD, p. ej. Iconos de pantalla (estado de la conexión Ethernet/WiFi) Hora, Fecha, Tiempo de reproducción</description>
<source>https://github.com/arthur-liberman/service.openvfd</source>
<platform>all</platform>
<assets>
<icon>icon.png</icon>
</assets>
<news>v1.0.6 (2023-10-07)
- Fix compatibility with Kodi 21 "Omega".
v1.0.5 (2020-12-28)
- Fix compatibility with Kodi 19 "Matrix".
v1.0.4 (2020-07-10)
- Add support for multiple Ethernet and WiFi interfaces for the network indicators.
v1.0.3 (2019-02-16)
- Fix Alarm for storage access indicator.
- Fix Indicators items being greyed out in the addon settings.
v1.0.2 (2018-08-01)
- Fix temperature showing 0C in some situations.
v1.0.1 (2018-06-12)
- Add support for turning individual indicators on and off.
- Fix playback time remains on display after the playback ends.
OpenVFD:
--------
v1.0.0
- Rename addon to OpenVFD.
- Add temperature, playback time (PVR sources not supported) and date display.
- Expand and rearrange the settings.
FD628:
------
v110
- Rewrite add-on from scratch
- Add support for APPS, SETUP, CVBS (X92) and POWER (A1 Max) indicators.
- Add a configuration dialog:
* Adjust display brightness.
* Storage access indication.
* Advanced hardware configuration of the display.
- Fix crash if aml_fd628 module is not loaded (led_on, led_off files don't exist)
- Fix disable add-on from Kodi UI.
- Turn off indicators when add-on is disabled.
v100
- Initial add-on
</news>
</extension>
</addon>