forked from gitgiggety/plugin.video.stash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
addon.xml
33 lines (33 loc) · 1.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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.stash" name="Stash Kodi Plugin" version="dev" provider-name="gitgiggety">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests" version="2.9.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">View videos tracked in Stash</summary>
<description lang="en_GB">Plugin to browse and view videos which are tracked in Stash (stashapp.io)</description>
<disclaimer lang="en_GB"></disclaimer>
<language>en</language>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE Version 2, June 1991</license>
<website>https://stashapp.cc</website>
<email>gitgiggety@outlook.com</email>
<source>https://github.com/gitgiggety/plugin.video.stash</source>
<news>
v0.0.3 (2021-09-13):
- Add context menu item to increase O-counter
- Add directory for default filter
- Add translation support
- Support browsing (and playback of) markers, in form of all, using saved filters, and by performer, tag and scene tag
- Fix error when scene has no studio set (#1)
</news>
<assets>
<icon>resources/stash_logo.png</icon>
<fanart></fanart>
</assets>
</extension>
</addon>