diff options
author | Dirk Brenken <dev@brenken.org> | 2021-08-15 14:59:54 +0200 |
---|---|---|
committer | Dirk Brenken <dev@brenken.org> | 2021-08-15 15:01:13 +0200 |
commit | fd7494ffb19d1c0197ddcb048c381b44cdb205e5 (patch) | |
tree | 80d32ab94bec11e69c11fe4f7b493dc39bca8b59 /applications/luci-app-travelmate/htdocs/luci-static | |
parent | 1b715d25159c04eee3e81d2de61c68c5f4bd7c02 (diff) |
luci-app-travelmate: sync with travelmate 2.0.5-3
* adapt the travelmate UI to support the changed 'trm_maxscan' option
* sync translations
Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'applications/luci-app-travelmate/htdocs/luci-static')
-rw-r--r-- | applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js index 16d933e691..9dde97dd34 100644 --- a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js +++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js @@ -362,9 +362,9 @@ return view.extend({ o.datatype = 'range(30,300)'; o.rmempty = true; - o = s.taboption('additional', form.Value, 'trm_scanbuffer', _('Scan Buffer Size'), _('Buffer size in bytes to prepare nearby scan results.')); - o.placeholder = '1024'; - o.datatype = 'range(256,4096)'; + o = s.taboption('additional', form.Value, 'trm_maxscan', _('Scan Limit'), _('Limit the nearby scan results to process only the strongest uplinks.')); + o.placeholder = '10'; + o.datatype = 'range(1,30)'; o.rmempty = true; o = s.taboption('additional', form.ListValue, 'trm_captiveurl', _('Captive Portal URL'), _('The selected URL will be used for connectivity- and captive portal checks.')); |