diff options
author | M. Voerman <rekordc@gmail.com> | 2014-04-01 13:48:42 +0200 |
---|---|---|
committer | M. Voerman <rekordc@gmail.com> | 2014-04-01 13:48:42 +0200 |
commit | cc320996b89e34cc35391b93e883f3056993fd30 (patch) | |
tree | dec83aee4f662f4a694c149fc42a549d03fa41d4 | |
parent | 6505fa558f239d1dea1f14a61941c3a622c42ec5 (diff) | |
download | vdr-vipclient-cc320996b89e34cc35391b93e883f3056993fd30.tar.gz vdr-vipclient-cc320996b89e34cc35391b93e883f3056993fd30.tar.bz2 |
Channels update / small fixes
-rw-r--r-- | channels.js | 4 | ||||
-rw-r--r-- | channels1.js | 3 | ||||
-rw-r--r-- | channels4.js | 3 | ||||
-rw-r--r-- | index.html | 12 |
4 files changed, 16 insertions, 6 deletions
diff --git a/channels.js b/channels.js index 82c538e..930c027 100644 --- a/channels.js +++ b/channels.js @@ -536,9 +536,9 @@ channels[338] = "S28.2E-2-2051-9011"; channelsnames[339] = "Disney XD+1 (S)"; channels[339] = "S28.2E-2-2051-9008"; channelsnames[340] = "Nickelodeon (S)"; -channels[340] = "S28.2E-2-2052-5560"; +channels[340] = "S28.2E-2-2029-5560"; channelsnames[341] = "Nickelodeon+1 (S)"; -channels[341] = "S28.2E-2-2052-5561"; +channels[341] = "S28.2E-2-2029-5561"; //channelsnames[342] = "Nick Replay (S)"; //channels[342] = "S28.2E-2-2004-4809"; channelsnames[343] = "Nicktoons (S)"; diff --git a/channels1.js b/channels1.js index 4f00b03..a7c04b6 100644 --- a/channels1.js +++ b/channels1.js @@ -164,7 +164,8 @@ channels[1300] = "S28.2E-2-2032-3873" channelsnames[1301] = "Disney XD HD (S)" channels[1301] = "S28.2E-2-2003-3870" channelsnames[1302] = "Nickelodeon HD (S)" -channels[1302] = "S13.0E-318-1400-31" +//channels[1302] = "S13.0E-318-1400-31" +channels[1302] = "S28.2E-2-2020-3869" channelsnames[1303] = "Disney Cinemagic HD (S)" channels[1303] = "S19.2E-133-13-111" channelsnames[1304] = "Disney Channel HD (S)" diff --git a/channels4.js b/channels4.js index 736f24c..e0063b5 100644 --- a/channels4.js +++ b/channels4.js @@ -105,6 +105,9 @@ channels[4059] = "S13.0E-318-1300-15038"; channelsnames[4060] = "Sundance HD (S)"; channels[4060] = "S13.0E-318-12000-15901"; +channelsnames[4145] = "4Fun.tv (S)"; +channels[4145] = "S13.0E-318-11000-4404"; + channelsnames[4165] = "Filmbox HD (S)"; channels[4165] = "S13.0E-318-400-13025"; channelsnames[4166] = "Filmbox Extra (S)"; @@ -3247,6 +3247,11 @@ if (DelisOK) { osdepginfo.style.opacity = 1 - osdepginfo.style.opacity; } break; + case "Red": + GetMarks(); + ShowMediaOSD(); + break; + case "Menu": osdepginfo.style.opacity = 0; osdepginfonext.style.opacity = 0; @@ -3795,7 +3800,7 @@ function showMediaList() { for(var i=currMed; i<=currMed + MaxMed; i++) { if (listMed>=nrMedia) { listMed= -1; } - if (listMed<-1) { listMed=nrMedia; } + if (listMed<-1) { listMed=nrMedia - 1; } // if (listMed>nrMedia) { listMed= -1; } do @@ -3804,14 +3809,15 @@ function showMediaList() { } while (!recList[listMed] && (listMed<=nrMedia)); - alert(listMed); - if ( listMed == currMed) { liststyle = " style='background:" + color_bg + ";-webkit-border-radius:25px;"; } else { liststyle = " style='"; } + alert(recList[listMed]); + alert(listMed + " : " + nrMedia); + if (listMed > nrMedia) { recList[listMed] = ""; } if (recList[listMed]) { //Solves empty string at the end. |