diff options
| author | M. Voerman <rekordc@gmail.com> | 2013-08-23 12:10:45 +0200 |
|---|---|---|
| committer | M. Voerman <rekordc@gmail.com> | 2013-08-23 12:10:45 +0200 |
| commit | 970d290c180d299463846dba00d6263bf7c2578f (patch) | |
| tree | 3dc4506d4ebd6a2d44e4117300288c95ab81203e /index.html | |
| parent | e0a3ec0cf92b4351bd1640202abd4dd159f27d95 (diff) | |
| download | vdr-vipclient-970d290c180d299463846dba00d6263bf7c2578f.tar.gz vdr-vipclient-970d290c180d299463846dba00d6263bf7c2578f.tar.bz2 | |
Updated channels.conf
EPG filter, fixed multiple languages on 1 transponder
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 30 |
1 files changed, 20 insertions, 10 deletions
@@ -1197,6 +1197,8 @@ function GetEPG(epgchan) SI=""; try { + eitCache.clearServices(); + StreamInfo(epgchan); eitService = toi.statics.ToiDvbEitCacheServiceItem.create(SI[1],SI[2],SI[3]); @@ -1425,7 +1427,6 @@ function StreamInfo(si) { } if(SI[0]=="S42.0E") { - // Default on 28E English is.setObject("cfg.locale.ui","tur",is.STORAGE_VOLATILE); } @@ -1444,6 +1445,11 @@ function StreamInfo(si) { is.setObject("cfg.locale.ui","DEU",is.STORAGE_VOLATILE); } + if(SI[1]=="113") { + //PolSat + is.setObject("cfg.locale.ui","pol",is.STORAGE_VOLATILE); + } + if(SI[1]=="64511") { //sky Italia @@ -1555,24 +1561,28 @@ function StreamInfo(si) { } - // MTV transponder - if(SI[0]=="S19.2E" && SI[2]=="1078" && ( SI[3]=="28674" || SI[3]=="28675" || SI[3]=="28677")) { + // MTV transponder 1078 / 1066 + if(SI[0]=="S19.2E" && SI[2]=="1078" && ( SI[3]=="28674" || SI[3]=="28675" || SI[3]=="28677" )) { //Nick JR France is.setObject("cfg.locale.ui","fra",is.STORAGE_VOLATILE); } - - // MTV transponder - if(SI[0]=="S19.2E" && SI[2]=="1066") { - is.setObject("cfg.locale.ui","eng",is.STORAGE_VOLATILE); - } - - if(SI[0]=="S19.2E" && SI[2]=="1078" && SI[3]=="28679") { //Nick NL is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE); } + if(SI[0]=="S19.2E" && SI[2]=="1078" && ( SI[3]=="28673" || SI[3]=="28676" )) { + //Deutsch + is.setObject("cfg.locale.ui","ger",is.STORAGE_VOLATILE); + } + if(SI[0]=="S19.2E" && SI[2]=="1066") { + is.setObject("cfg.locale.ui","eng",is.STORAGE_VOLATILE); + } + if(SI[0]=="S19.2E" && SI[2]=="1066" && ( SI[3]=="28652" || SI[3]=="28661" )) { + is.setObject("cfg.locale.ui","fra",is.STORAGE_VOLATILE); + } + } |
