diff --git a/pvr.hts/addon.xml.in b/pvr.hts/addon.xml.in index 09d47a87..72507ee7 100644 --- a/pvr.hts/addon.xml.in +++ b/pvr.hts/addon.xml.in @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ diff --git a/pvr.hts/changelog.txt b/pvr.hts/changelog.txt index d05f63d7..d6f374a1 100644 --- a/pvr.hts/changelog.txt +++ b/pvr.hts/changelog.txt @@ -1,3 +1,6 @@ +v22.1.0 +- PVR Add-on API v9.0.0 + v22.0.0 - Initial release for Piers (PVR Add-on API v8.4.0) diff --git a/src/Tvheadend.cpp b/src/Tvheadend.cpp index 2d100534..b9fb15b9 100644 --- a/src/Tvheadend.cpp +++ b/src/Tvheadend.cpp @@ -372,7 +372,9 @@ PVR_ERROR CTvheadend::GetChannels(bool radio, kodi::addon::PVRChannelsResultSet& return PVR_ERROR_NO_ERROR; } -PVR_ERROR CTvheadend::GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, std::vector& properties) +PVR_ERROR CTvheadend::GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, + PVR_SOURCE source, + std::vector& properties) { if (!m_settings->GetStreamingHTTP()) return PVR_ERROR_NO_ERROR; diff --git a/src/Tvheadend.h b/src/Tvheadend.h index 1a57b84f..007d8a41 100644 --- a/src/Tvheadend.h +++ b/src/Tvheadend.h @@ -98,6 +98,7 @@ class ATTR_DLL_LOCAL CTvheadend : public kodi::addon::CInstancePVRClient, PVR_ERROR GetChannelsAmount(int& amount) override; PVR_ERROR GetChannels(bool radio, kodi::addon::PVRChannelsResultSet& results) override; PVR_ERROR GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, + PVR_SOURCE source, std::vector& properties) override; PVR_ERROR GetRecordingsAmount(bool deleted, int& amount) override;