SickGear/sickbeard/clients/kodi/service.sickgear.watchedstate.updater/addon.xml
JackDandy 8d9406d5fc Add choose to delete watched episodes from a list of played media at Kodi, Emby, and/or Plex.
Add episode watched state system that integrates with Kodi, Plex, and/or Emby, instructions at Shows/History/Layout/"Watched".
Add installable SickGear Kodi repository containing addon "SickGear Watched State Updater".
Change add Emby setting for watched state scheduler at Config/Notifications/Emby/"Update watched interval".
Change add Plex setting for watched state scheduler at Config/Notifications/Plex/"Update watched interval".
Add API cmd=sg.updatewatchedstate, instructions for use are linked to in layout "Watched" at /history.
Change history page table filter input values are saved across page refreshes.
Change history page table filter inputs, accept values like "dvd or web" to only display both.
Change history page table filter inputs, press 'ESC' key inside a filter input to reset it.
Add provider activity stats to Shows/History/Layout/ drop down.
Change move provider failures table from Manage/Media Search to Shows/History/Layout/Provider fails.
Change sort provider failures by most recent failure, and with paused providers at the top.
Change remove table form non-testing version 20007, that was reassigned.
2018-03-06 02:12:45 +00:00

35 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.sickgear.watchedstate.updater" name="SickGear Watched State Updater" version="1.0.3" provider-name="SickGear">
<requires>
<import addon="xbmc.python" version="2.19.0" />
<import addon="xbmc.json" version="6.20.0" />
<import addon="xbmc.addon" version="14.0.0" />
</requires>
<extension point="xbmc.service" library="service.py" start="login" />
<extension point="xbmc.python.pluginsource" library="service.py" >
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">SickGear Watched State Updater</summary>
<description lang="en">This Add-on notifies SickGear when an episode watched state is changed in Kodi</description>
<platform>all</platform>
<language>en</language>
<disclaimer/>
<license/>
<forum/>
<website>https://github.com/sickgear/sickgear</website>
<email/>
<nofanart>true</nofanart>
<source>https://github.com/sickgear/sickgear</source>
<assets>
<icon>icon.png</icon>
</assets>
<news>[B]1.0.0[/B] (2017-10-04)
- Initial release
[B]1.0.2[/B] (2017-11-15)
- Devel release for an SG API change
[B]1.0.3[/B] (2018-02-28)
- Add episodeid to payload
</news>
</extension>
</addon>