Skip to content

Commit

Permalink
Merge pull request #163 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
phunkyfish authored Oct 4, 2021
2 parents beb00d9 + c1120fd commit bd2ef04
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pvr.dvblink/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.dvblink"
version="20.0.0"
version="20.1.0"
name="TVMosaic/DVBLink PVR Client"
provider-name="DVBLogic">
<requires>@ADDON_DEPENDS@</requires>
Expand Down
5 changes: 5 additions & 0 deletions pvr.dvblink/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v20.1.0
- Kodi PVR API to 8.0.0
- Add supports recordings delete capability
- Enforce EDL limits

v20.0.0
- Updated dependency TinyXML2 to version 9.0.0
- Language update
Expand Down
1 change: 1 addition & 0 deletions src/DVBLinkClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ PVR_ERROR DVBLinkClient::GetCapabilities(kodi::addon::PVRCapabilities& capabilit

capabilities.SetSupportsEPG(true);
capabilities.SetSupportsRecordings(server_caps_.recordings_supported_);
capabilities.SetSupportsRecordingsDelete(server_caps_.recordings_supported_);
capabilities.SetSupportsRecordingsUndelete(false);
capabilities.SetSupportsTimers(server_caps_.recordings_supported_);
capabilities.SetSupportsTV(true);
Expand Down

0 comments on commit bd2ef04

Please sign in to comment.