-
Notifications
You must be signed in to change notification settings - Fork 1
/
addon.xml
53 lines (50 loc) · 2.43 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.picture.photo-frame" name="Photo Frame" version="0.1.3" provider-name="Rigacci.Org">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
</requires>
<extension point="xbmc.python.script" library="addon.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Photo Frame Slideshow</summary>
<summary lang="it">Presentazione Photo Frame</summary>
<description lang="en">Simple slideshow addon, which uses a directory list with geometry information to re-frame every picture on-the-fly. Launch it over a directory by choosing "View in Photo Frame" from the context menu.
Directory list is read from the "playlist.txt" file, inside the directory itself.</description>
<description lang="it">Addon per presentazione di immagini. Usa una playlist con informazioni sulla geometria per ritagliare al volo ogni immagine. Viene eseguito su una cartella dalla voce "Presentazione Photo Frame" del menu contestuale.
La playlist viene letta dal file "playlist.txt" nella stessa cartella.</description>
<license>GNU General Public License, v3</license>
<language></language>
<forum>https://forum.kodi.tv/showthread.php?tid=343296</forum>
<source>https://github.com/RigacciOrg/script.picture.photo-frame</source>
<website>www.rigacci.org</website>
<email>niccolo@rigacci.org</email>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
<screenshot>resources/screenshot-03.jpg</screenshot>
<screenshot>resources/screenshot-02.jpg</screenshot>
<screenshot>resources/screenshot-01.jpg</screenshot>
</assets>
<news>v0.1.3 (2019-09-12)
- Log level is now configurable via add-on settings.
- Prepare for localization.
v0.1.2 (2019-09-08)
- Add-on can now be invoked over a directory or over a playlist file (m3u extension).
- Improved addon.py coding style.
v0.1.1 (2019-09-06)
- The add-on now looks for a playlist named playlist_16x9.m3u or playlist.m3u.
- Moved some files to the resources directory, to comply documentation.
v0.1.0 (2019-08-27)
- Initial release.</news>
</extension>
<extension point="kodi.context.item">
<menu id="kodi.core.main">
<item library="addon.py">
<label>32001</label>
<visible>ListItem.IsFolder + Container.Content(images)</visible>
</item>
</menu>
</extension>
</addon>