diff --git a/README.md b/README.md index a0f5e55..d6de477 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/package.json b/package.json index 5c9007d..9126ce1 100644 --- a/package.json +++ b/package.json @@ -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": [ @@ -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"