diff options
author | M. Voerman <rekordc@gmail.com> | 2014-05-17 00:20:44 +0200 |
---|---|---|
committer | M. Voerman <rekordc@gmail.com> | 2014-05-17 00:20:44 +0200 |
commit | f52420ac12c70b7b1c29edb10a01a60e07e4296a (patch) | |
tree | c410fe766c39337d12b3084f74bf7e848b2e6df6 | |
parent | 27698483353f65bb1af21888865bdfaa78e4ec61 (diff) | |
download | vdr-vipclient-f52420ac12c70b7b1c29edb10a01a60e07e4296a.tar.gz vdr-vipclient-f52420ac12c70b7b1c29edb10a01a60e07e4296a.tar.bz2 |
fix, saving in flash
fix, no adding to favorite list if channel is in protected group
-rw-r--r-- | index.html | 4 | ||||
-rw-r--r-- | settings.js | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1082,14 +1082,16 @@ function onKeyDown(event) { } break; case KEY_D:// >@ key on old long kpn 1710/1760 remote + if (protChn[ChanGroup] !== 1 ) { Fav_max_channel = Fav_max_channel + 1; maxChan[Fav_group] = Fav_base + Fav_max_channel; channelsnames[(Fav_base + Fav_max_channel)] = channelsnames[currChan]; channels[(Fav_base + Fav_max_channel)] = channels[currChan]; toi.informationService.setObject(("vip.channelsnames." + Fav_max_channel),channelsnames[currChan],is.STORAGE_PERMANENT) toi.informationService.setObject(("vip.channels." + Fav_max_channel),channels[currChan],is.STORAGE_PERMANENT) - toi.informationService.setObject("vip.fav_max_channel",Fav_max_channel,toi.informationService.STORAGE_PERMANENT) + toi.informationService.setObject("vip.fav_max_channel",Fav_max_channel.toString(),toi.informationService.STORAGE_PERMANENT) settimer(0,channels[currChan],Fav_max_channel ,2); + } break; case "Teletext": diff --git a/settings.js b/settings.js index ecdc50c..af00ab3 100644 --- a/settings.js +++ b/settings.js @@ -2,7 +2,7 @@ // Default settings // -var Version = "0.24.10"; +var Version = "0.24.11"; server_ip_array = new Array("http://192.168.1.15","http://192.168.3.15","http://192.168.3.100","http://192.168.178.19","http://192.168.1.21"); |