diff options
-rw-r--r-- | History | 2 | ||||
-rw-r--r-- | index.html | 8 | ||||
-rw-r--r-- | settings.js | 1 |
3 files changed, 6 insertions, 5 deletions
@@ -19,7 +19,7 @@ VDR 1.7.29 Change (preset) server from settings menu. Save audio priority permanent (removed 'none' setting) Dynamic audio selection with green button while watching. (Settings menu as before) - + Added EPG Icon for radio channels. 0.21 Language in sepate file, link your lang_XXX.js to language.js to activate it. Updated EPG filter, (DVB-T defaults to German), added MTV transponder on 19E. @@ -349,7 +349,8 @@ var cList = streamInfo.availableComponents; var x; xx = 0; AvInfo[currStream] = ""; -lang_prio_dyn.length = 0 +lang_prio_dyn.length = 0; +Radioicon = "\uE00E"; for(x=0; x<cList.length;x++) { if(cList[x].type == 0) { @@ -358,14 +359,13 @@ for(x=0; x<cList.length;x++) { xx = xx + 1; } if(cList[x].type == 1) { + Radioicon = "\uE00F"; AvInfo[currStream] = AvInfo[currStream] + " Video " + mediaPlayer.getVideoStreamInfo(cList[x]).encoding + " size : " + mediaPlayer.getVideoStreamInfo(cList[x]).resolutionX + " x " + mediaPlayer.getVideoStreamInfo(cList[x]).resolutionY; if (mediaPlayer.getVideoStreamInfo(cList[x]).aspectRatio == "1") { AvInfo[currStream] = AvInfo[currStream] + " (4:3)"; } if (mediaPlayer.getVideoStreamInfo(cList[x]).aspectRatio == "2") { AvInfo[currStream] = AvInfo[currStream] + " (16:9)"; } } } - - } function addzero(zero) @@ -1240,7 +1240,7 @@ function GetEPG(epgchan) if(event.freeCaMode){ CAicon = "\uE00D"; } else { - CAicon = "\uE00F"; + CAicon = Radioicon; } osdca.innerHTML = CAicon + switchicon + RECicon; diff --git a/settings.js b/settings.js index 591f3a4..2b45431 100644 --- a/settings.js +++ b/settings.js @@ -186,6 +186,7 @@ var inst_timer = 0; var switchicon = "\uE003"; var CAicon = "\uE00F"; var RECicon = "\uE003"; +var Radioicon = "\uE003"; var fsAudio = (16*Yfactor) + "px"; var fsTime = (16*Yfactor) + "px"; |