Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minimal support for PVR API 2.1.0 #16

Merged
merged 2 commits into from Jul 20, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions pvr.vuplus/addon.xml
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.vuplus"
version="1.11.2"
version="1.11.3"
name="VU+ / Enigma2 Client"
provider-name="Joerg Dembski">
<requires>
<c-pluff version="0.1"/>
<import addon="xbmc.pvr" version="2.0.0"/>
<import addon="xbmc.pvr" version="2.1.0"/>
</requires>
<extension
point="xbmc.pvrclient"
Expand Down
3 changes: 3 additions & 0 deletions pvr.vuplus/changelog.txt
@@ -1,3 +1,6 @@
1.11.3
- Updated to PVR API v2.1.0q

1.11.2
- Debian packaging: fix library install path
- Miscellaneous backend fixes
Expand Down
1 change: 1 addition & 0 deletions src/client.cpp
Expand Up @@ -588,6 +588,7 @@ bool CanPauseStream(void) { return false; }
bool CanSeekStream(void) { return false; }
bool SeekTime(int,bool,double*) { return false; }
void SetSpeed(int) {};
bool IsTimeshifting(void) { return false; }
time_t GetPlayingTime() { return 0; }
time_t GetBufferTimeStart() { return 0; }
time_t GetBufferTimeEnd() { return 0; }
Expand Down