diff options
author | M. Voerman <rekordc@gmail.com> | 2014-09-18 15:21:04 +0200 |
---|---|---|
committer | M. Voerman <rekordc@gmail.com> | 2014-09-18 15:21:04 +0200 |
commit | fc38186a8efd1a83586e3b124513b066d521e3e4 (patch) | |
tree | c046ec50976ebbd16cd4a41f7fe6c118d96d78db /index.html | |
parent | b54f576c687a03df83b3026f3d0bbdb64739cc91 (diff) | |
download | vdr-vipclient-fc38186a8efd1a83586e3b124513b066d521e3e4.tar.gz vdr-vipclient-fc38186a8efd1a83586e3b124513b066d521e3e4.tar.bz2 |
Updated remote keys
Updated channels script
Updated epg filter
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 45 |
1 files changed, 10 insertions, 35 deletions
@@ -110,8 +110,6 @@ function SetupFonts() { osdepg.style.color = "white"; osdca.style.color = "black"; switchtimer.style.color = "white"; - DefaultBGColor = "green"; - ErrorColor = "red"; switchtimer.style.background = DefaultBGColor; osdnr.style.background = "red"; var i = "#3366ff"; @@ -125,22 +123,6 @@ function SetupFonts() { channellist.style.background = "#bbb"; osdnr.style.color = "black"; osdlang.style.color = "white"; - color_bg = "#fc5"; - color_main_head = "color:white"; - color_main_font = "color:black"; - color_epg_head = "color:white"; - color_epg_title = "color:white"; - color_epg_avinfo = "color:black"; - color_epg_info = "color:yellow"; - color_sched_head = "color:white"; - color_sched_font = "color:black"; - color_chan_epg = "color:black"; - color_osdtimer = "color:black"; - color_timerinfo = "color:white"; - color_media_osd = "color:white"; - color_progress1 = "<font color=red>"; - color_progress2 = "<font color=white>"; - color_notset = "color:grey"; } @@ -898,6 +880,7 @@ function onKeyDown(event) { case "Info": case "Blue": + case KEY_EPG: // if(isFullscreen) { // RestartPortal(); // } else @@ -1253,7 +1236,7 @@ function onKeyDown(event) { } break; case KEY_REC: - case "MediaRecord": + case KEY_REC2: if(isSchedule == 0) { if(epgactive) { ServerTimer(channels[currChan],EPG[NowNext][6][currChan]); @@ -1279,6 +1262,7 @@ function onKeyDown(event) { break; case KEY_OPNAMES: case KEY_FILM: + case KEY_DVR: if (smartTVplugin) { // jump to recordings menu. if(isFullscreen) { @@ -1979,20 +1963,16 @@ function StreamInfo(si) { is.setObject("cfg.locale.ui","ita",is.STORAGE_VOLATILE); } - if(SI[1]=="53" || (SI[0]=="S19.2E" && SI[2]=="1037") ) { + if(SI[1]=="53" ) { //Canal Digitaal/ TV Vlaanderen is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE); } - if(SI[1]=="53" && (SI[3]=="2042" || SI[3]=="2043" )) { - //Canal Digitaal/ TV Vlaanderen - is.setObject("cfg.locale.ui","eng",is.STORAGE_VOLATILE); + if(SI[0]=="S19.2E" && SI[2]=="1048" && SI[3]=="4320" ) { + //BVN + is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE); } - if(SI[1]=="53" && (SI[3]=="2045") ) { - //Canal Digitaal/ TV Vlaanderen - is.setObject("cfg.locale.ui","fra",is.STORAGE_VOLATILE); - } if(SI[1]=="54") { //ZON / 30W @@ -2034,11 +2014,6 @@ function StreamInfo(si) { 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[1]=="3" && SI[2]=="3211" && ( SI[3]=="20863" || SI[3]=="20865") ) { //MGM & Film+ CZ is.setObject("cfg.locale.ui","cze",is.STORAGE_VOLATILE); @@ -3622,7 +3597,7 @@ if (DelisOK) { DelRec(); } if (getRecOK == 2) { //set timer - settimer(recStrt[currMed],recTitl[currMed],recDura[currMed],1,"",recDesc[currMed],recGUID[currMed].toString()); + settimer(recStrt[currMed],recTitl[currMed],recDura[currMed],1,color_switchtimer,recDesc[currMed],recGUID[currMed].toString()); } break; case "Blue": @@ -3649,7 +3624,7 @@ if (DelisOK) { break; case KEY_REC: - case "MediaRecord": + case KEY_REC2: // make timer for recording if (getRecOK == 2) { //set timer settimer(recStrt[currMed],recTitl[currMed],recDura[currMed],2); @@ -3806,7 +3781,7 @@ if (DelisOK) { case KEY_REC: - case "MediaRecord": + case KEY_REC2: break; case "MediaRewind": if (mediaPlayer.getState() != mediaPlayer.STATE_IDLE) { |