1
0
Fork 0
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:
Luke Pulverenti 2016-06-02 00:41:12 -04:00
parent e7ba8f57af
commit 31b057360f
5 changed files with 14 additions and 23 deletions

View file

@ -55,6 +55,7 @@ define(['browser'], function (browser) {
if (isPluginpage || (newView.classList && newView.classList.contains('type-interior'))) { if (isPluginpage || (newView.classList && newView.classList.contains('type-interior'))) {
dependencies.push('jqmlistview'); dependencies.push('jqmlistview');
dependencies.push('scripts/notifications'); dependencies.push('scripts/notifications');
dependencies.push('dashboardcss');
} }
return new Promise(function (resolve, reject) { return new Promise(function (resolve, reject) {

View file

@ -145,9 +145,6 @@
<input class="chkMissingRating" type="checkbox" name="chkMissingRating" id="chkMissingRating"> <input class="chkMissingRating" type="checkbox" name="chkMissingRating" id="chkMissingRating">
<label for="chkMissingRating">${OptionMissingParentalRating}</label> <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"> <input class="chkMissingImdbId" type="checkbox" name="chkMissingImdbId" id="chkMissingImdbId">
<label for="chkMissingImdbId">${OptionMissingImdbId}</label> <label for="chkMissingImdbId">${OptionMissingImdbId}</label>

View file

@ -502,7 +502,6 @@
//Management //Management
$('#chkMissingRating', page).checked(query.HasOfficialRating == false).checkboxradio('refresh'); $('#chkMissingRating', page).checked(query.HasOfficialRating == false).checkboxradio('refresh');
$('#chkMissingOverview', page).checked(query.HasOverview == 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'); $('#chkIsLocked', page).checked(query.IsLocked == true).checkboxradio('refresh');
$('#chkMissingImdbId', page).checked(query.HasImdbId == false).checkboxradio('refresh'); $('#chkMissingImdbId', page).checked(query.HasImdbId == false).checkboxradio('refresh');
$('#chkMissingTmdbId', page).checked(query.HasTmdbId == false).checkboxradio('refresh'); $('#chkMissingTmdbId', page).checked(query.HasTmdbId == false).checkboxradio('refresh');
@ -813,14 +812,6 @@
reloadItems(page); reloadItems(page);
}); });
$('#chkYearMismatch', page).on('change', function () {
query.StartIndex = 0;
query.IsYearMismatched = this.checked ? true : null;
reloadItems(page);
});
//Episodes //Episodes
$('#chkMissingEpisode', page).on('change', function () { $('#chkMissingEpisode', page).on('change', function () {

View file

@ -1891,7 +1891,9 @@ var AppInfo = {};
define("jstree", [bowerPath + "/jstree/dist/jstree", "css!thirdparty/jstree/themes/default/style.min.css"]); 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("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']); 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({ defineRoute({
path: '/wizardagreement.html', path: '/wizardagreement.html',
dependencies: [], dependencies: ['dashboardcss'],
autoFocus: false, autoFocus: false,
anonymous: true anonymous: true
}); });
defineRoute({ defineRoute({
path: '/wizardfinish.html', path: '/wizardfinish.html',
dependencies: ['paper-button'], dependencies: ['paper-button', 'dashboardcss'],
autoFocus: false, autoFocus: false,
anonymous: true, anonymous: true,
controller: 'scripts/wizardfinishpage' controller: 'scripts/wizardfinishpage'
@ -3001,49 +3003,49 @@ var AppInfo = {};
defineRoute({ defineRoute({
path: '/wizardlibrary.html', path: '/wizardlibrary.html',
dependencies: [], dependencies: ['dashboardcss'],
autoFocus: false, autoFocus: false,
anonymous: true anonymous: true
}); });
defineRoute({ defineRoute({
path: '/wizardlivetvguide.html', path: '/wizardlivetvguide.html',
dependencies: [], dependencies: ['dashboardcss'],
autoFocus: false, autoFocus: false,
anonymous: true anonymous: true
}); });
defineRoute({ defineRoute({
path: '/wizardlivetvtuner.html', path: '/wizardlivetvtuner.html',
dependencies: [], dependencies: ['dashboardcss'],
autoFocus: false, autoFocus: false,
anonymous: true anonymous: true
}); });
defineRoute({ defineRoute({
path: '/wizardservice.html', path: '/wizardservice.html',
dependencies: [], dependencies: ['dashboardcss'],
autoFocus: false, autoFocus: false,
anonymous: true anonymous: true
}); });
defineRoute({ defineRoute({
path: '/wizardsettings.html', path: '/wizardsettings.html',
dependencies: [], dependencies: ['dashboardcss'],
autoFocus: false, autoFocus: false,
anonymous: true anonymous: true
}); });
defineRoute({ defineRoute({
path: '/wizardstart.html', path: '/wizardstart.html',
dependencies: [], dependencies: ['dashboardcss'],
autoFocus: false, autoFocus: false,
anonymous: true anonymous: true
}); });
defineRoute({ defineRoute({
path: '/wizarduser.html', path: '/wizarduser.html',
dependencies: [], dependencies: ['dashboardcss'],
autoFocus: false, autoFocus: false,
anonymous: true anonymous: true
}); });

View file

@ -975,7 +975,7 @@
"LabelProtocolInfo": "Protocol info:", "LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
"TabNfoSettings": "Nfo Settings", "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:", "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
"LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.", "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
"LabelKodiMetadataDateFormat": "Release date format:", "LabelKodiMetadataDateFormat": "Release date format:",