Skip to content

Commit

Permalink
Merge pull request #235 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 057d3c5 + 87cb179 commit 068ca74
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pvr.stalker/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.stalker"
version="22.0.0"
version="22.1.0"
name="Stalker Client"
provider-name="Jamal Edey">
<requires>@ADDON_DEPENDS@</requires>
Expand Down
3 changes: 3 additions & 0 deletions pvr.stalker/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
1 change: 1 addition & 0 deletions src/StalkerInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -609,6 +609,7 @@ PVR_ERROR StalkerInstance::GetChannels(bool radio, kodi::addon::PVRChannelsResul
}

PVR_ERROR StalkerInstance::GetChannelStreamProperties(const kodi::addon::PVRChannel& channel,
PVR_SOURCE source,
std::vector<kodi::addon::PVRStreamProperty>& properties)
{
const std::string strUrl = GetChannelStreamURL(channel);
Expand Down
3 changes: 2 additions & 1 deletion src/StalkerInstance.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class ATTR_DLL_LOCAL StalkerInstance : public kodi::addon::CInstancePVRClient,
PVR_ERROR GetChannels(bool radio, kodi::addon::PVRChannelsResultSet& results) override;
PVR_ERROR GetChannelStreamProperties(
const kodi::addon::PVRChannel& channel,
PVR_SOURCE source,
std::vector<kodi::addon::PVRStreamProperty>& properties) override;

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

} // SC
} // SC

0 comments on commit 068ca74

Please sign in to comment.