diff options
author | M. Voerman <rekordc@gmail.com> | 2013-03-29 16:12:31 +0100 |
---|---|---|
committer | M. Voerman <rekordc@gmail.com> | 2013-03-29 16:12:31 +0100 |
commit | 504e1610f53709a0165d70d43049c1a1ef9105b4 (patch) | |
tree | e8c99cc5ea841dcc7e3a7b1a3be038f18f14e585 | |
parent | 8d519978db5fcd14d1e36108ba1bd1292bd05d33 (diff) | |
download | vdr-vipclient-504e1610f53709a0165d70d43049c1a1ef9105b4.tar.gz vdr-vipclient-504e1610f53709a0165d70d43049c1a1ef9105b4.tar.bz2 |
Added channels 8xxx - DVB-T
-rw-r--r-- | History | 6 | ||||
-rw-r--r-- | channels5.js | 1 | ||||
-rw-r--r-- | index.html | 11 |
3 files changed, 14 insertions, 4 deletions
@@ -2,7 +2,11 @@ Tested on Motorola Vip : 1960 (with and without HDD), 1910, 1903. VDR 1.7.29 -0.18 EPG filter 30W ZON, Digital +0.18 Updated EPG filter + 30W ZON, Digital, MEO + 19E Tid 1057 (RTL HD etc) + Changed time out for switching server before instant recording from 1 sec to 5 sec. + Added channelgroup 8 DVB-T Twente (The Netherlands) 0.17 Show EPG from Server limited to X days ( 3 = default, set in settings.js) diff --git a/channels5.js b/channels5.js index 1fdc46c..154df0b 100644 --- a/channels5.js +++ b/channels5.js @@ -47,4 +47,3 @@ //maxChan[2] = 2001; // set to max multicast channel else you see 'undefined' in guide view - @@ -5,6 +5,7 @@ <script type="text/javascript" src="channels1.js" /> <script type="text/javascript" src="channels5.js" /> <script type="text/javascript" src="channels6.js" /> + <script type="text/javascript" src="channels8.js" /> <script type="text/javascript" src="channels9.js" /> </head> <script language="Javascript"> @@ -24,7 +25,7 @@ // // -var Version = "0.18.1" +var Version = "0.18.2" for (var x = 0; x < 10; x++) { if (minChan[x]) { @@ -1290,6 +1291,12 @@ function StreamInfo(si) { is.setObject("cfg.locale.ui","DEU",is.STORAGE_VOLATILE); } + if(SI[2]=="1057") { + //RTL HD transponder + is.setObject("cfg.locale.ui","GER",is.STORAGE_VOLATILE); + } + + if(SI[1]=="64511") { //sky Italia is.setObject("cfg.locale.ui","ita",is.STORAGE_VOLATILE); @@ -2769,7 +2776,7 @@ try { xmlhttp.open("POST",(RestFulAPI + "/remote/switch/" + channels[currChan]),true); xmlhttp.send(); //start recording - setTimeout("xmlhttp.open('POST',(RestFulAPI + '/remote/Record'),false);xmlhttp.send();",1000); + setTimeout("xmlhttp.open('POST',(RestFulAPI + '/remote/Record'),false);xmlhttp.send();",5000); //Show some info on screen settimer(EPG[NowNext][2][currChan],EPG[NowNext][1][currChan],0); |