Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #20 from ksooo/pvr-api-1-9-7
Browse files Browse the repository at this point in the history
Minimal support for PVR Addon API 1.9.7
  • Loading branch information
ksooo committed Jul 3, 2015
2 parents fcc49e7 + 9c5f09d commit 3260a53
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pvr.iptvsimple/addon.xml
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.iptvsimple"
version="1.11.3"
version="1.12.0"
name="PVR IPTV Simple Client"
provider-name="nightik">
<requires>
<c-pluff version="0.1"/>
<import addon="xbmc.pvr" version="1.9.6"/>
<import addon="xbmc.pvr" version="1.9.7"/>
</requires>
<extension
point="xbmc.pvrclient"
Expand Down
3 changes: 3 additions & 0 deletions pvr.iptvsimple/changelog.txt
@@ -1,3 +1,6 @@
v1.12.0
- updated to API v1.9.7

v1.11.3
- updated language files from Transifex

Expand Down
3 changes: 2 additions & 1 deletion src/client.cpp
Expand Up @@ -466,10 +466,11 @@ PVR_ERROR SetRecordingPlayCount(const PVR_RECORDING &recording, int count) { ret
PVR_ERROR SetRecordingLastPlayedPosition(const PVR_RECORDING &recording, int lastplayedposition) { return PVR_ERROR_NOT_IMPLEMENTED; }
int GetRecordingLastPlayedPosition(const PVR_RECORDING &recording) { return -1; }
PVR_ERROR GetRecordingEdl(const PVR_RECORDING&, PVR_EDL_ENTRY[], int*) { return PVR_ERROR_NOT_IMPLEMENTED; };
PVR_ERROR GetTimerTypes(PVR_TIMER_TYPE types[], int *size) { return PVR_ERROR_NOT_IMPLEMENTED; }
int GetTimersAmount(void) { return -1; }
PVR_ERROR GetTimers(ADDON_HANDLE handle) { return PVR_ERROR_NOT_IMPLEMENTED; }
PVR_ERROR AddTimer(const PVR_TIMER &timer) { return PVR_ERROR_NOT_IMPLEMENTED; }
PVR_ERROR DeleteTimer(const PVR_TIMER &timer, bool bForceDelete) { return PVR_ERROR_NOT_IMPLEMENTED; }
PVR_ERROR DeleteTimer(const PVR_TIMER &timer, bool bForceDelete, bool bDeleteScheduled) { return PVR_ERROR_NOT_IMPLEMENTED; }
PVR_ERROR UpdateTimer(const PVR_TIMER &timer) { return PVR_ERROR_NOT_IMPLEMENTED; }
void DemuxAbort(void) {}
DemuxPacket* DemuxRead(void) { return NULL; }
Expand Down

0 comments on commit 3260a53

Please sign in to comment.