[SCM] kodi-pvr-vdr-vnsi/master: Fix timer type definition for EPG search timer.
tiber-guest at users.alioth.debian.org
tiber-guest at users.alioth.debian.org
Fri Nov 4 00:20:26 UTC 2016
The following commit has been merged in the master branch:
commit 62b8e425c3fdb026e4eb61f6797d465059e3e7b7
Author: Kai Sommerfeld <kai.sommerfeld at gmx.com>
Date: Mon Sep 5 11:54:16 2016 +0200
Fix timer type definition for EPG search timer.
diff --git a/pvr.vdr.vnsi/addon.xml.in b/pvr.vdr.vnsi/addon.xml.in
index c1e2023..5052fc2 100644
--- a/pvr.vdr.vnsi/addon.xml.in
+++ b/pvr.vdr.vnsi/addon.xml.in
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.vdr.vnsi"
- version="2.6.4"
+ version="2.6.5"
name="VDR VNSI Client"
provider-name="FernetMenta, Team Kodi">
<requires>
diff --git a/src/VNSIData.cpp b/src/VNSIData.cpp
index d0e9aa5..8e0a13d 100644
--- a/src/VNSIData.cpp
+++ b/src/VNSIData.cpp
@@ -716,8 +716,7 @@ PVR_ERROR cVNSIData::GetTimerTypes(PVR_TIMER_TYPE types[], int *size)
memset(&types[*size], 0, sizeof(types[*size]));
types[*size].iId = VNSI_TIMER_TYPE_EPG_SEARCH;
strncpy(types[*size].strDescription, XBMC->GetLocalizedString(30204), 64);
- types[*size].iAttributes = PVR_TIMER_TYPE_IS_MANUAL |
- PVR_TIMER_TYPE_IS_REPEATING |
+ types[*size].iAttributes = PVR_TIMER_TYPE_IS_REPEATING |
PVR_TIMER_TYPE_SUPPORTS_ENABLE_DISABLE |
PVR_TIMER_TYPE_SUPPORTS_CHANNELS |
PVR_TIMER_TYPE_SUPPORTS_TITLE_EPG_MATCH |
--
kodi-pvr-vdr-vnsi packaging
More information about the pkg-multimedia-commits
mailing list