-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaddon.xml
23 lines (23 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="weather.dwd" name="DWD (Deutscher Wetterdienst)" version="0.7.1" provider-name="prometheus42">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests"/>
</requires>
<extension point="xbmc.python.weather" library="default.py"/>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Weather forecast from dwd.de (DWD)</summary>
<description lang="en_GB">Weather forecast provided by the German weather service (Deutscher Wetterdienst) DWD (http://dwd.de/)</description>
<summary lang="de_DE">Wetterinformationen vom DWD</summary>
<description lang="de_DE">Wetterinformationen vom Deutschen Wetterdienst (DWD)</description>
<language>en de</language>
<platform>all</platform>
<license>GPL-2.0-or-later</license>
<website>https://github.com/prometheus42/weather.dwd</website>
<source>https://github.com/prometheus42/weather.dwd</source>
<assets>
<icon>resources/media/icon.png</icon>
<fanart>resources/media/fanart.jpg</fanart>
</assets>
</extension>
</addon>