Skip to content

Commit

Permalink
v0.2.2
Browse files Browse the repository at this point in the history
Updated dependencies:
- NodeJS v6.10.3
- homebridge v0.4.20
  • Loading branch information
ebaauw committed May 3, 2017
1 parent 6700cc7 commit cea20f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ When grouping zones from the Sonos app, homebridge-zp sets the *Speakers* `On` c
### Installation
The homebridge-zp plugin obviously needs homebridge, which, in turn needs Node.js. I've followed these steps to set it up on my macOS server:

- Install the Node.js JavaScript runtime `node`, from its [website](https://nodejs.org). I'm using v6.10.2 LTS for macOS (x64), which includes the `npm` package manager.
- Install the Node.js JavaScript runtime `node`, from its [website](https://nodejs.org). I'm using v6.10.3 LTS for macOS (x64), which includes the `npm` package manager.
- Make sure `/usr/local/bin` is in your `$PATH`, as `node`, `npm`, and, later, `homebridge` install there.
- You might want to update `npm` through `sudo npm update -g npm@latest`. For me, this installs version 4.5.0.
- Install homebridge following the instructions on [GitHub](https://github.com/nfarina/homebridge#installation). For me, this installs homebridge version 0.4.19 to `/usr/local/lib/node_modules`. Make sure to create a `config.json` in `~/.homebridge`, as described.
- Install homebridge following the instructions on [GitHub](https://github.com/nfarina/homebridge#installation). For me, this installs homebridge version 0.4.20 to `/usr/local/lib/node_modules`. Make sure to create a `config.json` in `~/.homebridge`, as described.
- Install the homebridge-zp plugin through `sudo npm install -g homebridge-zp@latest`.
- Edit `~/.homebridge/config.json` and add the `ZP` platform provided by homebridge-zp, see below.

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "homebridge-zp",
"description": "Homebridge plugin for Sonos ZonePlayer",
"version": "0.2.1",
"version": "0.2.2",
"author": "Erik Baauw",
"license": "ISC",
"keywords": [
Expand All @@ -14,13 +14,13 @@
],
"main": "index.js",
"engines": {
"homebridge": "^0.4.19",
"node": "^6.10.2"
"homebridge": "^0.4.20",
"node": "^6.10.3"
},
"dependencies": {
"sonos": "^0.14.0",
"sonos": "^0.14.1",
"request": "^2.81.0",
"xml2js": "^0.4.15"
"xml2js": "^0.4.17"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down

0 comments on commit cea20f0

Please sign in to comment.