diff options
| author | M. Voerman <rekordc@gmail.com> | 2014-07-27 17:18:56 +0200 |
|---|---|---|
| committer | M. Voerman <rekordc@gmail.com> | 2014-07-27 17:18:56 +0200 |
| commit | c48d68acb011846384eef720a3031d26c4235d90 (patch) | |
| tree | 3729e02fee5c9264fbc4b31f45059fa044cf8d44 | |
| parent | ec2e6f1f149ebd8505c256d47c10711a220ca417 (diff) | |
| download | vdr-vipclient-c48d68acb011846384eef720a3031d26c4235d90.tar.gz vdr-vipclient-c48d68acb011846384eef720a3031d26c4235d90.tar.bz2 | |
No duration show in Media list, only in recordings list
| -rw-r--r-- | History | 5 | ||||
| -rw-r--r-- | index.html | 7 | ||||
| -rw-r--r-- | settings.js | 2 |
3 files changed, 10 insertions, 4 deletions
@@ -3,10 +3,13 @@ Motorola Vip : 1960, 1910, 1903, 1963. VDR 1.7.29+ -0.25 Get recordings from Streamdev, Restfapi or SmartTVweb. +0.25 Get recordings from Streamdev, Restfulapi or SmartTVweb. Check if SmartTVweb is on the server if not turn SmartTVweb options off + Check if Restfulapi is on the server if not turn Restfulapi options off Streamdev can also do Rewind, pause, Fastforward. Added German translation (Google Translate) so it must be corrected. + Fixed in GuideView the functionkey information. (After pressing Yellow, Back it wasn't right) + Duration of recording is show in Recordings list. 0.24 vip.getmarks used for selecting getmarks 0 = restfulapi, 1 = SmartTVWeb (not all users have the newest SmartTVWeb) @@ -919,6 +919,9 @@ function onKeyDown(event) { if(isSchedule) { isSchedule = 0; schedule.style.opacity = 0; + colorkeys.innerHTML = "<font color=red> " + NN[3 + (1 - NowNext)] + " </font><font color=green> " + + NN[1 - NowNext] + " </font><font color=yellow> " + NN[2] + " </font><font color=blue> " + + NN[5] + " </font>"; break; } @@ -4323,7 +4326,7 @@ function MakeRecList2() { result = recStrt[i]; } else{ AddInfo(i); - result += "\uE003" + (recDura[i]/60).toFixed(0); + if (recChan[i] !== "Media File") {result += "\uE003" + (recDura[i]/60).toFixed(0);} } if (rec_New[i] == "true" ) { recList[i] = "\uE010" + result + "\uE003" + recTitl[i]; @@ -4352,7 +4355,7 @@ function MakeRecList3(GroupID) { result = recStrt[i]; } else{ AddInfo(i); - result += "\uE003" + (recDura[i]/60).toFixed(0); + if (recChan[i] !== "Media File") {result += "\uE003" + (recDura[i]/60).toFixed(0);} } if (rec_New[i] == "true" ) { recList[i] = "\uE010" + result + tmp; // recTitl[i]; diff --git a/settings.js b/settings.js index 37e3de5..b9576b6 100644 --- a/settings.js +++ b/settings.js @@ -2,7 +2,7 @@ // Default settings // -var Version = "0.25.9"; +var Version = "0.25.10"; server_ip_array = new Array("http://192.168.1.15","http://192.168.3.15","http://easyvdr","http://192.168.3.100","http://192.168.178.19","http://192.168.1.21","http://192.168.2.100","http://192.168.178.52"); |
