mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
commit
12839db88b
@ -32,14 +32,14 @@
|
||||
"web-component-tester": "^4.0.0",
|
||||
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
||||
},
|
||||
"homepage": "https://github.com/polymerelements/iron-icon",
|
||||
"homepage": "https://github.com/PolymerElements/iron-icon",
|
||||
"_release": "1.0.8",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v1.0.8",
|
||||
"commit": "f36b38928849ef3853db727faa8c9ef104d611eb"
|
||||
},
|
||||
"_source": "git://github.com/polymerelements/iron-icon.git",
|
||||
"_source": "git://github.com/PolymerElements/iron-icon.git",
|
||||
"_target": "^1.0.0",
|
||||
"_originalSource": "polymerelements/iron-icon"
|
||||
"_originalSource": "PolymerElements/iron-icon"
|
||||
}
|
@ -28,12 +28,12 @@
|
||||
"web-animations-next-lite.dev.html",
|
||||
"web-animations-next-lite.dev.js"
|
||||
],
|
||||
"version": "2.2.0",
|
||||
"_release": "2.2.0",
|
||||
"version": "2.2.1",
|
||||
"_release": "2.2.1",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "2.2.0",
|
||||
"commit": "b5d91413acee82aadd01a18880cb84a5d883047d"
|
||||
"tag": "2.2.1",
|
||||
"commit": "45d8e40300e82ff02ccfbbc78c89500de0f5616f"
|
||||
},
|
||||
"_source": "git://github.com/web-animations/web-animations-js.git",
|
||||
"_target": "^2.2.0",
|
||||
|
@ -1,3 +1,21 @@
|
||||
### 2.2.1 - *April 28 2016*
|
||||
* [Deprecated invalid timing inputs](https://github.com/web-animations/web-animations-next/pull/437) as they will soon throw [TypeErrors](https://github.com/web-animations/web-animations-next/pull/426) in native browsers.
|
||||
|
||||
For example, this is deprecated and will eventually throw a TypeError:
|
||||
|
||||
element.animate([], {
|
||||
duration: -1,
|
||||
iterationStart: -1,
|
||||
iterations: -1,
|
||||
easing: 'garbage string',
|
||||
});
|
||||
|
||||
* [Fixed polyfill crash in browsers based on Chromium 36 to 46.](https://github.com/web-animations/web-animations-next/pull/434)
|
||||
|
||||
* [Increased cubic-bezier accuracy.](https://github.com/web-animations/web-animations-next/pull/428)
|
||||
|
||||
* [Added support for grad and turn units for angles.](https://github.com/web-animations/web-animations-next/pull/427)
|
||||
|
||||
### 2.2.0 - *April 6 2016*
|
||||
* Deprecated the use of hyphens in property names.
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -145,7 +145,7 @@
|
||||
|
||||
apiClient.getPublicSystemInfo().then(function (info) {
|
||||
|
||||
if (compareVersions(info.Version, '3.0.5931') == 1) {
|
||||
if (compareVersions(info.Version, '3.0.5933') == 1) {
|
||||
showInternal();
|
||||
}
|
||||
});
|
||||
|
@ -2,6 +2,10 @@
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
body:not(.dashboardDocument) .mainDrawerButton {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.ui-body-b select {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
@ -11,9 +11,7 @@
|
||||
|
||||
html += '<paper-icon-button icon="' + backIcon + '" class="headerButton headerButtonLeft headerBackButton hide"></paper-icon-button>';
|
||||
|
||||
if (AppInfo.enableNavDrawer) {
|
||||
html += '<paper-icon-button icon="menu" class="headerButton mainDrawerButton barsMenuButton headerButtonLeft"></paper-icon-button>';
|
||||
}
|
||||
html += '<paper-icon-button icon="menu" class="headerButton mainDrawerButton barsMenuButton headerButtonLeft"></paper-icon-button>';
|
||||
|
||||
html += '<paper-icon-button icon="menu" class="headerButton headerAppsButton barsMenuButton headerButtonLeft"></paper-icon-button>';
|
||||
|
||||
|
@ -196,10 +196,6 @@ define(['appSettings', 'userSettings', 'appStorage'], function (appSettings, use
|
||||
|
||||
function updateDeviceProfileForIOS(profile) {
|
||||
|
||||
profile.DirectPlayProfiles.push({
|
||||
Container: "aac,mp3,mpa,wav,wma,mp2,ogg,oga,webma,ape,opus,flac",
|
||||
Type: 'Audio'
|
||||
});
|
||||
}
|
||||
|
||||
self.getDeviceProfile = function (maxHeight) {
|
||||
|
@ -31,7 +31,7 @@ pageIdOn('pageshow', 'myPreferencesMenuPage', function () {
|
||||
|
||||
page.querySelector('.headerUser').innerHTML = user.Name;
|
||||
|
||||
if (!(AppInfo.isNativeApp && browserInfo.safari) && user.Policy.IsAdministrator) {
|
||||
if (user.Policy.IsAdministrator) {
|
||||
page.querySelector('.adminSection').classList.remove('hide');
|
||||
} else {
|
||||
page.querySelector('.adminSection').classList.add('hide');
|
||||
|
@ -12,13 +12,6 @@
|
||||
|
||||
})();
|
||||
|
||||
// Compatibility
|
||||
window.Logger = {
|
||||
log: function (msg) {
|
||||
console.log(msg);
|
||||
}
|
||||
};
|
||||
|
||||
var Dashboard = {
|
||||
|
||||
isConnectMode: function () {
|
||||
@ -1280,7 +1273,6 @@ var AppInfo = {};
|
||||
AppInfo.enableDetailPageChapters = true;
|
||||
AppInfo.enableDetailsMenuImages = true;
|
||||
AppInfo.enableMovieHomeSuggestions = true;
|
||||
AppInfo.enableNavDrawer = true;
|
||||
AppInfo.enableSearchInTopMenu = true;
|
||||
AppInfo.enableHomeFavorites = true;
|
||||
AppInfo.enableNowPlayingBar = true;
|
||||
@ -1301,7 +1293,6 @@ var AppInfo = {};
|
||||
|
||||
if (isCordova) {
|
||||
//AppInfo.enableSectionTransitions = true;
|
||||
AppInfo.enableNavDrawer = false;
|
||||
AppInfo.enableSearchInTopMenu = false;
|
||||
AppInfo.enableHomeFavorites = false;
|
||||
AppInfo.enableHomeTabs = false;
|
||||
@ -2001,6 +1992,7 @@ var AppInfo = {};
|
||||
}
|
||||
|
||||
if (Dashboard.isRunningInCordova() && browserInfo.android) {
|
||||
|
||||
if (MainActivity.getChromeVersion() >= 48) {
|
||||
define("audiorenderer", ["scripts/htmlmediarenderer"]);
|
||||
//define("audiorenderer", ["cordova/android/vlcplayer"]);
|
||||
@ -2011,7 +2003,7 @@ var AppInfo = {};
|
||||
define("videorenderer", ["cordova/android/vlcplayer"]);
|
||||
}
|
||||
else if (Dashboard.isRunningInCordova() && browserInfo.safari) {
|
||||
define("audiorenderer", ["cordova/ios/vlcplayer"]);
|
||||
define("audiorenderer", ["cordova/audioplayer"]);
|
||||
define("videorenderer", ["scripts/htmlmediarenderer"]);
|
||||
}
|
||||
else {
|
||||
@ -2982,8 +2974,8 @@ var AppInfo = {};
|
||||
if (browserInfo.safari) {
|
||||
|
||||
postInitDependencies.push('cordova/ios/chromecast');
|
||||
|
||||
postInitDependencies.push('cordova/ios/orientation');
|
||||
postInitDependencies.push('cordova/ios/remotecontrols');
|
||||
|
||||
if (Dashboard.capabilities().SupportsSync) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user