Skip to content

Commit

Permalink
Merge pull request #180 from AlwinEsch/Nexus-change
Browse files Browse the repository at this point in the history
[Nexus] Add supports recordings delete capability for PVR API 8.0.0
  • Loading branch information
janbar authored Oct 10, 2021
2 parents ab75019 + eaf38c0 commit 0a40fcb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pvr.mythtv/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.mythtv"
version="20.0.0"
version="20.1.0"
name="MythTV PVR Client"
provider-name="Christian Fetzer, Jean-Luc Barrière">
<requires>@ADDON_DEPENDS@</requires>
Expand Down
5 changes: 5 additions & 0 deletions pvr.mythtv/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v20.1.0
- Kodi API to 8.0.0
- Add supports recordings delete capability
- Enforce EDL limits

v20.0.0
- Translations updates from Weblate
- Changed test builds to 'Kodi 20 Nexus'
Expand Down
1 change: 1 addition & 0 deletions src/pvrclient-mythtv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ PVR_ERROR PVRClientMythTV::GetCapabilities(kodi::addon::PVRCapabilities& capabil
capabilities.SetHandlesDemuxing(false);

capabilities.SetSupportsRecordings(true);
capabilities.SetSupportsRecordingsDelete(true);
capabilities.SetSupportsRecordingsUndelete(true);
capabilities.SetSupportsRecordingPlayCount((version < 80 ? false : true));
capabilities.SetSupportsLastPlayedPosition((version < 88 || !CMythSettings::GetUseBackendBookmarks() ? false : true));
Expand Down

0 comments on commit 0a40fcb

Please sign in to comment.