1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

add search methods to remote metadata providers

This commit is contained in:
Luke Pulverenti 2014-02-19 23:53:15 -05:00
parent 9f346f271c
commit 990e9a39c6
2 changed files with 4 additions and 3 deletions

View file

@ -46,8 +46,9 @@
<div> <div>
<label for="txtMaxBackdrops">Maximum number of backdrops per item: </label> <label for="txtMaxBackdrops">Maximum number of backdrops per item: </label>
<input type="number" id="txtMaxBackdrops" name="txtMaxBackdrops" pattern="[0-9]*" required="required" min="0" data-mini="true" /> <input type="number" id="txtMaxBackdrops" name="txtMaxBackdrops" pattern="[0-9]*" required="required" min="0" data-mini="true" />
<div class="fieldDescription">To prevent duplicate backdrop downloading, backdrops are only automatically downloaded when there are no backdrops present. Once an item has a single backdrop, further changes will need to be made manually using the metadata manager.</div>
</div> </div>
<br />
<div> <div>
<label for="txtMinBackdropDownloadWidth">Minimum backdrop download width: </label> <label for="txtMinBackdropDownloadWidth">Minimum backdrop download width: </label>
<input type="number" id="txtMinBackdropDownloadWidth" name="txtMinBackdropDownloadWidth" pattern="[0-9]*" required="required" min="0" data-mini="true" /> <input type="number" id="txtMinBackdropDownloadWidth" name="txtMinBackdropDownloadWidth" pattern="[0-9]*" required="required" min="0" data-mini="true" />

View file

@ -287,7 +287,7 @@
var i, length, plugin, id; var i, length, plugin, id;
html += '<div class="ui-controlgroup-label" style="margin-bottom:0;padding-left:2px;">Metadata Fetchers:</div>'; html += '<div class="ui-controlgroup-label" style="margin-bottom:0;padding-left:2px;">Metadata Downloaders:</div>';
html += '<div style="display:inline-block;width: 75%;vertical-align:top;">'; html += '<div style="display:inline-block;width: 75%;vertical-align:top;">';
html += '<div data-role="controlgroup" class="metadataFetcherGroup">'; html += '<div data-role="controlgroup" class="metadataFetcherGroup">';
@ -329,7 +329,7 @@
} }
html += '</div>'; html += '</div>';
html += '<div class="fieldDescription" style="width:75%;">Enable and rank your preferred metadata fetchers in order of priority. Lower priority fetchers will only be used to fill in missing information.</div>'; html += '<div class="fieldDescription" style="width:75%;">Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.</div>';
var elem = $('.metadataFetchers', page).html(html).show().trigger('create'); var elem = $('.metadataFetchers', page).html(html).show().trigger('create');