diff --git a/Jenkinsfile b/Jenkinsfile index 874d461..b8416e6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1 +1 @@ -buildPlugin(version: "Nexus") +buildPlugin(version: "Piers") diff --git a/pvr.octonet/addon.xml.in b/pvr.octonet/addon.xml.in index 8e236fb..7da8bf7 100644 --- a/pvr.octonet/addon.xml.in +++ b/pvr.octonet/addon.xml.in @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ diff --git a/pvr.octonet/changelog.txt b/pvr.octonet/changelog.txt index 83bf8de..02e704f 100644 --- a/pvr.octonet/changelog.txt +++ b/pvr.octonet/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/OctonetData.cpp b/src/OctonetData.cpp index 364eb0d..b397dde 100644 --- a/src/OctonetData.cpp +++ b/src/OctonetData.cpp @@ -273,7 +273,7 @@ PVR_ERROR OctonetData::GetChannels(bool radio, kodi::addon::PVRChannelsResultSet return PVR_ERROR_NO_ERROR; } -PVR_ERROR OctonetData::GetChannelStreamProperties(const kodi::addon::PVRChannel& channelinfo, std::vector& properties) +PVR_ERROR OctonetData::GetChannelStreamProperties(const kodi::addon::PVRChannel& channelinfo, PVR_SOURCE source, std::vector& properties) { properties.emplace_back(PVR_STREAM_PROPERTY_INPUTSTREAM, "inputstream.ffmpegdirect"); properties.emplace_back("inputstream.ffmpegdirect.is_realtime_stream", "true"); diff --git a/src/OctonetData.h b/src/OctonetData.h index 338a0d2..9d55ea5 100644 --- a/src/OctonetData.h +++ b/src/OctonetData.h @@ -67,7 +67,9 @@ public: PVR_ERROR GetChannelGroups(bool radio, kodi::addon::PVRChannelGroupsResultSet& results) override; PVR_ERROR GetChannelGroupMembers(const kodi::addon::PVRChannelGroup& group, kodi::addon::PVRChannelGroupMembersResultSet& results) override; - PVR_ERROR GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, std::vector& properties) override; + PVR_ERROR GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, + PVR_SOURCE source, + std::vector& properties) override; PVR_ERROR GetEPGForChannel(int channelUid, time_t start,