Skip to content

Commit ce015fb

Browse files
authored
Merge pull request #180 from ksooo/piers-api-9-0-0
v22.1.0: PVR Add-on API v9.0.0
2 parents 3710354 + 05cd6ac commit ce015fb

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

pvr.filmon/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.filmon"
4-
version="22.0.0"
4+
version="22.1.0"
55
name="Filmon Client"
66
provider-name="Stephen Denham">
77
<requires>@ADDON_DEPENDS@</requires>

pvr.filmon/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/PVRFilmonData.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ PVR_ERROR PVRFilmonData::GetChannelGroupsAmount(int& amount)
272272
}
273273

274274
PVR_ERROR PVRFilmonData::GetChannelStreamProperties(const kodi::addon::PVRChannel& channel,
275+
PVR_SOURCE source,
275276
std::vector<kodi::addon::PVRStreamProperty>& properties)
276277
{
277278
std::string strUrl;

src/PVRFilmonData.h

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ class ATTR_DLL_LOCAL PVRFilmonData : public kodi::addon::CAddonBase,
6464
PVR_ERROR UpdateTimer(const kodi::addon::PVRTimer& timer) override;
6565

6666
PVR_ERROR GetChannelStreamProperties(const kodi::addon::PVRChannel& channel,
67+
PVR_SOURCE source,
6768
std::vector<kodi::addon::PVRStreamProperty>& properties) override;
6869
PVR_ERROR GetRecordingStreamProperties(const kodi::addon::PVRRecording& recording,
6970
std::vector<kodi::addon::PVRStreamProperty>& properties) override;

0 commit comments

Comments
 (0)