Skip to content

Commit 5109b7c

Browse files
committed
Merge remote-tracking branch 'origin/Piers' into contentrating
2 parents f30a841 + fec5c55 commit 5109b7c

9 files changed

+17
-11
lines changed

.github/workflows/increment-version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Increment version when languages are updated
22

33
on:
44
push:
5-
branches: [ Matrix, Nexus, Omega ]
5+
branches: [ Matrix, Nexus, Omega, Piers ]
66
paths:
77
- '**resource.language.**strings.po'
88

.github/workflows/sync-addon-metadata-translations.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Sync addon metadata translations
22

33
on:
44
push:
5-
branches: [ Matrix, Nexus, Omega ]
5+
branches: [ Matrix, Nexus, Omega, Piers ]
66
paths:
77
- '**addon.xml.in'
88
- '**resource.language.**strings.po'

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
buildPlugin(version: "Omega")
1+
buildPlugin(version: "Piers")

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![License: GPL-2.0-or-later](https://img.shields.io/badge/License-GPL%20v2+-blue.svg)](LICENSE.md)
2-
[![Build and run tests](https://github.com/kodi-pvr/pvr.nextpvr/actions/workflows/build.yml/badge.svg?branch=Omega)](https://github.com/kodi-pvr/pvr.nextpvr/actions/workflows/build.yml)
3-
[![Build Status](https://dev.azure.com/teamkodi/kodi-pvr/_apis/build/status/kodi-pvr.pvr.nextpvr?branchName=Omega)](https://dev.azure.com/teamkodi/kodi-pvr/_build/latest?definitionId=64&branchName=Omega)
4-
[![Build Status](https://jenkins.kodi.tv/view/Addons/job/kodi-pvr/job/pvr.nextpvr/job/Omega/badge/icon)](https://jenkins.kodi.tv/blue/organizations/jenkins/kodi-pvr%2Fpvr.nextpvr/branches/)
2+
[![Build and run tests](https://github.com/kodi-pvr/pvr.nextpvr/actions/workflows/build.yml/badge.svg?branch=Piers)](https://github.com/kodi-pvr/pvr.nextpvr/actions/workflows/build.yml)
3+
[![Build Status](https://dev.azure.com/teamkodi/kodi-pvr/_apis/build/status/kodi-pvr.pvr.nextpvr?branchName=Piers)](https://dev.azure.com/teamkodi/kodi-pvr/_build/latest?definitionId=64&branchName=Piers)
4+
[![Build Status](https://jenkins.kodi.tv/view/Addons/job/kodi-pvr/job/pvr.nextpvr/job/Piers/badge/icon)](https://jenkins.kodi.tv/blue/organizations/jenkins/kodi-pvr%2Fpvr.nextpvr/branches/)
55

66
# NextPVR PVR
77
NextPVR PVR client addon for [Kodi](https://kodi.tv)

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ variables:
44
trigger:
55
branches:
66
include:
7-
- Nexus
7+
- Piers
88
- Omega
99
- releases/*
1010
paths:

pvr.nextpvr/addon.xml.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<addon
33
id="pvr.nextpvr"
4-
version="22.0.0"
4+
version="22.1.0"
55
name="NextPVR PVR Client"
66
provider-name="Graeme Blackley">
77
<requires>@ADDON_DEPENDS@
8-
<import addon="inputstream.ffmpegdirect" minversion="1.15.0" optional="true"/>
8+
<import addon="inputstream.ffmpegdirect" minversion="22.0.0"/>
99
</requires>
1010
<extension
1111
point="kodi.pvrclient"

pvr.nextpvr/changelog.txt

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
v22.1.0
2+
- PVR Add-on API v9.0.0
3+
4+
v22.0.0
5+
- Initial release for Piers (PVR Add-on API v8.4.0)
6+
17
v21.0.4
28
- Allow control of recording and timers access
39
- Support all episode single channel recordings

src/pvrclient-nextpvr.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ PVR_ERROR cPVRClientNextPVR::GetDriveSpace(uint64_t& total, uint64_t& used)
562562
return m_recordings.GetDriveSpace(total, used);
563563
}
564564

565-
PVR_ERROR cPVRClientNextPVR::GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, std::vector<kodi::addon::PVRStreamProperty>& properties)
565+
PVR_ERROR cPVRClientNextPVR::GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, PVR_SOURCE source, std::vector<kodi::addon::PVRStreamProperty>& properties)
566566
{
567567
bool liveStream = m_channels.IsChannelAPlugin(channel.GetUniqueId());
568568
if (liveStream)

src/pvrclient-nextpvr.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class ATTR_DLL_LOCAL cPVRClientNextPVR : public kodi::addon::CInstancePVRClient
109109
PVR_ERROR GetChannelGroupsAmount(int& amount) override;
110110
PVR_ERROR GetChannelGroups(bool radio, kodi::addon::PVRChannelGroupsResultSet& results) override;
111111
PVR_ERROR GetChannelGroupMembers(const kodi::addon::PVRChannelGroup& group, kodi::addon::PVRChannelGroupMembersResultSet& results) override;
112-
PVR_ERROR GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, std::vector<kodi::addon::PVRStreamProperty>& properties) override;
112+
PVR_ERROR GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, PVR_SOURCE source, std::vector<kodi::addon::PVRStreamProperty>& properties) override;
113113
PVR_ERROR GetEPGForChannel(int channelUid, time_t start, time_t end, kodi::addon::PVREPGTagsResultSet& results) override;
114114
//PVR_ERROR SetEPGTimeFrame(int epgMaxDays) override;
115115

0 commit comments

Comments
 (0)