diff options
| author | M. Voerman <rekordc@gmail.com> | 2013-03-15 12:46:32 +0100 |
|---|---|---|
| committer | M. Voerman <rekordc@gmail.com> | 2013-03-15 12:46:32 +0100 |
| commit | 95db6f4bfe88486380bd359c1e8208e204e9b38e (patch) | |
| tree | 1f9d716b068524d7f77136de36c8da9da4b25c36 | |
| parent | 5936f33aa1110a52c5bfa8209785c939a6990252 (diff) | |
| download | vdr-vipclient-95db6f4bfe88486380bd359c1e8208e204e9b38e.tar.gz vdr-vipclient-95db6f4bfe88486380bd359c1e8208e204e9b38e.tar.bz2 | |
EPG filter on 23East expanded
| -rw-r--r-- | History | 1 | ||||
| -rw-r--r-- | index.html | 22 |
2 files changed, 21 insertions, 2 deletions
@@ -14,6 +14,7 @@ VDR 1.7.29 Small fix to make it work on 19x3. (Looks like 19x0 auto selects right font) Pressing record start Instant server recording. (Works only correct if channels on Vip & Server are the same) Recording info shows channelnumber. + EPG filter on 23 expanded. 0.16 EPG/schedule info remove on channel switch Exit Guide View removes epg/schedule info @@ -1282,17 +1282,35 @@ function StreamInfo(si) { is.setObject("cfg.locale.ui","ita",is.STORAGE_VOLATILE); } - if(SI[1]=="3" || SI[1]=="53") { + if(SI[1]=="53") { + //Canal Digitaal/ TV Vlaanderen + is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE); + } + + + if(SI[1]=="3" && ( SI[2]=="3202" || SI[2]=="3208" || SI[2]=="3211" || SI[2]=="3222" || SI[2]=="3225") ) { //Canal Digitaal/ TV Vlaanderen (NID:3 is used for more than only CDS/TVV on 23East) is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE); } - if(SI[1]=="3" && ( SI[2]=="3210" || ( SI[2]=="3219" && SI[3]!=="13135") )) { + if(SI[1]=="3" && ( SI[2]=="3206" || SI[2]=="3226" ) ) { + // Satellite BG + is.setObject("cfg.locale.ui","bul",is.STORAGE_VOLATILE); + } + + + if(SI[1]=="3" && ( SI[2]=="3205" || SI[2]=="3209" || SI[2]=="3210" || SI[2]=="3221" || ( SI[2]=="3219" && SI[3]!=="13135") )) { //Canal Digitaal/ TV Vlaanderen use CZE channels on 23East // Strangly set filter to cze but epg is in Dutch. (But not for JimJam) is.setObject("cfg.locale.ui","cze",is.STORAGE_VOLATILE); } + if(SI[1]=="3" && SI[2]=="3219" && SI[3]=="13135" ) { + //JimJam Dutch + is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE); + } + + if((SI[0]=="S13.0E" && SI[3]=="14003") || (SI[0]=="S13.0E" && SI[3]=="14009") || (SI[0]=="S13.0E" && SI[3]=="14051") || (SI[0]=="S13.0E" && SI[3]=="951")) { //Swiss ITA channels is.setObject("cfg.locale.ui","ita",is.STORAGE_VOLATILE); |
