summaryrefslogtreecommitdiff
path: root/settings.js
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2013-01-08 12:13:59 +0100
committerM. Voerman <rekordc@gmail.com>2013-01-08 12:13:59 +0100
commitff09fbf4cf5d054a06cb0f3686f72b97a4a53577 (patch)
tree4248e18caee5ba9fe8777176bc79f4b518dbda41 /settings.js
parentf708d547081388fbd897675792c5400c37506ae6 (diff)
downloadvdr-vipclient-ff09fbf4cf5d054a06cb0f3686f72b97a4a53577.tar.gz
vdr-vipclient-ff09fbf4cf5d054a06cb0f3686f72b97a4a53577.tar.bz2
Small changes.
Diffstat (limited to 'settings.js')
-rw-r--r--settings.js27
1 files changed, 23 insertions, 4 deletions
diff --git a/settings.js b/settings.js
index 842e247..0d85ffc 100644
--- a/settings.js
+++ b/settings.js
@@ -15,6 +15,13 @@ var channelsnames = new Array();
var channelsepglang = new Array();
var recording = new Array();
+var showClock = 0;
+var SwitchGuide = 0;
+var TimeShift = 0; // 0 = no, 1 = yes timeshift
+var ShowSubs = 1; // 0 no, 1 = yes (default)
+months = new Array('January', 'February', 'March', 'April', 'May', 'June', 'Jully', 'August', 'September', 'October', 'November', 'December');
+days = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
+
var isFullscreen = 1; // start TV(1) or guide(0)
var StartVolume = 50;
var Volume = StartVolume;
@@ -37,37 +44,49 @@ var minChan = new Array();
var maxChan = new Array();
var defChan = new Array();
var baseChn = new Array();
+var protChn = new Array();
+var ServerAdres = new Array();
+var ShowProtectedChannels = 1; // Default don't show protected channels.
// Radio channels.js Settings
minChan[9] = 9001;
maxChan[9] = 9099; // set not too far from max rd channel to speed up zapping
defChan[9] = 9051;
baseChn[9] = 9000;
+protChn[9] = 0;
+ServerAdres[9] = "http://192.168.3.15:3000/";
+
// Protected channels.js Settings
minChan[6] = 6001;
maxChan[6] = 6040; // set not too far from max prt channel to speed up zapping
defChan[6] = 6001;
baseChn[6] = 6000;
-var ShowProtectedChannels = 1; // Default don't show protected channels.
+protChn[6] = 1;
+ServerAdres[6] = "http://192.168.3.15:3000/";
// TV channels.js Settings
minChan[0] = 1;
maxChan[0] = 999; // set not too far from max TV channel to speed up zapping
defChan[0] = currChan;
baseChn[0] = 0;
+protChn[0] = 0;
+ServerAdres[0] = "http://192.168.3.15:3000/";
//HD list
//minChan[1] = 1001;
//maxChan[1] = 1999; // set not too far from max HD channel to speed up zapping
//defChan[1] = 1001;
//baseChn[1] = 1000;
-
+//protChn[1] = 0;
+//ServerAdres[1] = "http://192.168.3.15:3000/";
// MultiCast
minChan[5] = 5001;
maxChan[5] = 5010; // set not too far from max multicast channel to speed up zapping
defChan[5] = 5001;
baseChn[5] = 5000;
+protChn[5] = 0;
+ServerAdres[5] = "MultiCast";
var currMed = 0;
var listMed = 0;
@@ -171,8 +190,8 @@ var fsMenuMain = (35*Yfactor) + "px";
var fsEpg = (19*Yfactor) + "px";
var fsEpginfo = (21*Yfactor) + "px";
var fsList = (18*Yfactor) + "px";
-var fsSchedList = (16*Yfactor) + "px";
-var fsSched = (24*Yfactor) + "px";
+var fsSchedList = (18*Yfactor) + "px";
+var fsSched = (26*Yfactor) + "px";
var fsRec = (27*Yfactor) + "px";
var fsReclist = (19*Yfactor) + "px";
var fsMedia = (27*Yfactor) + "px";