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

convert artist providers

This commit is contained in:
Luke Pulverenti 2014-01-30 23:50:09 -05:00
parent e9d32c8fb3
commit 6194dac647
3 changed files with 8 additions and 1 deletions

View file

@ -42,6 +42,11 @@
</ul> </ul>
<h2>Automatic Updates</h2> <h2>Automatic Updates</h2>
<ul data-role="listview" class="ulForm"> <ul data-role="listview" class="ulForm">
<li>
<input type="checkbox" id="chkEnableFanartUpdates" name="chkEnableFanartUpdates" data-mini="true" />
<label for="chkEnableFanartUpdates">Enable automatic updates from FanArt.tv</label>
<div class="fieldDescription">If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.</div>
</li>
<li> <li>
<input type="checkbox" id="chkEnableTmdbPersonUpdates" name="chkEnableTmdbPersonUpdates" data-mini="true" /> <input type="checkbox" id="chkEnableTmdbPersonUpdates" name="chkEnableTmdbPersonUpdates" data-mini="true" />
<label for="chkEnableTmdbPersonUpdates">Enable automatic updates from TheMovieDB.org</label> <label for="chkEnableTmdbPersonUpdates">Enable automatic updates from TheMovieDB.org</label>

View file

@ -3,7 +3,7 @@
var query = { var query = {
StartIndex: 0, StartIndex: 0,
Limit: 30 Limit: 20
}; };
var currentResult; var currentResult;

View file

@ -23,6 +23,7 @@
$('#chkEnableTmdbPersonUpdates', page).checked(config.EnableTmdbUpdates).checkboxradio("refresh"); $('#chkEnableTmdbPersonUpdates', page).checked(config.EnableTmdbUpdates).checkboxradio("refresh");
$('#chkEnableTvdbUpdates', page).checked(config.EnableTvDbUpdates).checkboxradio("refresh"); $('#chkEnableTvdbUpdates', page).checked(config.EnableTvDbUpdates).checkboxradio("refresh");
$('#chkEnableFanartUpdates', page).checked(config.EnableFanArtUpdates).checkboxradio("refresh");
Dashboard.hideLoadingMsg(); Dashboard.hideLoadingMsg();
}, },
@ -62,6 +63,7 @@
config.EnableTvDbUpdates = $('#chkEnableTvdbUpdates', form).checked(); config.EnableTvDbUpdates = $('#chkEnableTvdbUpdates', form).checked();
config.EnableTmdbUpdates = $('#chkEnableTmdbPersonUpdates', form).checked(); config.EnableTmdbUpdates = $('#chkEnableTmdbPersonUpdates', form).checked();
config.EnableFanArtUpdates = $('#chkEnableFanartUpdates', form).checked();
ApiClient.updateServerConfiguration(config).done(Dashboard.processServerConfigurationUpdateResult); ApiClient.updateServerConfiguration(config).done(Dashboard.processServerConfigurationUpdateResult);
}); });