mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add image download setting
This commit is contained in:
parent
2f218ec5d5
commit
9cadc0ddff
4 changed files with 22 additions and 2 deletions
|
@ -101,6 +101,18 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div data-role="collapsible">
|
||||
<h2>${HeaderImages}</h2>
|
||||
<div>
|
||||
<br />
|
||||
<div>
|
||||
<paper-checkbox id="chkDownloadImagesInAdvance">${OptionDownloadImagesInAdvance}</paper-checkbox>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${OptionDownloadImagesInAdvanceHelp}</div>
|
||||
</div>
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div data-role="collapsible">
|
||||
<h2>${HeaderPeople}</h2>
|
||||
<div>
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
$('#chkPeopleOthers', page).checked(config.PeopleMetadataOptions.DownloadOtherPeopleMetadata);
|
||||
$('#chkPeopleGuestStars', page).checked(config.PeopleMetadataOptions.DownloadGuestStarMetadata);
|
||||
|
||||
$('#chkDownloadImagesInAdvance', page).checked(config.DownloadImagesInAdvance);
|
||||
|
||||
Dashboard.hideLoadingMsg();
|
||||
}
|
||||
|
||||
|
@ -178,6 +180,8 @@
|
|||
config.MetadataPath = $('#txtMetadataPath', form).val();
|
||||
config.FanartApiKey = $('#txtFanartApiKey', form).val();
|
||||
|
||||
config.DownloadImagesInAdvance = $('#chkDownloadImagesInAdvance', form).checked();
|
||||
|
||||
config.PeopleMetadataOptions.DownloadActorMetadata = $('#chkPeopleActors', form).checked();
|
||||
config.PeopleMetadataOptions.DownloadComposerMetadata = $('#chkPeopleComposers', form).checked();
|
||||
config.PeopleMetadataOptions.DownloadDirectorMetadata = $('#chkPeopleDirectors', form).checked();
|
||||
|
|
|
@ -1527,5 +1527,7 @@
|
|||
"FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.",
|
||||
"FileExtension": "File extension",
|
||||
"OptionReplaceExistingImages": "Replace existing images",
|
||||
"OptionPlayNextEpisodeAutomatically": "Play next episode automatically"
|
||||
"OptionPlayNextEpisodeAutomatically": "Play next episode automatically",
|
||||
"OptionDownloadImagesInAdvance": "Download all images in advance",
|
||||
"OptionDownloadImagesInAdvanceHelp": "By default, most secondary images are not downloaded until requested by an Emby app. Enable this option to download all images in advance, as new media is imported."
|
||||
}
|
|
@ -1543,5 +1543,7 @@
|
|||
"FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.",
|
||||
"FileExtension": "File extension",
|
||||
"OptionReplaceExistingImages": "Replace existing images",
|
||||
"OptionPlayNextEpisodeAutomatically": "Play next episode automatically"
|
||||
"OptionPlayNextEpisodeAutomatically": "Play next episode automatically",
|
||||
"OptionDownloadImagesInAdvance": "Download all images in advance",
|
||||
"OptionDownloadImagesInAdvanceHelp": "By default, most secondary images are not downloaded until requested by an Emby app. Enable this option to download all images in advance, as new media is imported."
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue