-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
46 lines (46 loc) · 1.98 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.audio.radiofrance" name="RadioFrance — Lives and Podcasts" version="1.1.3" provider-name="bateast">
<requires>
<import addon="script.module.requests" version="2.25.1" />
<import addon="xbmc.python" version="3.0.0" />
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">https://www.radiofrance.fr</summary>
<license>GPL-3.0-or-later</license>
<description lang="en">Get media, livestations and podcasts from RadioFrance (https://www.radiofrance.fr/podcasts)</description>
<website>https://github.com/bateast/plugin.audio.radiofrance</website>
<source>https://github.com/bateast/plugin.audio.radiofrance</source>
<platform>all</platform>
<news>
v1.1.4 (2024-11)
- minor fix on slider element
v1.1.3 (2024-10)
- robustify against radiofrance pages
v1.1.2 (2024-10)
- refactor
- speed-up by caching http responses
v1.1.1 (2024-09)
- robustify against json parsing errors
v1.1.0 (2024-08)
- Speedup by using multithreading pool
- [backend] rework to move gui element creation to Class based structure
v1.0.0 (2024-08)
- Open to live station and RadioFrance landing page
- Add translation
- *Rename to RadioFrance*
- add formal icon and fanart
v0.1.0 (2024-04-23)
- First workable version
v0.2.0 (2024-04-24)
- Major cleanup for to handle more properly RadioFrance svelte logic
- Add Search function
</news>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
</assets>
</extension>
</addon>