diff options
author | M. Voerman <rekordc@gmail.com> | 2013-07-16 15:45:55 +0200 |
---|---|---|
committer | M. Voerman <rekordc@gmail.com> | 2013-07-16 15:45:55 +0200 |
commit | 4cf750b11b4efe5e7bb775edefa98b18a9a3aa3b (patch) | |
tree | 0937639eafef4e5899b777af49b1a242bf1be424 | |
parent | 48d902596d93d6d0d7a704b915010b98a09e1806 (diff) | |
download | vdr-vipclient-4cf750b11b4efe5e7bb775edefa98b18a9a3aa3b.tar.gz vdr-vipclient-4cf750b11b4efe5e7bb775edefa98b18a9a3aa3b.tar.bz2 |
In mixed environment 19x0/19x3 you can set full update only to 19x3 boxes (only for guide view speed up)
lang_dutch changes
-rw-r--r-- | History | 3 | ||||
-rw-r--r-- | index.html | 10 | ||||
-rwxr-xr-x | lang_dut.js | 6 | ||||
-rw-r--r-- | settings.js | 1 |
4 files changed, 15 insertions, 5 deletions
@@ -3,8 +3,9 @@ Motorola Vip : 1960, 1910, 1903, 1963. VDR 1.7.29 -0.21 Language in sepate file. +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) + Audio, subs etc settings are now stored on the box. So they are kept after reboot. 0.20 Updated EPG filter @@ -63,6 +63,13 @@ function onLoad() { // No harddisk, no recorder functions possible } + if (toi.informationService.getObject("config.productdisplayname") !== "Motorola VIP1903" && + toi.informationService.getObject("config.productdisplayname") !== "Motorola VIP1963" && fullupdate !== 2) { + fullupdate = 0; + // No 19x3 so better turn fullupdate EPG off + } + + if (mediaRecorder) { createRecorder(); mediaRecorder.addEventListener(mediaRecorder.ON_STATE_CHANGED, onRecorderStateChanged); @@ -2078,7 +2085,8 @@ if(menu == 4) { // INFO Menu var x = is.getObject("var.capabilities.dvr"); if (x !== "FALSE") { htmltext = htmltext + "\n \uE017 "; } else { htmltext = htmltext + "\n \uE016 "; } htmltext = htmltext + "DVR "; - + if (fullupdate !== 0) { htmltext = htmltext + "\n \uE017 "; } else { htmltext = htmltext + "\n \uE016 "; } + htmltext = htmltext + "Full EPG Update "; } catch(e) { alert("Error : " + e); diff --git a/lang_dut.js b/lang_dut.js index a750ec2..58d1601 100755 --- a/lang_dut.js +++ b/lang_dut.js @@ -51,9 +51,9 @@ Lang[17] = " MPD Server Verbinding "; Lang[18] = " BLUE - Herstart Portal "; //Settings menu -Lang[20] = " Toon Ondertiteling "; -Lang[21] = " Type Prio "; -Lang[22] = " Mode Prio "; +Lang[20] = " Ondertiteling "; +Lang[21] = " '' '' Type Prio "; +Lang[22] = " '' '' Mode Prio "; Lang[23] = " Audio Type Prio "; Lang[24] = " Voorkeurstaal "; Lang[25] = " Frontdisplay Klok "; diff --git a/settings.js b/settings.js index 2b1f160..8e0e39a 100644 --- a/settings.js +++ b/settings.js @@ -32,6 +32,7 @@ var pipPlayer = 0; // 0 = no, 1 = yes Pip var mediaRecorder = 1; // 0 = no, 1 = yes local recording. var fullupdate = 1; // If guideview is too slow, set it to 0 (for 1910/1960), faster boxes can use 1 +// to force the use on boxes other then 19x3 use 2!! var inst_timeout = 15 * 1000; // 15 minutes |