Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Commit

Permalink
v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Zefau committed Feb 21, 2020
1 parent 19caa8c commit add89ef
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 17 deletions.
11 changes: 9 additions & 2 deletions README.md
Expand Up @@ -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/)
Expand All @@ -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

Expand Down
19 changes: 9 additions & 10 deletions admin/index_m.html
Expand Up @@ -141,7 +141,7 @@
<ul class="tabs">
<li class="tab col s3"><a class="translate active" href="#donate">tab_donate</a></li>
<li class="tab col s3"><a class="translate" href="#config">tab_config</a></li>
<li class="tab col s3"><a target="_blank" class="translate" href="https://github.com/Zefau/ioBroker.hue-extended#smart-home--alexa-integration-using-iobrokerjavascript">tab_alexa</a></li>
<!-- <li class="tab col s3"><a target="_blank" class="translate" href="https://github.com/Zefau/ioBroker.hue-extended#smart-home--alexa-integration-using-iobrokerjavascript">tab_alexa</a></li> -->
<li class="tab col s3"><a target="_blank" class="translate" href="https://github.com/Zefau/ioBroker.hue-extended#iobrokerhue-extended">tab_info</a></li>
</ul>
</div>
Expand All @@ -158,15 +158,14 @@
</div>
</div>
<div class="row box">
<p class="subtitle translate">donateInformation</p>

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top" style="margin: 10px 0 0 30px">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="DJR9PHP53L8Q2" />
<input type="image" src="https://www.paypalobjects.com/webstatic/de_DE/i/de-pp-logo-200px.png" border="0" name="submit" title="PayPal - The safer, easier way to pay online!" alt="Donate with PayPal button" />
<img alt="" border="0" src="https://www.paypal.com/en_DE/i/scr/pixel.gif" width="1" height="1" />
</form>

<div class="col s2 m2 right-align">
<img src="zefau.jpg" style="border-radius: 50%; border: 5px solid rgba(213, 213, 213, 0.5)" />
</div>
<div class="col s10 m10" style="padding-top: 10px">
<a target="_blank" href="https://forum.iobroker.net/user/zefau">@Zefau (Profil)</a> | <a target="_blank" href="https://zefau.github.io/iobroker/">Übersicht meiner Adapter</a>
<p class="subtitle translate">donateInformation</p>
<a target="_blank" href="https://paypal.me/chvoelkel"><img src="https://www.paypalobjects.com/webstatic/de_DE/i/de-pp-logo-200px.png" alt="PayPal" /></a>
</div>
</div>

</div>
Expand Down
Binary file added admin/zefau.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion hue-extended.js
Expand Up @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
1 change: 1 addition & 0 deletions iob_npm.done
@@ -0,0 +1 @@

2 changes: 1 addition & 1 deletion package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -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,
Expand Down Expand Up @@ -76,5 +76,5 @@
"test:unit": "mocha test/unit --exit",
"translate": "gulp translateAndUpdateWordsJS"
},
"version": "1.2.2"
"version": "1.2.3"
}

0 comments on commit add89ef

Please sign in to comment.