Skip to content

Commit e492363

Browse files
authored
Merge pull request #171 from ksooo/piers-api-9-0-0
v22.1.0: PVR Add-on API v9.0.0
2 parents 61557b6 + a305daf commit e492363

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

pvr.hdhomerun/addon.xml.in

Lines changed: 1 addition & 1 deletion
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.hdhomerun"
4-
version="22.0.0"
4+
version="22.1.0"
55
name="HDHomeRun Client"
66
provider-name="Zoltan Csizmadia ([email protected])">
77
<requires>@ADDON_DEPENDS@</requires>

pvr.hdhomerun/changelog.txt

Lines changed: 3 additions & 0 deletions
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/HDHomeRunTuners.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ PVR_ERROR HDHomeRunTuners::GetChannels(bool radio, kodi::addon::PVRChannelsResul
413413
return PVR_ERROR_NO_ERROR;
414414
}
415415

416-
PVR_ERROR HDHomeRunTuners::GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, std::vector<kodi::addon::PVRStreamProperty>& properties)
416+
PVR_ERROR HDHomeRunTuners::GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, PVR_SOURCE source, std::vector<kodi::addon::PVRStreamProperty>& properties)
417417
{
418418
std::string strUrl = GetChannelStreamURL(channel);
419419
if (strUrl.empty())

src/HDHomeRunTuners.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class ATTR_DLL_LOCAL HDHomeRunTuners
7373
bool Update(int nMode = UpdateDiscover | UpdateLineUp | UpdateGuide);
7474
PVR_ERROR GetChannels(bool radio, kodi::addon::PVRChannelsResultSet& results) override;
7575
PVR_ERROR GetChannelsAmount(int& amount) override;
76-
PVR_ERROR GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, std::vector<kodi::addon::PVRStreamProperty>& properties) override;
76+
PVR_ERROR GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, PVR_SOURCE source, std::vector<kodi::addon::PVRStreamProperty>& properties) override;
7777
PVR_ERROR GetSignalStatus(int channelUid, kodi::addon::PVRSignalStatus& signalStatus) override;
7878
PVR_ERROR GetEPGForChannel(int channelUid, time_t start, time_t end, kodi::addon::PVREPGTagsResultSet& results) override;
7979
PVR_ERROR GetChannelGroupsAmount(int& amount) override;

0 commit comments

Comments
 (0)