From 954829cccf7a91873dd44e5c6b81f88a8aca9700 Mon Sep 17 00:00:00 2001 From: phunkyfish Date: Thu, 26 Mar 2020 12:13:35 +0000 Subject: [PATCH] PVR API 6.3.0 --- README.md | 3 ++- pvr.dvbviewer/addon.xml.in | 2 +- pvr.dvbviewer/changelog.txt | 3 +++ src/client.cpp | 1 + 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7cd53941..8d5aaf6c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ -[![License: GPL v2](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](LICENSE.md) +[![License: GPL v2+](https://img.shields.io/badge/License-GPL%20v2+-blue.svg)](LICENSE.md) [![Build Status](https://travis-ci.org/kodi-pvr/pvr.dvbviewer.svg?branch=Matrix)](https://travis-ci.org/kodi-pvr/pvr.dvbviewer/branches) [![Build Status](https://ci.appveyor.com/api/projects/status/github/manuelm/pvr.dvbviewer?svg=true)](https://ci.appveyor.com/project/manuelm/pvr.dvbviewer) +[![Build Status](https://jenkins.kodi.tv/view/Addons/job/kodi-pvr/job/pvr.dvbviewer/job/Matrix/badge/icon)](https://jenkins.kodi.tv/blue/organizations/jenkins/kodi-pvr%2Fpvr.dvbviewer/branches/) [![Coverity Scan Build Status](https://scan.coverity.com/projects/5120/badge.svg)](https://scan.coverity.com/projects/5120) # DVBViewer PVR diff --git a/pvr.dvbviewer/addon.xml.in b/pvr.dvbviewer/addon.xml.in index e3f85c41..2e2fc22d 100644 --- a/pvr.dvbviewer/addon.xml.in +++ b/pvr.dvbviewer/addon.xml.in @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ diff --git a/pvr.dvbviewer/changelog.txt b/pvr.dvbviewer/changelog.txt index 4239b8d4..4dc2a6ad 100644 --- a/pvr.dvbviewer/changelog.txt +++ b/pvr.dvbviewer/changelog.txt @@ -1,3 +1,6 @@ +4.1.6: +[updated] PVR API 6.3.0 + 4.1.5: [added] GPL2 license file and show GPL2 on README.md [updated] Debian build code diff --git a/src/client.cpp b/src/client.cpp index aa15491a..9d8564ff 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -543,6 +543,7 @@ PVR_ERROR SetRecordingLifetime(const PVR_RECORDING*) { return PVR_ERROR_NOT_IMPL PVR_ERROR RenameRecording(const PVR_RECORDING&) { return PVR_ERROR_NOT_IMPLEMENTED; } PVR_ERROR UndeleteRecording(const PVR_RECORDING&) { return PVR_ERROR_NOT_IMPLEMENTED; } PVR_ERROR DeleteAllRecordingsFromTrash() { return PVR_ERROR_NOT_IMPLEMENTED; } +PVR_ERROR GetRecordingSize(const PVR_RECORDING* recording, int64_t* sizeInBytes) { return PVR_ERROR_NOT_IMPLEMENTED; } PVR_ERROR SetEPGTimeFrame(int) { return PVR_ERROR_NOT_IMPLEMENTED; } PVR_ERROR IsEPGTagPlayable(const EPG_TAG*, bool*) { return PVR_ERROR_NOT_IMPLEMENTED; } PVR_ERROR IsEPGTagRecordable(const EPG_TAG*, bool*) { return PVR_ERROR_NOT_IMPLEMENTED; }