forked from jurialmunkey/plugin.video.themoviedb.helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
88 lines (88 loc) · 4.44 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="UTF-8"?>
<addon id="plugin.video.themoviedb.helper"
version="4.7.29"
name="TheMovieDb Helper"
provider-name="jurialmunkey">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests" version="2.9.1"/>
<import addon="script.module.pil" version="1.1.7"/>
</requires>
<extension point="xbmc.python.pluginsource" library="plugin.py">
<provides>video</provides>
</extension>
<extension point="xbmc.python.script" library="script.py" />
<extension point="xbmc.service" library="service.py" />
<extension point="kodi.context.item">
<menu id="kodi.core.main">
<item library="context.py" args="playusing">
<label>$ADDON[plugin.video.themoviedb.helper 32322]</label>
<visible>!String.IsEmpty(ListItem.Property(tmdbhelper.context.playusing))</visible>
</item>
<item library="context.py" args="related">
<label>$ADDON[plugin.video.themoviedb.helper 32235]</label>
<visible>!String.IsEmpty(ListItem.Property(tmdbhelper.context.related))</visible>
</item>
<item library="context.py" args="addlibrary">
<label>$LOCALIZE[20444]</label>
<visible>!String.IsEmpty(ListItem.Property(tmdbhelper.context.addlibrary))</visible>
</item>
<item library="context.py" args="trakt">
<label>$ADDON[plugin.video.themoviedb.helper 32295]</label>
<visible>!String.IsEmpty(ListItem.Property(tmdbhelper.context.trakt))</visible>
</item>
<item library="context.py" args="refresh">
<label>$ADDON[plugin.video.themoviedb.helper 32233]</label>
<visible>!String.IsEmpty(ListItem.Property(tmdbhelper.context.refresh))</visible>
</item>
<item library="context.py" args="artwork">
<label>$ADDON[plugin.video.themoviedb.helper 32222]</label>
<visible>!String.IsEmpty(ListItem.Property(tmdbhelper.context.artwork))</visible>
</item>
<item library="context.py" args="sorting">
<label>$ADDON[plugin.video.themoviedb.helper 32309]</label>
<visible>!String.IsEmpty(ListItem.Property(tmdbhelper.context.sorting))</visible>
</item>
</menu>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">TheMovieDb Helper - Now With Trakt Support!</summary>
<summary lang="es_ES">TheMovieDb Helper - ¡Ahora con soporte para Trakt!</summary>
<summary lang="fr_FR">TheMovieDb Helper - Maintenant avec support Trakt!</summary>
<description lang="en_GB">TheMovieDb Helper provides details about movies, tvshows and actors from TMDb. Users can access a variety of lists from TMDb and Trakt.</description>
<description lang="es_ES">TheMovieDb Helper proporciona detalles sobre películas, programas de televisión y actores de TMDb. Los usuarios pueden acceder a una variedad de listas desde TMDb y Trakt.</description>
<description lang="fr_FR">TheMovieDb Helper fournit des détails sur les films, les émissions de télévision et acteurs de TMDb. Les utilisateurs peuvent accéder à une variété de listes TMDb et Trakt.</description>
<disclaimer lang="en_GB">Provided by TheMovieDb and Trakt.</disclaimer>
<disclaimer lang="es_ES">Proporcionado por TheMovieDb y Trakt</disclaimer>
<disclaimer lang="fr_FR">Fourni par TheMovieDb et Trakt.</disclaimer>
<license>GPL-3.0-or-later</license>
<website>https://github.com/jurialmunkey/plugin.video.themoviedb.helper</website>
<forum>https://forum.kodi.tv/showthread.php?tid=345847</forum>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot>resources/screenshot-01.jpg</screenshot>
<screenshot>resources/screenshot-02.jpg</screenshot>
</assets>
<news>
- Improved PVR service matching
- Avoid unnecessary FanartTV re-requests
- Add In-Progress Episodes Trakt list
- Add Still to Watch Trakt list (In-Progress+Watchlist)
- Allow stacking of episodes from same show in calendar
- Fix collection matching and query encoding
- Better list filtering options
- Add cacheonly=true param for faster dialog widget loading
- Add script getter/setter functions for audio/subs in player
- Allow larger sync list items per page limits
- Fix plugincategory labels
- Fix randomised lists not refreshing
- Fix string formatter for update to Py3.7 in 19.3
- Fix fallback players when asserted value not available
- Allow both mark as watched/unwatched in Trakt options
- Update branding and icons
- Add temporary service pause for custom dialogs via Window.Property(TMDbHelper.ServicePause)
- Artwork monitor fixes
</news>
</extension>
</addon>