mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add provider ids to database
This commit is contained in:
parent
e7ba8f57af
commit
31b057360f
5 changed files with 14 additions and 23 deletions
|
@ -55,6 +55,7 @@ define(['browser'], function (browser) {
|
|||
if (isPluginpage || (newView.classList && newView.classList.contains('type-interior'))) {
|
||||
dependencies.push('jqmlistview');
|
||||
dependencies.push('scripts/notifications');
|
||||
dependencies.push('dashboardcss');
|
||||
}
|
||||
|
||||
return new Promise(function (resolve, reject) {
|
||||
|
|
|
@ -145,9 +145,6 @@
|
|||
<input class="chkMissingRating" type="checkbox" name="chkMissingRating" id="chkMissingRating">
|
||||
<label for="chkMissingRating">${OptionMissingParentalRating}</label>
|
||||
|
||||
<input class="chkYearMismatch" type="checkbox" name="chkYearMismatch" id="chkYearMismatch">
|
||||
<label for="chkYearMismatch">${OptionFileMetadataYearMismatch}</label>
|
||||
|
||||
<input class="chkMissingImdbId" type="checkbox" name="chkMissingImdbId" id="chkMissingImdbId">
|
||||
<label for="chkMissingImdbId">${OptionMissingImdbId}</label>
|
||||
|
||||
|
|
|
@ -502,7 +502,6 @@
|
|||
//Management
|
||||
$('#chkMissingRating', page).checked(query.HasOfficialRating == false).checkboxradio('refresh');
|
||||
$('#chkMissingOverview', page).checked(query.HasOverview == false).checkboxradio('refresh');
|
||||
$('#chkYearMismatch', page).checked(query.IsYearMismatched == true).checkboxradio('refresh');
|
||||
$('#chkIsLocked', page).checked(query.IsLocked == true).checkboxradio('refresh');
|
||||
$('#chkMissingImdbId', page).checked(query.HasImdbId == false).checkboxradio('refresh');
|
||||
$('#chkMissingTmdbId', page).checked(query.HasTmdbId == false).checkboxradio('refresh');
|
||||
|
@ -813,14 +812,6 @@
|
|||
reloadItems(page);
|
||||
});
|
||||
|
||||
$('#chkYearMismatch', page).on('change', function () {
|
||||
|
||||
query.StartIndex = 0;
|
||||
query.IsYearMismatched = this.checked ? true : null;
|
||||
|
||||
reloadItems(page);
|
||||
});
|
||||
|
||||
//Episodes
|
||||
$('#chkMissingEpisode', page).on('change', function () {
|
||||
|
||||
|
|
|
@ -1891,7 +1891,9 @@ var AppInfo = {};
|
|||
|
||||
define("jstree", [bowerPath + "/jstree/dist/jstree", "css!thirdparty/jstree/themes/default/style.min.css"]);
|
||||
|
||||
define("jqmbase", ['css!css/dashboard', 'css!thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.css']);
|
||||
define("dashboardcss", ['css!css/dashboard']);
|
||||
|
||||
define("jqmbase", ['dashboardcss', 'css!thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.css']);
|
||||
define("jqmicons", ['jqmbase', 'css!thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css']);
|
||||
define("jqmtable", ['jqmbase', "thirdparty/jquerymobile-1.4.5/jqm.table", 'css!thirdparty/jquerymobile-1.4.5/jqm.table.css']);
|
||||
|
||||
|
@ -2986,14 +2988,14 @@ var AppInfo = {};
|
|||
|
||||
defineRoute({
|
||||
path: '/wizardagreement.html',
|
||||
dependencies: [],
|
||||
dependencies: ['dashboardcss'],
|
||||
autoFocus: false,
|
||||
anonymous: true
|
||||
});
|
||||
|
||||
defineRoute({
|
||||
path: '/wizardfinish.html',
|
||||
dependencies: ['paper-button'],
|
||||
dependencies: ['paper-button', 'dashboardcss'],
|
||||
autoFocus: false,
|
||||
anonymous: true,
|
||||
controller: 'scripts/wizardfinishpage'
|
||||
|
@ -3001,49 +3003,49 @@ var AppInfo = {};
|
|||
|
||||
defineRoute({
|
||||
path: '/wizardlibrary.html',
|
||||
dependencies: [],
|
||||
dependencies: ['dashboardcss'],
|
||||
autoFocus: false,
|
||||
anonymous: true
|
||||
});
|
||||
|
||||
defineRoute({
|
||||
path: '/wizardlivetvguide.html',
|
||||
dependencies: [],
|
||||
dependencies: ['dashboardcss'],
|
||||
autoFocus: false,
|
||||
anonymous: true
|
||||
});
|
||||
|
||||
defineRoute({
|
||||
path: '/wizardlivetvtuner.html',
|
||||
dependencies: [],
|
||||
dependencies: ['dashboardcss'],
|
||||
autoFocus: false,
|
||||
anonymous: true
|
||||
});
|
||||
|
||||
defineRoute({
|
||||
path: '/wizardservice.html',
|
||||
dependencies: [],
|
||||
dependencies: ['dashboardcss'],
|
||||
autoFocus: false,
|
||||
anonymous: true
|
||||
});
|
||||
|
||||
defineRoute({
|
||||
path: '/wizardsettings.html',
|
||||
dependencies: [],
|
||||
dependencies: ['dashboardcss'],
|
||||
autoFocus: false,
|
||||
anonymous: true
|
||||
});
|
||||
|
||||
defineRoute({
|
||||
path: '/wizardstart.html',
|
||||
dependencies: [],
|
||||
dependencies: ['dashboardcss'],
|
||||
autoFocus: false,
|
||||
anonymous: true
|
||||
});
|
||||
|
||||
defineRoute({
|
||||
path: '/wizarduser.html',
|
||||
dependencies: [],
|
||||
dependencies: ['dashboardcss'],
|
||||
autoFocus: false,
|
||||
anonymous: true
|
||||
});
|
||||
|
|
|
@ -975,7 +975,7 @@
|
|||
"LabelProtocolInfo": "Protocol info:",
|
||||
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
|
||||
"TabNfoSettings": "Nfo Settings",
|
||||
"HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
|
||||
"HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Services tab to configure options for your media types.",
|
||||
"LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
|
||||
"LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
|
||||
"LabelKodiMetadataDateFormat": "Release date format:",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue