Skip to content

Commit 068ca74

Browse files
authored
Merge pull request #235 from ksooo/piers-api-9-0-0
v22.1.0: PVR Add-on API v9.0.0
2 parents 057d3c5 + 87cb179 commit 068ca74

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

pvr.stalker/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.stalker"
4-
version="22.0.0"
4+
version="22.1.0"
55
name="Stalker Client"
66
provider-name="Jamal Edey">
77
<requires>@ADDON_DEPENDS@</requires>

pvr.stalker/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/StalkerInstance.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -609,6 +609,7 @@ PVR_ERROR StalkerInstance::GetChannels(bool radio, kodi::addon::PVRChannelsResul
609609
}
610610

611611
PVR_ERROR StalkerInstance::GetChannelStreamProperties(const kodi::addon::PVRChannel& channel,
612+
PVR_SOURCE source,
612613
std::vector<kodi::addon::PVRStreamProperty>& properties)
613614
{
614615
const std::string strUrl = GetChannelStreamURL(channel);

src/StalkerInstance.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ class ATTR_DLL_LOCAL StalkerInstance : public kodi::addon::CInstancePVRClient,
6464
PVR_ERROR GetChannels(bool radio, kodi::addon::PVRChannelsResultSet& results) override;
6565
PVR_ERROR GetChannelStreamProperties(
6666
const kodi::addon::PVRChannel& channel,
67+
PVR_SOURCE source,
6768
std::vector<kodi::addon::PVRStreamProperty>& properties) override;
6869

6970
std::shared_ptr<Stalker::InstanceSettings> settings;
@@ -97,4 +98,4 @@ class ATTR_DLL_LOCAL StalkerInstance : public kodi::addon::CInstancePVRClient,
9798
Stalker::GuideManager* m_guideManager = new Stalker::GuideManager;
9899
};
99100

100-
} // SC
101+
} // SC

0 commit comments

Comments
 (0)