diff --git a/lib/pinchflat_web/controllers/media_profiles/media_profile_html/media_profile_form.html.heex b/lib/pinchflat_web/controllers/media_profiles/media_profile_html/media_profile_form.html.heex index 3eba728..1a0ee5b 100644 --- a/lib/pinchflat_web/controllers/media_profiles/media_profile_html/media_profile_form.html.heex +++ b/lib/pinchflat_web/controllers/media_profiles/media_profile_html/media_profile_form.html.heex @@ -166,8 +166,8 @@ <.input field={f[:download_nfo]} type="toggle" - label="Download NFO data" - help="Downloads NFO data alongside media file for use with Jellyfin, Kodi, etc." + label="Download episode NFO data" + help="Downloads episode NFO data alongside media file for use with Jellyfin, Kodi, etc." x-init="$watch('selectedPreset', p => p && (enabled = presets[p]))" /> @@ -181,7 +181,7 @@ field={f[:shorts_behaviour]} options={friendly_format_type_options()} type="select" - label="Include Shorts?" + label="Include Shorts" help="Experimental. Please report any issues on GitHub" x-init="$watch('selectedPreset', p => p && ($el.value = presets[p]))" /> @@ -192,7 +192,7 @@ field={f[:livestream_behaviour]} options={friendly_format_type_options()} type="select" - label="Include Livestreams?" + label="Include Livestreams" help="Excludes media that comes from a past livestream" x-init="$watch('selectedPreset', p => p && ($el.value = presets[p]))" /> diff --git a/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex b/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex index a17714b..2ddff50 100644 --- a/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex +++ b/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex @@ -41,7 +41,7 @@ <.input field={f[:fast_index]} type="toggle" - label="Use Fast Indexing?" + label="Use Fast Indexing" label_suffix="(pro)" help="Experimental. Ignores 'Index Frequency'. Recommended for large channels that upload frequently. See below for more info" /> @@ -54,7 +54,7 @@ <.input field={f[:download_media]} type="toggle" - label="Download Media?" + label="Download Media" help="Unchecking still indexes media but it won't be downloaded until you enable this option" /> @@ -69,6 +69,22 @@ help="Only download media uploaded after this date. Leave blank to download all media. Must be in YYYY-MM-DD format" /> +
+ Everything in this section is experimental - please open a GitHub issue if you see something odd. + These options only work if your Media Profile's output template is set to split media into seasons. + Try the "Media Center" preset for Media Profiles if you're not sure. +
+ + <.input + field={f[:download_nfo]} + type="toggle" + label="Download series NFO data" + help="Downloads series NFO data for use with Jellyfin, Kodi, etc. Uneffected by 'Download Media'" + /> + <.button class="my-10 sm:mb-7.5 w-full sm:w-auto">Save Source