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 /index.html | |
parent | 8d519978db5fcd14d1e36108ba1bd1292bd05d33 (diff) | |
download | vdr-vipclient-504e1610f53709a0165d70d43049c1a1ef9105b4.tar.gz vdr-vipclient-504e1610f53709a0165d70d43049c1a1ef9105b4.tar.bz2 |
Added channels 8xxx - DVB-T
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -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); |