Buildout 3.55.3
This commit is contained in:
@ -1 +1 @@
|
|||||||
3.55.2
|
3.55.3
|
||||||
@ -39,8 +39,8 @@
|
|||||||
|
|
||||||
// Release details
|
// Release details
|
||||||
// These are automatically injected to built HTML
|
// These are automatically injected to built HTML
|
||||||
var build = "1511724955";
|
var build = "XXX";
|
||||||
var version = "3.8.5";
|
var version = "0.0.0";
|
||||||
|
|
||||||
// Load query param settings
|
// Load query param settings
|
||||||
var urlParams = new URLSearchParams(window.location.search);
|
var urlParams = new URLSearchParams(window.location.search);
|
||||||
|
|||||||
@ -3,7 +3,7 @@ import pathlib
|
|||||||
|
|
||||||
from mopidy import config, ext
|
from mopidy import config, ext
|
||||||
|
|
||||||
__version__ = "3.55.2"
|
__version__ = "3.55.3"
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|||||||
@ -107191,15 +107191,15 @@ var MediaSession = /*#__PURE__*/function (_React$Component) {
|
|||||||
artist: artists.length ? artists[0].name : '-',
|
artist: artists.length ? artists[0].name : '-',
|
||||||
album: album.name || '-',
|
album: album.name || '-',
|
||||||
artwork: [].concat(_toConsumableArray(images.small ? [{
|
artwork: [].concat(_toConsumableArray(images.small ? [{
|
||||||
src: images ? images.small : '',
|
src: images.small,
|
||||||
sizes: '96x96',
|
sizes: '96x96',
|
||||||
type: 'image/png'
|
type: 'image/png'
|
||||||
}] : []), _toConsumableArray(images.medium ? [{
|
}] : []), _toConsumableArray(images.medium ? [{
|
||||||
src: images ? images.medium : '',
|
src: images.medium,
|
||||||
sizes: '256x256',
|
sizes: '256x256',
|
||||||
type: 'image/png'
|
type: 'image/png'
|
||||||
}] : []), _toConsumableArray(images.huge ? [{
|
}] : []), _toConsumableArray(images.huge ? [{
|
||||||
src: images ? images.huge : '',
|
src: images.huge,
|
||||||
sizes: '512x512',
|
sizes: '512x512',
|
||||||
type: 'image/png'
|
type: 'image/png'
|
||||||
}] : []))
|
}] : []))
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
2
mopidy_iris/static/app.min.js
vendored
2
mopidy_iris/static/app.min.js
vendored
File diff suppressed because one or more lines are too long
@ -106,8 +106,8 @@
|
|||||||
|
|
||||||
// Release details
|
// Release details
|
||||||
// These are automatically injected to built HTML
|
// These are automatically injected to built HTML
|
||||||
var build = "1607636791";
|
var build = "1607766411";
|
||||||
var version = "3.55.2";
|
var version = "3.55.3";
|
||||||
|
|
||||||
// Construct the script tag
|
// Construct the script tag
|
||||||
var js = document.createElement("script");
|
var js = document.createElement("script");
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": "3.55.2",
|
"manifest_version": "3.55.3",
|
||||||
"short_name": "Iris",
|
"short_name": "Iris",
|
||||||
"name": "Iris",
|
"name": "Iris",
|
||||||
"icons": [
|
"icons": [
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mopidy-iris",
|
"name": "mopidy-iris",
|
||||||
"version": "3.55.2",
|
"version": "3.55.3",
|
||||||
"description": "Mopidy HTTP interface",
|
"description": "Mopidy HTTP interface",
|
||||||
"repository": "https://github.com/jaedb/iris",
|
"repository": "https://github.com/jaedb/iris",
|
||||||
"author": "James Barnsley <james@barnsley.nz>",
|
"author": "James Barnsley <james@barnsley.nz>",
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = Mopidy-Iris
|
name = Mopidy-Iris
|
||||||
version = 3.55.2
|
version = 3.55.3
|
||||||
url = https://github.com/jaedb/iris
|
url = https://github.com/jaedb/iris
|
||||||
author = James Barnsley
|
author = James Barnsley
|
||||||
author_email = james@barnsley.nz
|
author_email = james@barnsley.nz
|
||||||
|
|||||||
@ -48,17 +48,17 @@ class MediaSession extends React.Component {
|
|||||||
album: album.name || '-',
|
album: album.name || '-',
|
||||||
artwork: [
|
artwork: [
|
||||||
...(images.small ? [{
|
...(images.small ? [{
|
||||||
src: images ? images.small : '',
|
src: images.small,
|
||||||
sizes: '96x96',
|
sizes: '96x96',
|
||||||
type: 'image/png',
|
type: 'image/png',
|
||||||
}] : []),
|
}] : []),
|
||||||
...(images.medium ? [{
|
...(images.medium ? [{
|
||||||
src: images ? images.medium : '',
|
src: images.medium,
|
||||||
sizes: '256x256',
|
sizes: '256x256',
|
||||||
type: 'image/png',
|
type: 'image/png',
|
||||||
}] : []),
|
}] : []),
|
||||||
...(images.huge ? [{
|
...(images.huge ? [{
|
||||||
src: images ? images.huge : '',
|
src: images.huge,
|
||||||
sizes: '512x512',
|
sizes: '512x512',
|
||||||
type: 'image/png',
|
type: 'image/png',
|
||||||
}] : []),
|
}] : []),
|
||||||
|
|||||||
Reference in New Issue
Block a user