summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--History6
-rw-r--r--channels.js7
-rw-r--r--index.html24
3 files changed, 31 insertions, 6 deletions
diff --git a/History b/History
index a760ae6..4a5f451 100644
--- a/History
+++ b/History
@@ -1,3 +1,7 @@
+0.05 Soon OSD 1920x1088 (16:9) // OSD 1280x720 (16:9) // OSD 704x576 (16:9)
+ EPG language routine expanded. Works for (almost) all german channels now.
+
+
0.04 Volume OSD bar
Media Player added.
Only Play/ Pause & FF, no REW.
@@ -5,8 +9,6 @@
Bugfix EPG info, now it should show the now/next info of the current channel.
(for testing timeshift added (only on hdd-models and not working for vdr streams (?)) set timeshift to 1 in settings2.js)
- Split portal into webkit (html) and svg version
-
0.03 Release date 2012/12/13
Try to fix Teletext crash.
teletext start screen -> teletext/tv 50%/50%
diff --git a/channels.js b/channels.js
index 45d6cb6..5c112ab 100644
--- a/channels.js
+++ b/channels.js
@@ -1215,3 +1215,10 @@ channels[968] = "S28.2E-2-2049-10000";
channelsnames[969] = "Channel 4 HD (S)";
channels[969] = "S28.2E-2-2068-21200";
+channelsnames[991] = "NED1 HD (S)"
+channels[991] = "S23.5E-3-3208-7035"
+channelsnames[992] = "NED2 HD (S)"
+channels[992] = "S23.5E-3-3202-6080"
+channelsnames[993] = "NED3 HD (S)"
+channels[993] = "S23.5E-3-3225-21040"
+
diff --git a/index.html b/index.html
index 061f3f5..90c4264 100644
--- a/index.html
+++ b/index.html
@@ -25,8 +25,12 @@
// set/save changes to cfg.custom.xxx
// change IP server
//
+//
+// videoplane.subtitles = true; // Enable subtitles
+// videoplane.subtitles = false; // Disable subtitles
+//
-var Version = "0.04 2012/12/20"
+var Version = "0.05 2012/12/xx"
var nrChannels = channels.length;
var nrMedia = recording.length - 1;
@@ -785,12 +789,19 @@ function GetEPG(epgchan)
SI=channels[epgchan].split("-");
is = toi.informationService;
is.setObject("cfg.locale.ui","ger",is.STORAGE_VOLATILE);
+
+ if(SI[1]=="133") {
+ //sky deutchland
+ is.setObject("cfg.locale.ui","DEU",is.STORAGE_VOLATILE);
+ }
+
if(SI[0]=="S28.2E") {
is.setObject("cfg.locale.ui","eng",is.STORAGE_VOLATILE);
}
- if((SI[0]=="S23.5E" && SI[1]=="3") || SI[2]=="1026" || SI[2]=="1097" || SI[2]=="1105" || SI[2]=="1119") {
- is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE);
- cds = 1;
+ if(SI[1]=="3" || SI[1]=="53") {
+ //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);
+ cds = 1;
}
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")) {
@@ -813,6 +824,11 @@ function GetEPG(epgchan)
cds = 1;
}
+ if((SI[0]=="T") ) {
+ // I mustly get Dutch channels on DVB-T
+ is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE);
+ cds = 1;
+ }
eitService = toi.statics.ToiDvbEitCacheServiceItem.create(SI[1],SI[2],SI[3]);