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

3.0.5666.5

This commit is contained in:
Luke Pulverenti 2015-07-10 22:23:28 -04:00
parent 4b951f485f
commit 3e5c071ec0
16 changed files with 68 additions and 33 deletions

View file

@ -1,6 +1,6 @@
{
"name": "neon-animation",
"version": "1.0.5",
"version": "1.0.6",
"authors": [
"The Polymer Authors"
],
@ -34,7 +34,7 @@
"iron-resizable-behavior": "PolymerElements/iron-resizable-behavior#^1.0.0",
"iron-selector": "PolymerElements/iron-selector#^1.0.0",
"paper-styles": "PolymerElements/paper-styles#^1.0.0",
"web-animations-js": "web-animations/web-animations-js#2.1.0"
"web-animations-js": "web-animations/web-animations-js#2.1.2"
},
"devDependencies": {
"iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0",
@ -48,11 +48,11 @@
"iron-icons": "PolymerElements/iron-icons#^1.0.0",
"paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0"
},
"_release": "1.0.5",
"_release": "1.0.6",
"_resolution": {
"type": "version",
"tag": "v1.0.5",
"commit": "d5305b9acc9924c5dd4fcb0098c21840d6ec5b7e"
"tag": "v1.0.6",
"commit": "ec51bf68f05c40373536cc726ca674e4549b7db2"
},
"_source": "git://github.com/PolymerElements/neon-animation.git",
"_target": "^1.0.0",

View file

@ -34,7 +34,7 @@
"iron-resizable-behavior": "PolymerElements/iron-resizable-behavior#^1.0.0",
"iron-selector": "PolymerElements/iron-selector#^1.0.0",
"paper-styles": "PolymerElements/paper-styles#^1.0.0",
"web-animations-js": "web-animations/web-animations-js#2.1.0"
"web-animations-js": "web-animations/web-animations-js#2.1.2"
},
"devDependencies": {
"iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0",

View file

@ -95,8 +95,8 @@ animations to be run when switching to or switching out of the page.
_selectedChanged: function(selected) {
var selectedPage = this.selectedItem;
var oldPage = this._prevSelected || false;
this._prevSelected = selectedPage;
var oldPage = this._valueToItem(this._prevSelected) || false;
this._prevSelected = selected;
// on initial load and if animateInitialSelection is negated, simply display selectedPage.
if (!oldPage && !this.animateInitialSelection) {

View file

@ -34,7 +34,7 @@
"tag": "v1.0.7",
"commit": "c65f5ce6b898bb756fca35cedaa53c3e8011abeb"
},
"_source": "git://github.com/polymerelements/paper-styles.git",
"_source": "git://github.com/PolymerElements/paper-styles.git",
"_target": "^1.0.0",
"_originalSource": "polymerelements/paper-styles"
"_originalSource": "PolymerElements/paper-styles"
}

View file

@ -28,14 +28,14 @@
"web-animations-next-lite.dev.html",
"web-animations-next-lite.dev.js"
],
"version": "2.1.0",
"_release": "2.1.0",
"version": "2.1.2",
"_release": "2.1.2",
"_resolution": {
"type": "version",
"tag": "2.1.0",
"commit": "7215de49976c233fb7abe2c19ee31a1009acc655"
"tag": "2.1.2",
"commit": "28e527353b67a9d74f6f7cdffe6ccefa3c54e94b"
},
"_source": "git://github.com/web-animations/web-animations-js.git",
"_target": "2.1.0",
"_target": "2.1.2",
"_originalSource": "web-animations/web-animations-js"
}

View file

@ -1,3 +1,31 @@
### 2.1.2 - *July 8 2015*
* Fix a bug where onfinish was being called for GroupEffects before they were finished.
### 2.1.1 - *July 1 2015*
* Add Animation.timeline getter
* Add AnimationEffect.parent getter
* Make AnimationEffectTiming (returned by AnimationEffect.timing) attributes mutable
* Expose the Animation constructor
* Change custom effects from AnimationEffects to onsample functions. Custom effects should now be created by setting the onsample attribute of a KeyframeEffect.
For example, this is deprecated:
var myEffect = new KeyframeEffect(
element,
function(timeFraction, target, effect) {
target.style.opacity = timeFraction;
},
1000);
var myAnimation = document.timeline.play(myEffect);
and this should be used insead:
var myEffect = new KeyframeEffect(element, [], 1000);
effect.onsample = function(timeFraction, effect, animation) {
effect.target.style.opacity = timeFraction;
};
var myAnimation = document.timeline.play(myEffect);
### 2.1.0 - *June 15 2015*
* Fix bug affecting GroupEffects with infinite iteration children
* Add GroupEffect.firstChild and GroupEffect.lastChild

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

View file

@ -101,7 +101,7 @@
}
else {
cacheDuration = 180000;
cacheDuration = 60000;
}
if ((now - last) < cacheDuration) {

View file

@ -760,10 +760,6 @@
initHeadRoom(this);
});
}
if (!AppInfo.isNativeApp) {
darkDrawer = true;
}
}
else if (page.classList.contains('type-interior')) {
@ -778,6 +774,10 @@
document.body.classList.add('hideMainDrawer');
}
if (!AppInfo.isNativeApp) {
darkDrawer = true;
}
if (darkDrawer) {
document.querySelector('.mainDrawerPanel #drawer').classList.add('darkDrawer');
} else {

View file

@ -415,6 +415,13 @@
Format: 'vtt',
Method: 'External'
});
if (isVlc) {
profile.SubtitleProfiles.push({
Format: 'vtt',
Method: 'External'
});
}
}
profile.ResponseProfiles = [];

File diff suppressed because one or more lines are too long