Skip to content

Commit

Permalink
Merge pull request #82 from ksooo/piers-api-9-0-0
Browse files Browse the repository at this point in the history
v22.1.0: PVR Add-on API v9.0.0
  • Loading branch information
ksooo authored Aug 16, 2024
2 parents 4db9ddc + 20f4b7b commit 0c7439e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pvr.plutotv/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.plutotv"
version="22.0.0"
version="22.1.0"
name="Pluto.tv PVR Client"
provider-name="Team Kodi, flubshi">
<requires>@ADDON_DEPENDS@
Expand Down
3 changes: 3 additions & 0 deletions pvr.plutotv/changelog.txt
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 3 additions & 1 deletion src/PlutotvData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,9 @@ PVR_ERROR PlutotvData::GetChannels(bool radio, kodi::addon::PVRChannelsResultSet
}

PVR_ERROR PlutotvData::GetChannelStreamProperties(
const kodi::addon::PVRChannel& channel, std::vector<kodi::addon::PVRStreamProperty>& properties)
const kodi::addon::PVRChannel& channel,
PVR_SOURCE source,
std::vector<kodi::addon::PVRStreamProperty>& properties)
{
const std::string strUrl = GetChannelStreamURL(channel.GetUniqueId());
kodi::Log(ADDON_LOG_DEBUG, "Stream URL -> %s", strUrl.c_str());
Expand Down
1 change: 1 addition & 0 deletions src/PlutotvData.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class ATTR_DLL_LOCAL PlutotvData : public kodi::addon::CAddonBase,
kodi::addon::PVRChannelGroupMembersResultSet& results) override;
PVR_ERROR GetChannelStreamProperties(
const kodi::addon::PVRChannel& channel,
PVR_SOURCE source,
std::vector<kodi::addon::PVRStreamProperty>& properties) override;

PVR_ERROR GetEPGForChannel(int channelUid,
Expand Down

0 comments on commit 0c7439e

Please sign in to comment.