Skip to content

Commit

Permalink
dependencies and export default now queue
Browse files Browse the repository at this point in the history
  • Loading branch information
hklages committed Jan 31, 2021
1 parent 4aedde3 commit ea0c855
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 35 deletions.
18 changes: 0 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ Add your playlist, album, station from Spotify, Napster, Amazon, ... to "My Sono

Read the Quickstart and explore the full scope in the [Wiki.](https://github.com/hklages/node-red-contrib-sonos-plus/wiki)

### ACTION REQUIRED TO MIGRATE TO VERSION 4

> See required action here: [issue 67](https://github.com/hklages/node-red-contrib-sonos-plus/issues/67)
### SUPPORT

Either open a github issue (preferred method) or send an email to [email protected]
Expand All @@ -30,20 +26,6 @@ Either open a github issue (preferred method) or send an email to nrcsplus@gmail

- My Sonos node: !!! library.get.playlists: msg.size is now msg.requestedCount

- Universal node: !!! group.get.sleeptimer returns now "none" if not set

- Universal node: !!! group.get.state, group.get.members, household.get.groups: members have different data: url instead of hostname, port, ...

- Universal node: !!! group.get.state does not anymore provide groupName

- !!! artUri now instead of AlbumArtUri, added serviceName to group.get.trackplus and some others.

- In Universal node: household.create.group - use a comma separated list with coordinator at first position to create a group

- In Universal node: new command group.get.members

- In Universal node: new command player.play.tv

### Installation

Install directly from your Node-RED's setting palette.
Expand Down
30 changes: 15 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@
"xml2js": "^0.4.23"
},
"devDependencies": {
"eslint": "^7.17.0"
"eslint": "^7.19.0"
}
}
3 changes: 2 additions & 1 deletion src/Sonos-Commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,8 @@ module.exports = {
} else if (module.exports.UPNP_CLASSES_QUEUE.includes(item.upnpClass)) {
item.processingType = 'queue'
} else {
item.processingType = 'unsupported'
// default as it works in most case
item.processingType = 'queue'
}

return item
Expand Down

0 comments on commit ea0c855

Please sign in to comment.