summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2013-11-29 23:43:40 +0100
committerM. Voerman <rekordc@gmail.com>2013-11-29 23:43:40 +0100
commitc3b417c0151761a46e19b0470c6a567c76f21156 (patch)
tree2a503266266160560fa85748b81b6c1c829d9531
parent4881eb734af137742d859e1550efa1e9a1f1d1d7 (diff)
downloadvdr-vipclient-c3b417c0151761a46e19b0470c6a567c76f21156.tar.gz
vdr-vipclient-c3b417c0151761a46e19b0470c6a567c76f21156.tar.bz2
Add some polish channels (Trying to follow NC+ sorting order) - group 4
Jump to 0:00:00 also resets markers
-rw-r--r--History4
-rw-r--r--index.html12
2 files changed, 13 insertions, 3 deletions
diff --git a/History b/History
index af506da..8f44fdb 100644
--- a/History
+++ b/History
@@ -4,7 +4,7 @@ Motorola Vip : 1960, 1910, 1903, 1963.
VDR 1.7.29 / 2.1.1
0.23 Infobox for connection Error, not only ERRR on display but also the Infobox
- Updated EPG filter for Sat.1/Pro7, Rai (13E), TVP (19E)
+ Updated EPG filter for Sat.1/Pro7, Rai (13E), TVP (19E) Polish (13E)
channels update.
Dynamic audio selection only if number of audio channels > 1 and not "NAR" (uk mostly)
<blue> key - EPG info always start at Now.
@@ -14,6 +14,8 @@ VDR 1.7.29 / 2.1.1
Removed action 'display EPG/Info' from key 'back', use 'blue' for epg/info
Some info while waiting for searchtimer info
Updated the resume function to work with the vdr 2.1.1 (changed to decimal ',')
+ Added group 4, some Polish channels (NC+ sorting order)
+ During play '0' jumps to 0:00:00 and now resets posmark index also to 0
0.22 Updated EPG filter for 42E, canal sat (tid 1088), canal+ (tid 1060), CDS (veronica, iConcerts, Animax)
diff --git a/index.html b/index.html
index a9b773b..068f508 100644
--- a/index.html
+++ b/index.html
@@ -5,6 +5,7 @@
<script type="text/javascript" src="channels.js" />
<script type="text/javascript" src="channels1.js" />
<script type="text/javascript" src="channels3.js" />
+ <script type="text/javascript" src="channels4.js" />
<script type="text/javascript" src="channels5.js" />
<script type="text/javascript" src="channels6.js" />
<script type="text/javascript" src="channels8.js" />
@@ -390,6 +391,7 @@ function play(uri) {
}
if(testing2) {
+ if (CAdelayID != -1) { clearTimeout(CAdelayID); CAdelayID = -1; switchtimer.style.opacity = 0;}
if ( (currChan > 10 && currChan < 26 ) || (currChan > 40 && currChan < 50 ) || (currChan > 50 && currChan < 120 ) ||
(currChan > 151 && currChan < 200) || (currChan > 604 && currChan < 612 ) || (currChan > 624 && currChan < 631) ||
(currChan > 632 && currChan < 700) || (currChan > 8004 && currChan < 8027) )
@@ -397,7 +399,6 @@ function play(uri) {
//Show info if set nonfree
switchtimer.innerHTML = "<pre><center>\n" + Lang[90] +"\n\n </center></pre>"; // Non free channel message
switchtimer.style.opacity = 1;
- if (CAdelayID != -1) { clearTimeout(CAdelayID); CAdelayID = -1;}
CAdelayID = setTimeout("switchtimer.style.opacity = 0; ", (ShowSetTimer + ShowOsdTime) );
}
}
@@ -1665,6 +1666,13 @@ function StreamInfo(si) {
is.setObject("cfg.locale.ui","DEU",is.STORAGE_VOLATILE);
}
+
+ if(SI[0]=="S13.0E" && (SI[2]=="1600" || SI[2]=="1000" || SI[2]=="1500" || SI[2]=="1300" || SI[2]=="300" )) {
+ //NC+ (Polski)
+ is.setObject("cfg.locale.ui","pol",is.STORAGE_VOLATILE);
+ }
+
+
if(SI[1]=="113") {
//PolSat
is.setObject("cfg.locale.ui","pol",is.STORAGE_VOLATILE);
@@ -3318,7 +3326,7 @@ if (DelisOK) {
}
break;
case KEY_0:
- position = 0;
+ position = 0; posMark = 0;
playRec((recLink[currMed] + "?mode=streamtoend&time=" + position));
break;