From 49b8df6572c7e16c279fb9a26c5c8dd0428b11cf Mon Sep 17 00:00:00 2001 From: "M. Voerman" Date: Tue, 8 Jan 2013 00:52:03 +0100 Subject: New MainMenu and some fixes --- History | 12 +- channels-mc.js | 25 +++++ channels-prt.js | 2 + index.html | 335 +++++++++++++++++++++++++++++++++++--------------------- settings.js | 64 ++++++----- settings2.js | 4 - 6 files changed, 284 insertions(+), 158 deletions(-) create mode 100644 channels-mc.js diff --git a/History b/History index 799ad0c..8e076b0 100644 --- a/History +++ b/History @@ -1,6 +1,14 @@ -0.10 Added Radio list / Protected List - Small fixes, guideview, epg setup +0.10 Added Radio list / Protected List / SD/HD list etc + (Use for Multicast Channels List 5) + Left/ Right select list + Switch to Radiolist with key 'TV' or 'RADIO' (give same keycode) + Small fixes, guideview, epg setup, timeshift. In guideview Get EPG only for highlighted channel to speedup scrolling. + Added CanalSat to the EPG filter. Updated CDS/TVV routine. + EPGinfo extended with videoinfo read from the stream. + Direct recording with record button, next push stops recording. (Only for HDD models) + Changed the Main Menu. + TimeShift is possible for multicast channels. 0.06 More options in Main Menu: diff --git a/channels-mc.js b/channels-mc.js new file mode 100644 index 0000000..d42316a --- /dev/null +++ b/channels-mc.js @@ -0,0 +1,25 @@ +// +// MultiCast Channels. +// + +channelsnames[5001] = "NED1 (S)"; +channels[5001] = "S19.2E-53-1105-4011"; +channelsnames[5002] = "NED2 (S)"; +channels[5002] = "239.255.0.2:11111"; +channelsnames[5003] = "NED3 (S)"; +channels[5003] = "239.255.0.3:11111"; +channelsnames[5004] = "RTL4 (S)"; +channels[5004] = "239.255.0.4:11111"; +channelsnames[5005] = "RTL5 (S)"; +channels[5005] = "239.255.0.5:11111"; +channelsnames[5006] = "SBS6 (S)"; +channels[5006] = "239.255.0.6:11111"; +channelsnames[5007] = "RTL7 (S)"; +channels[5007] = "239.255.0.7:11111"; +channelsnames[5008] = "Veronica/DisneyXD (S)"; +channels[5008] = "239.255.0.8:11111"; +channelsnames[5009] = "NET5 (S)"; +channels[5009] = "239.255.0.9:11111"; +channelsnames[5010] = "Scuzz (S)"; +channels[5010] = "239.255.2.128:11111"; + diff --git a/channels-prt.js b/channels-prt.js index a2c9dd1..2f0e90c 100644 --- a/channels-prt.js +++ b/channels-prt.js @@ -80,3 +80,5 @@ channelsnames[6038] = "HUSTLER HD-3D (S)"; channels[6038]="S13.0E-318-15800-16933"; channelsnames[6039] = "DARING TV (S)"; channels[6039]="S13.0E-318-15800-16931"; + + diff --git a/index.html b/index.html index e5a5cb4..57c087c 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,7 @@