mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
2ebcfe8642
commit
81ab24a44c
7 changed files with 14 additions and 24 deletions
|
@ -16,12 +16,12 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.1.61",
|
"version": "1.1.62",
|
||||||
"_release": "1.1.61",
|
"_release": "1.1.62",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.1.61",
|
"tag": "1.1.62",
|
||||||
"commit": "6a78282741579ae715a93d4da77393d887ecc52e"
|
"commit": "da75c70974125e7666f6e01738850b010f6276b6"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
|
"_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
|
||||||
"_target": "^1.1.51",
|
"_target": "^1.1.51",
|
||||||
|
|
|
@ -15,12 +15,12 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.4.15",
|
"version": "1.4.16",
|
||||||
"_release": "1.4.15",
|
"_release": "1.4.16",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.4.15",
|
"tag": "1.4.16",
|
||||||
"commit": "0a71ddc9b55b812fb7c7059525a6a774c3423996"
|
"commit": "b564ac84f300199b48a8a2338111d6b7609b671b"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||||
"_target": "^1.2.0",
|
"_target": "^1.2.0",
|
||||||
|
|
|
@ -207,8 +207,7 @@
|
||||||
var imgUrl = apiClient.getScaledImageUrl(item.id, {
|
var imgUrl = apiClient.getScaledImageUrl(item.id, {
|
||||||
type: "Backdrop",
|
type: "Backdrop",
|
||||||
tag: item.tag,
|
tag: item.tag,
|
||||||
//maxWidth: window.innerWidth,
|
maxWidth: Math.min(screen.availWidth || window.innerWidth, 1920)
|
||||||
quality: 100
|
|
||||||
});
|
});
|
||||||
|
|
||||||
setBackdrop(imgUrl, type);
|
setBackdrop(imgUrl, type);
|
||||||
|
|
|
@ -51,15 +51,6 @@ define(['dialogHelper', 'inputManager', 'connectionManager', 'layoutManager', 'f
|
||||||
options = options || {};
|
options = options || {};
|
||||||
options.type = options.type || "Backdrop";
|
options.type = options.type || "Backdrop";
|
||||||
|
|
||||||
options.width = null;
|
|
||||||
delete options.width;
|
|
||||||
options.maxWidth = null;
|
|
||||||
delete options.maxWidth;
|
|
||||||
options.maxHeight = null;
|
|
||||||
delete options.maxHeight;
|
|
||||||
options.height = null;
|
|
||||||
delete options.height;
|
|
||||||
|
|
||||||
// If not resizing, get the original image
|
// If not resizing, get the original image
|
||||||
if (!options.maxWidth && !options.width && !options.maxHeight && !options.height) {
|
if (!options.maxWidth && !options.width && !options.maxHeight && !options.height) {
|
||||||
options.quality = 100;
|
options.quality = 100;
|
||||||
|
|
|
@ -70,7 +70,7 @@
|
||||||
"LabelPlaylist": "Playlist:",
|
"LabelPlaylist": "Playlist:",
|
||||||
"AddToPlaylist": "Add to Playlist",
|
"AddToPlaylist": "Add to Playlist",
|
||||||
"Subtitles": "Subtitles",
|
"Subtitles": "Subtitles",
|
||||||
"DownloadSubtitles": "Download Subtitles",
|
"SearchForSubtitles": "Search for Subtitles",
|
||||||
"LabelLanguage": "Language:",
|
"LabelLanguage": "Language:",
|
||||||
"Search": "Search",
|
"Search": "Search",
|
||||||
"NoSubtitleSearchResultsFound": "No results found.",
|
"NoSubtitleSearchResultsFound": "No results found.",
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<div class="dialogContentInner centeredContent">
|
<div class="dialogContentInner centeredContent">
|
||||||
|
|
||||||
<div class="subtitleList" style="margin-bottom:2em;"></div>
|
<div class="subtitleList" style="margin-bottom:2em;"></div>
|
||||||
<h1>${DownloadSubtitles}</h1>
|
<h1>${SearchForSubtitles}</h1>
|
||||||
|
|
||||||
<p style="margin: 1.5em 0;" class="originalFile"><span class="originalFileLabel dimText"></span><span class="pathValue"></span></p>
|
<p style="margin: 1.5em 0;" class="originalFile"><span class="originalFileLabel dimText"></span><span class="pathValue"></span></p>
|
||||||
|
|
||||||
|
|
|
@ -26,14 +26,14 @@
|
||||||
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
||||||
},
|
},
|
||||||
"main": "iron-meta.html",
|
"main": "iron-meta.html",
|
||||||
"homepage": "https://github.com/PolymerElements/iron-meta",
|
"homepage": "https://github.com/polymerelements/iron-meta",
|
||||||
"_release": "1.1.1",
|
"_release": "1.1.1",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v1.1.1",
|
"tag": "v1.1.1",
|
||||||
"commit": "e171ee234b482219c9514e6f9551df48ef48bd9f"
|
"commit": "e171ee234b482219c9514e6f9551df48ef48bd9f"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/PolymerElements/iron-meta.git",
|
"_source": "git://github.com/polymerelements/iron-meta.git",
|
||||||
"_target": "^1.0.0",
|
"_target": "^1.0.0",
|
||||||
"_originalSource": "PolymerElements/iron-meta"
|
"_originalSource": "polymerelements/iron-meta"
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue