diff options
author | Sergey Ponomarev <stokito@gmail.com> | 2023-09-08 12:31:54 +0300 |
---|---|---|
committer | Sergey Ponomarev <stokito@gmail.com> | 2023-09-08 12:31:54 +0300 |
commit | 2bedcdfa166a9fd6e9bbc873ca1a1d8843952cef (patch) | |
tree | 568d1a9a3ad237b95d0a26606b0317ca1ec45a83 /applications/luci-app-minidlna/htdocs/luci-static | |
parent | 835768f555c42519e886e26c03227a560a86b6af (diff) |
luci-app-minidlna: move album covers to advanced tab
Also remove o.default = o.enabled
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
Diffstat (limited to 'applications/luci-app-minidlna/htdocs/luci-static')
-rw-r--r-- | applications/luci-app-minidlna/htdocs/luci-static/resources/view/minidlna.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/applications/luci-app-minidlna/htdocs/luci-static/resources/view/minidlna.js b/applications/luci-app-minidlna/htdocs/luci-static/resources/view/minidlna.js index 3c01938da2..dd80a840b2 100644 --- a/applications/luci-app-minidlna/htdocs/luci-static/resources/view/minidlna.js +++ b/applications/luci-app-minidlna/htdocs/luci-static/resources/view/minidlna.js @@ -77,7 +77,7 @@ return view.extend({ o = s.taboption('general', form.DynamicList, 'media_dir', _('Media directories'), _('Set this to the directory you want scanned. If you want to restrict the directory to a specific content type, you can prepend the type (\'A\' for audio, \'V\' for video, \'P\' for images), followed by a comma, to the directory (eg. A,/mnt/media/Music). Multiple directories can be specified.')); - o = s.taboption('general', form.DynamicList, 'album_art_names', _('Album art names'), _('This is a list of file names to check for when searching for album art.')); + o = s.taboption('advanced', form.DynamicList, 'album_art_names', _('Album art names'), _('This is a list of file names to check for when searching for album art.')); o.cfgvalue = function(section_id) { return L.toArray(uci.get('minidlna', section_id, 'album_art_names')).join('/').split(/\//); }; @@ -88,7 +88,6 @@ return view.extend({ o = s.taboption('advanced', form.Value, 'db_dir', _('Database directory'), _('Set this if you would like to specify the directory where you want MiniDLNA to store its database and album art cache.')); o = s.taboption('advanced', form.Flag, 'inotify', _('Enable inotify'), _('Set this to enable inotify monitoring to automatically discover new files.')); - o.default = o.enabled; o = s.taboption('advanced', form.Flag, 'enable_tivo', _('Enable TIVO'), _('Set this to enable support for streaming .jpg and .mp3 files to a TiVo supporting HMO.')); |