Merge branch 'master' into develop

This commit is contained in:
James Barnsley
2021-02-21 08:24:14 +13:00
12 changed files with 16 additions and 17 deletions

1
.github/FUNDING.yml vendored
View File

@ -1,2 +1 @@
github: jaedb
custom: ["https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=james%40barnsley%2enz&lc=NZ&item_name=James%20Barnsley&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted"]

View File

@ -1 +1 @@
3.56.0
3.56.1

View File

@ -1,6 +1,6 @@
<img src="https://raw.githubusercontent.com/jaedb/Iris/master/src/assets/logo.png" width="128" />
Iris is an extension for the Mopidy music server. With support for Spotify, LastFM, Snapcast, Icecast and many other extensions, Iris brings all your music into one user-friendly and unified web-based interface that works beautifully, no matter your device.
Iris is an extension for the Mopidy music server. With support for Spotify, LastFM, Genius, Snapcast and many other extensions, Iris brings all your music into one user-friendly and unified web-based interface that works beautifully, no matter your device.
Built and maintained by James Barnsley.
@ -17,12 +17,12 @@ Features
* Browse and manage your playlists and tracks
* Discover new, popular and related music (powered by Spotify)
* Multiple language support. [Want to provide a translation?](https://github.com/jaedb/Iris/wiki/Contributing#translations)
* Streaming controls with the ability to play audio from your browser (requires Snapcast)
* Integration with:
* [Spotify](https://developer.spotify.com/web-api/)
* [LastFM](https://www.last.fm/api)
* [Genius](https://docs.genius.com/)
* [Snapcast](https://github.com/badaix/snapcast/)
* [Icecast](http://icecast.org/)
* [LastFM](https://www.last.fm/api) for rich music metadata and artwork
* [Genius](https://docs.genius.com/) for lyrics
* [Snapcast](https://github.com/badaix/snapcast/) to stream audio to multiple devices
![Overview](https://raw.githubusercontent.com/jaedb/Iris/master/screenshot.jpg)

View File

@ -3,7 +3,7 @@ import pathlib
from mopidy import config, ext
__version__ = "3.56.0"
__version__ = "3.56.1"
logger = logging.getLogger(__name__)

View File

@ -154164,7 +154164,7 @@ var MopidyMiddleware = function () {
tracks: function tracks(response) {
var _response$0$tracks = response[0].tracks,
tracks = _response$0$tracks === void 0 ? [] : _response$0$tracks;
return tracks;
return Object(_util_format__WEBPACK_IMPORTED_MODULE_6__["formatTracks"])(tracks);
}
};
request(store, method, data).then(function (response) {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -106,8 +106,8 @@
// Release details
// These are automatically injected to built HTML
var build = "1613815638";
var version = "3.56.0";
var build = "1613848967";
var version = "3.56.1";
// Construct the script tag
var js = document.createElement("script");

View File

@ -1,5 +1,5 @@
{
"manifest_version": "3.56.0",
"manifest_version": "3.56.1",
"short_name": "Iris",
"name": "Iris",
"icons": [

View File

@ -1,6 +1,6 @@
{
"name": "mopidy-iris",
"version": "3.56.0",
"version": "3.56.1",
"description": "Mopidy HTTP interface",
"repository": "https://github.com/jaedb/iris",
"author": "James Barnsley <james@barnsley.nz>",

View File

@ -1,6 +1,6 @@
[metadata]
name = Mopidy-Iris
version = 3.56.0
version = 3.56.1
url = https://github.com/jaedb/iris
author = James Barnsley
author_email = james@barnsley.nz

View File

@ -366,7 +366,7 @@ const MopidyMiddleware = (function () {
},
tracks: (response) => {
const { tracks = [] } = response[0];
return tracks;
return formatTracks(tracks);
},
};