Skip to content

Commit 0c7439e

Browse files
authored
Merge pull request #82 from ksooo/piers-api-9-0-0
v22.1.0: PVR Add-on API v9.0.0
2 parents 4db9ddc + 20f4b7b commit 0c7439e

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

pvr.plutotv/addon.xml.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<addon
33
id="pvr.plutotv"
4-
version="22.0.0"
4+
version="22.1.0"
55
name="Pluto.tv PVR Client"
66
provider-name="Team Kodi, flubshi">
77
<requires>@ADDON_DEPENDS@

pvr.plutotv/changelog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v22.1.0
2+
- PVR Add-on API v9.0.0
3+
14
v22.0.0
25
- Initial release for Piers (PVR Add-on API v8.4.0)
36

src/PlutotvData.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,9 @@ PVR_ERROR PlutotvData::GetChannels(bool radio, kodi::addon::PVRChannelsResultSet
246246
}
247247

248248
PVR_ERROR PlutotvData::GetChannelStreamProperties(
249-
const kodi::addon::PVRChannel& channel, std::vector<kodi::addon::PVRStreamProperty>& properties)
249+
const kodi::addon::PVRChannel& channel,
250+
PVR_SOURCE source,
251+
std::vector<kodi::addon::PVRStreamProperty>& properties)
250252
{
251253
const std::string strUrl = GetChannelStreamURL(channel.GetUniqueId());
252254
kodi::Log(ADDON_LOG_DEBUG, "Stream URL -> %s", strUrl.c_str());

src/PlutotvData.h

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ class ATTR_DLL_LOCAL PlutotvData : public kodi::addon::CAddonBase,
4747
kodi::addon::PVRChannelGroupMembersResultSet& results) override;
4848
PVR_ERROR GetChannelStreamProperties(
4949
const kodi::addon::PVRChannel& channel,
50+
PVR_SOURCE source,
5051
std::vector<kodi::addon::PVRStreamProperty>& properties) override;
5152

5253
PVR_ERROR GetEPGForChannel(int channelUid,

0 commit comments

Comments
 (0)