Skip to content

Commit

Permalink
Merge pull request #73 from phunkyfish/pvr-api
Browse files Browse the repository at this point in the history
PVR API 6.3.0
  • Loading branch information
phunkyfish committed Mar 26, 2020
2 parents 7d0fa71 + e5a487d commit 2d58229
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
@@ -1,6 +1,7 @@
[![License: GPL v2+](https://img.shields.io/badge/License-GPL%20v2+-blue.svg)](LICENSE.md)
[![Build Status](https://travis-ci.org/kodi-pvr/pvr.pctv.svg?branch=Matrix)](https://travis-ci.org/kodi-pvr/pvr.pctv/branches)
[![Build Status](https://dev.azure.com/teamkodi/kodi-pvr/_apis/build/status/kodi-pvr.pvr.pctv?branchName=Matrix)](https://dev.azure.com/teamkodi/kodi-pvr/_build/latest?definitionId=66&branchName=Matrix)
[![Build Status](https://jenkins.kodi.tv/view/Addons/job/kodi-pvr/job/pvr.pctv/job/Matrix/badge/icon)](https://jenkins.kodi.tv/blue/organizations/jenkins/kodi-pvr%2Fpvr.pctv/branches/)
[![Coverity Scan Build Status](https://scan.coverity.com/projects/5120/badge.svg)](https://scan.coverity.com/projects/5120)

# PCTV PVR
Expand Down
2 changes: 1 addition & 1 deletion pvr.pctv/addon.xml.in
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.pctv"
version="3.1.2"
version="3.1.3"
name="PCTV Systems Client"
provider-name="PCTV Systems">
<requires>@ADDON_DEPENDS@</requires>
Expand Down
3 changes: 3 additions & 0 deletions pvr.pctv/changelog.txt
@@ -1,3 +1,6 @@
3.1.3
- Update PVR API 6.3.0

3.1.2
- Update Debian build code
- Update with some minor cleanups
Expand Down
1 change: 1 addition & 0 deletions src/client.cpp
Expand Up @@ -516,6 +516,7 @@ long long SeekLiveStream(long long iPosition, int iWhence /* = SEEK_SET */) { re
long long LengthLiveStream(void) { return -1; }
PVR_ERROR SetRecordingPlayCount(const PVR_RECORDING &recording, int count) { return PVR_ERROR_NOT_IMPLEMENTED; }
PVR_ERROR GetRecordingEdl(const PVR_RECORDING&, PVR_EDL_ENTRY[], int*) { return PVR_ERROR_NOT_IMPLEMENTED; };
PVR_ERROR GetRecordingSize(const PVR_RECORDING* recording, int64_t* sizeInBytes) { return PVR_ERROR_NOT_IMPLEMENTED; }
void PauseStream(bool bPaused) {}
bool CanPauseStream(void) { return false; }
bool CanSeekStream(void) { return false; }
Expand Down

0 comments on commit 2d58229

Please sign in to comment.