diff --git a/README.md b/README.md index 99347cf..2296f13 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,13 @@ # ioBroker.hue-extended Connect your Philips Hue Lights with ioBroker. -[![Paypal Donation](https://img.shields.io/badge/paypal-donate%20|%20spenden-blue.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=S45U45EHXGQHN&source=url) +[![Paypal Donation](https://img.shields.io/badge/paypal-donate%20|%20spenden-blue.svg)](https://paypal.me/chvoelkel) ![Number of Installations](http://iobroker.live/badges/hue-extended-installed.svg) ![Stable Version](http://iobroker.live/badges/hue-extended-stable.svg) [![NPM Version](http://img.shields.io/npm/v/iobroker.hue-extended.svg)](https://www.npmjs.com/package/iobroker.hue-extended) [![Commits since last release](https://img.shields.io/github/commits-since/Zefau/ioBroker.hue-extended/latest.svg)](https://github.com/Zefau/ioBroker.hue-extended/releases/latest) -[![Travis CI](https://travis-ci.org/Zefau/ioBroker.hue-extended.svg?branch=master)](https://travis-ci.org/Zefau/ioBroker.hue-extended) +[![Travis CI](https://travis-ci.com/Zefau/ioBroker.hue-extended.svg?branch=master)](https://travis-ci.com/Zefau/ioBroker.hue-extended) [![Downloads](https://img.shields.io/npm/dm/iobroker.hue-extended.svg)](https://www.npmjs.com/package/iobroker.hue-extended) [![NPM](https://nodei.co/npm/iobroker.hue-extended.png?downloads=true)](https://nodei.co/npm/iobroker.hue-extended/) @@ -34,6 +34,13 @@ Connect your Philips Hue Lights with ioBroker. Please also see [release page](https://github.com/Zefau/ioBroker.hue-extended/releases) for changelog and detailed information. +### 1.2.3 (2019-02-21) +- (Zefau) added `Signify` (formerly Philips Lighting) as official manufacturer +- (Zefau) updated dependencies + +### 1.2.2 (2019-02-04) +- (Zefau) fixed wrong group state (see [#19](https://github.com/Zefau/ioBroker.hue-extended/issues/19)) + ### 1.2.1 (2019-02-03) - (Zefau) fixed failing secure connection when selecting default certificates diff --git a/admin/index_m.html b/admin/index_m.html index dd24b92..ae97599 100644 --- a/admin/index_m.html +++ b/admin/index_m.html @@ -141,7 +141,7 @@ @@ -158,15 +158,14 @@
-

donateInformation

- -
- - - - -
- +
+ +
+
+ @Zefau (Profil) | Übersicht meiner Adapter +

donateInformation

+ PayPal +
diff --git a/admin/zefau.jpg b/admin/zefau.jpg new file mode 100644 index 0000000..c8ce038 Binary files /dev/null and b/admin/zefau.jpg differ diff --git a/hue-extended.js b/hue-extended.js index 25b8fc7..0de2c01 100644 --- a/hue-extended.js +++ b/hue-extended.js @@ -441,7 +441,7 @@ function startAdapter(options) if (adapter.config.hueToXY && (commands.hue !== undefined || commands.ct !== undefined)) adapter.log.debug('Converting ' + JSON.stringify(commands) + ' to xy: ' + JSON.stringify(lights) + ' - ' + JSON.stringify(manufacturers) + ' - ' + JSON.stringify(xySupported)); - if (((commands.hue !== undefined && adapter.config.hueToXY) || (commands.ct !== undefined && adapter.config.ctToXY)) && manufacturers.filter(manufacturer => manufacturer != 'Philips').length > 0 && xySupported.indexOf(null) == -1) + if (((commands.hue !== undefined && adapter.config.hueToXY) || (commands.ct !== undefined && adapter.config.ctToXY)) && manufacturers.filter(manufacturer => manufacturer.indexOf('Philips') === -1 && manufacturer.indexOf('Signify') === -1).length > 0 && xySupported.indexOf(null) == -1) { if (!rgb) { diff --git a/io-package.json b/io-package.json index 9853c5f..89a2f0e 100644 --- a/io-package.json +++ b/io-package.json @@ -1,7 +1,7 @@ { "common": { "name": "hue-extended", - "version": "1.2.2", + "version": "1.2.3", "title": "Philips Hue Extended", "desc": { "en": "Integration of all your Philips Hue Devices with your ioBroker", diff --git a/iob_npm.done b/iob_npm.done new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/iob_npm.done @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 9557918..69a6a9c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "iobroker.hue-extended", - "version": "1.2.2", + "version": "1.2.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index fb2ee15..18036be 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "dependencies": { "@iobroker/adapter-core": "^2.2.1", "color-convert": "^2.0.1", - "request": "^2.88.0", + "request": "^2.88.2", "request-promise": "^4.2.5" }, "deprecated": false, @@ -76,5 +76,5 @@ "test:unit": "mocha test/unit --exit", "translate": "gulp translateAndUpdateWordsJS" }, - "version": "1.2.2" + "version": "1.2.3" }