vdr-addon: wirbelscan should always be enabled

- in-xbmc xvdr channel depends on wirbelscan
- trigger channelscan via vnsi4 osd is nice to have
This commit is contained in:
Stefan Saraev 2013-11-22 21:39:17 +02:00
parent 4ea590f8da
commit efca389219
4 changed files with 1 additions and 6 deletions

View File

@ -8,7 +8,6 @@
<setting id="ENABLE_SOFTCAM" value="true" />
<setting id="ENABLE_STREAMDEV_CLIENT" value="false" />
<setting id="ENABLE_STREAMDEV_SERVER" value="false" />
<setting id="ENABLE_WIRBELSCAN" value="true" />
<setting id="ENABLE_LIVE" value="false" />
<setting id="LIVE_IP" value="0.0.0.0" />
<setting id="LIVE_PORT" value="8008" />

View File

@ -116,6 +116,7 @@ if [ "$ENABLE_EXTERNAL_RECCMD" == "true" ] ; then
fi
VDR_ARG="$VDR_ARG -P $PVR_PLUGIN"
VDR_ARG="$VDR_ARG -P wirbelscan -P wirbelscancontrol"
if [ "$ENABLE_SOFTCAM" == "true" ] ; then
VDR_ARG="$VDR_ARG -P $SOFTCAM_PLUGIN"
@ -129,9 +130,6 @@ fi
if [ "$ENABLE_STREAMDEV_CLIENT" == "true" ] ; then
VDR_ARG="$VDR_ARG -P streamdev-client"
fi
if [ "$ENABLE_WIRBELSCAN" == "true" ] ; then
VDR_ARG="$VDR_ARG -P wirbelscan -P wirbelscancontrol"
fi
if [ "$ENABLE_LIVE" == "true" ] ; then
VDR_ARG="$VDR_ARG -P 'live -i $LIVE_IP -p $LIVE_PORT'"
fi

View File

@ -11,7 +11,6 @@
<string id="1031">Enable plugin: iptv</string>
<string id="1032">Enable plugin: streamdev-client</string>
<string id="1033">Enable plugin: streamdev-server</string>
<string id="1034">Enable plugin: wirbelscan</string>
<string id="1036">Enable softcam</string>
<string id="1037">softcam plugin</string>
<string id="1038">Enable plugin: live</string>

View File

@ -22,7 +22,6 @@
<setting id="ENABLE_IPTV" type="bool" label="1031" default="false" />
<setting id="ENABLE_STREAMDEV_CLIENT" type="bool" label="1032" default="false" />
<setting id="ENABLE_STREAMDEV_SERVER" type="bool" label="1033" default="false" />
<setting id="ENABLE_WIRBELSCAN" type="bool" label="1034" default="true" />
<setting id="ENABLE_LIVE" type="bool" label="1038" default="false" />
<setting id="LIVE_IP" type="ipaddress" label="1039" values="" enable="!eq(-1,false)" default="0.0.0.0"/>
<setting id="LIVE_PORT" type="number" label="1040" values="" enable="!eq(-2,false)" default="8008"/>