diff options
author | M. Voerman <rekordc@gmail.com> | 2014-03-16 15:57:32 +0100 |
---|---|---|
committer | M. Voerman <rekordc@gmail.com> | 2014-03-16 15:57:32 +0100 |
commit | 6505fa558f239d1dea1f14a61941c3a622c42ec5 (patch) | |
tree | dc998c325fab656d26e5d8f6ca2ecec72516b086 | |
parent | be843bf3602add0d338491643bc2c58df4bbd89e (diff) | |
download | vdr-vipclient-6505fa558f239d1dea1f14a61941c3a622c42ec5.tar.gz vdr-vipclient-6505fa558f239d1dea1f14a61941c3a622c42ec5.tar.bz2 |
Some fixes
Updates of channels
-rw-r--r-- | History | 1 | ||||
-rw-r--r-- | channels.js | 10 | ||||
-rw-r--r-- | channels6.js | 2 | ||||
-rw-r--r-- | index.html | 20 | ||||
-rw-r--r-- | settings.js | 2 |
5 files changed, 17 insertions, 18 deletions
@@ -6,6 +6,7 @@ VDR 1.7.29 / 2.1.1 Channels update. Selectable gettimer source. (de)activate/del/add timers only with SmartTVWeb Update EPG Filter + EPGList/ Recordinglist bug fixed (hopefully) 0.23 Infobox for connection Error, not only ERRR on display but also the Infobox diff --git a/channels.js b/channels.js index 205e2fc..82c538e 100644 --- a/channels.js +++ b/channels.js @@ -62,7 +62,7 @@ channels[12] = "S19.2E-1-1078-28679"; channelsnames[13] = "ComedyCentral/Kindernet (S)"; channels[13] = "S23.5E-3-3211-20826"; channelsnames[14] = "Discovery (S)"; -channels[14] = "S19.2E-1-1037-5252"; +channels[14] = "S19.2E-53-1119-12893"; channelsnames[15] = "iConcerts (S)"; channels[15] = "S23.5E-3-3211-20823"; channelsnames[16] = "SyFy Universal (S)"; @@ -177,8 +177,6 @@ channelsnames[75] = "YESTERDAY+1 (S)"; channels[75] = "S28.2E-2-2015-7650"; channelsnames[76] = "Blighty (S)"; channels[76] = "S28.2E-2-2006-6522"; -channelsnames[77] = "Bio (S)"; -channels[77] = "S28.2E-2-2025-4655"; channelsnames[79] = "CI (S)"; channels[79] = "S28.2E-2-2025-4802"; @@ -189,7 +187,7 @@ channels[81] = "S28.2E-2-2025-4653"; channelsnames[82] = "History +1 hour (S)"; channels[82] = "S28.2E-2-2025-5003"; channelsnames[83] = "H2 (S)"; -channels[83] = "S28.2E-2-2604-54305"; +channels[83] = "S28.2E-2-2304-55205"; channelsnames[84] = "Nat Geo (S)"; channels[84] = "S28.2E-2-2025-4805"; channelsnames[85] = "Nat Geo+1hr (S)"; @@ -200,7 +198,7 @@ channels[86] = "S28.2E-2-2025-4807"; channelsnames[87] = "Real Time (S)"; channels[87] = "S13.0E-64511-6200-10901"; channelsnames[88] = "Real Time +1 (S)"; -channels[88] = "S13.0E-64511-11300-12268"; +channels[88] = "S13.0E-64511-800-1469"; channelsnames[100] = "Sky Premiere (S)"; @@ -228,7 +226,7 @@ channels[110] = "S28.2E-2-2007-4306"; channelsnames[111] = "Sky Disney (S)"; channels[111] = "S28.2E-2-2007-4308"; channelsnames[112] = "TCM (S)"; -channels[112] = "S28.2E-2-2403-6038"; +channels[112] = "S28.2E-2-2055-6038"; channelsnames[113] = "TCM +1 (S)"; channels[113] = "S28.2E-2-2301-52175"; channelsnames[114] = "Movies 24 (S)"; diff --git a/channels6.js b/channels6.js index c594b0d..863ff48 100644 --- a/channels6.js +++ b/channels6.js @@ -41,7 +41,7 @@ channels[6015]="S13.0E-318-8900-2098"; channelsnames[6018] = "Venus (S)"; channels[6018]="S30.0W-83-105-502"; channelsnames[6019] = "Leo TV (S)"; -channels[6019]="S23.5E-3-3209-13119"; +channels[6019]="S23.5E-3-3219-13142"; //channelsnames[6020] = "Brazzers TV (S)"; //channels[6020]="S5.0E-366-101-22"; //channelsnames[6021] = "Daring TV (S)"; @@ -1791,11 +1791,6 @@ function StreamInfo(si) { is.setObject("cfg.locale.ui","eng",is.STORAGE_VOLATILE); } - if(SI[0]=="S19.2E" && SI[2]=="1037" && SI[3]=="5253" ) { - //Animax - is.setObject("cfg.locale.ui","eng",is.STORAGE_VOLATILE); - } - if(SI[1]=="53" && (SI[3]=="2045") ) { //Canal Digitaal/ TV Vlaanderen is.setObject("cfg.locale.ui","fra",is.STORAGE_VOLATILE); @@ -2883,12 +2878,14 @@ try { SearchTimer[i] = SearchTimer[i] + "\uE003\uE016\uE003" + Lang[47] + "\uE003" + "\n"; } else { //bit is used for dayofweek. - var dowx = Math.abs(x[i].getElementsByTagName("dayofweek")[0].childNodes[0].nodeValue); + var dowx = x[i].getElementsByTagName("dayofweek")[0].childNodes[0].nodeValue; var dow = ""; + if (dowx > 0) { var y = 1;} else { var y = 0;} + dowx = Math.abs(dowx); for (var dowi=0; dowi<7; dowi++) { var mask = 1 << dowi; - if ((dowx & mask) != 0) { dow = dow + days[dowi] + "\uE003";} + if ((dowx & mask) != 0) { dow = dow + days[(dowi+y)] + "\uE003";} } SearchTimer[i] = SearchTimer[i] + "\uE003\uE017\uE003" + Lang[47] + "\uE003:\uE003" + dow + "\n"; } @@ -3797,21 +3794,24 @@ function showMediaList() { if (MaxMed < 0 ) { MaxMed = 0; } for(var i=currMed; i<=currMed + MaxMed; i++) { - if (listMed<0) { listMed=nrMedia; } - if (listMed>nrMedia) { listMed= -1; } + if (listMed>=nrMedia) { listMed= -1; } + if (listMed<-1) { listMed=nrMedia; } +// if (listMed>nrMedia) { listMed= -1; } do { listMed = listMed + 1; } - while (!recList[listMed] && (listMed<nrMedia)); + while (!recList[listMed] && (listMed<=nrMedia)); + alert(listMed); if ( listMed == currMed) { liststyle = " style='background:" + color_bg + ";-webkit-border-radius:25px;"; } else { liststyle = " style='"; } + if (recList[listMed]) { //Solves empty string at the end. diff --git a/settings.js b/settings.js index 560e131..4373a72 100644 --- a/settings.js +++ b/settings.js @@ -2,7 +2,7 @@ // Default settings // -var Version = "0.24.3" +var Version = "0.24.4" server_ip_array = new Array("http://192.168.1.15","http://192.168.3.15","http://192.168.3.100","http://192.168.178.19"); |