-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaddon.xml
66 lines (57 loc) · 2.65 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
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.mpremote.interface" name="Media Player Remote Interface" version="1.0.8" provider-name="wastis">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
</requires>
<extension point="xbmc.service" library="resources/lib/service.py"/>
<extension point="xbmc.addon.metadata">
<platform>linux</platform>
<summary lang="en">Enables the control of Kodi with standard desktop apps and multimedia keys.</summary>
<summary lang="de_DE">Ermöglicht die Steuerung von Kodi durch Standardanwendungen und Multimediatasten.</summary>
<description lang="en">This MPRIS implementation forwards the desktop- and keyboard multimedia control events to Kodi and provides meta data back to the desktop for display in system tray controls.</description>
<description lang="de_DE">Diese MPRIS Implementierung leited die Multimedia- Steuerungsbefehle von der Tastatur und der Arbeitsumgebung and Kodi weiter und liefert Medieninformation zur Anzeige im Infobereich zurück.</description>
<license>GPL-3.0-or-later</license>
<forum>https://forum.kodi.tv/showthread.php?tid=367961</forum>
<source>/~https://github.com/wastis/MediaPlayerRemoteInterface</source>
<disclaimer lang="en_GB">/~https://github.com/wastis/MediaPlayerRemoteInterface</disclaimer>
<disclaimer lang="de_DE">/~https://github.com/wastis/MediaPlayerRemoteInterface</disclaimer>
<news>
v1.0.8
- change mpris name to tv.kodi.Kodi for simplified flatpak installation
v1.0.7
- translate play command from the OS to the play_pause command.
This should fix problems on e.g. KDE.
v1.0.6
- new icon
- included into linux addon repository
v1.0.5
- change logo
- show Kodi logo in tray player, if media art is not available
- some system improvements
v1.0.4
- send key commands instead of directly calling functions:
this way keypresses can be overwritten by keyboard.xml
- removed previous / next switch between episodes in tvshows
this shall be handled seperately, if needed
- icon change
v1.0.3
- Use cached images, this will also show thumbnails if source is on samba drive
- previous / next to switch between episodes in tvshows
- improved stability on previous / next
- enable / disable screen buttons according to their function availability
- improvements on meta data mapping
v1.0.2
- Next title position jump fixed
v1.0.1
- Fix seek position on tray icon
- Publish more media inormation
- Better signal handling
v1.0.0
- Initial Version</news>
<assets>
<icon>resources/media/icon1.png</icon>
<fanart>resources/media/fanart.jpg</fanart>
<screenshot>resources/media/kodi-cinnamon-applet-player.jpg</screenshot>
</assets>
</extension>
</addon>