Koen Kanters
676684158a
Fix messages from Xiaomi devices skipped sometimes when send through Xiaomi router. #3592 ( #4170 )
...
* Update receive.js
* Fix messages from Xiaomi devices skipped sometimes when send through Xiaomi router. https://github.com/Koenkk/zigbee2mqtt/issues/3592
2020-08-23 22:05:48 +02:00
github-actions[bot]
1d7b5832ca
Update zigbee-herdsman-converters to 12.0.168 ( #4158 )
...
* Update zigbee-herdsman-converters to 12.0.168
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-22 13:29:09 +02:00
mog422
e6f8cee968
Add TPZRCO2HT-Z3 homeassistant mapping ( #4155 )
...
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-22 12:24:28 +02:00
github-actions[bot]
bffe4db029
Update zigbee-herdsman-converters to 12.0.167 ( #4144 )
...
* Update zigbee-herdsman-converters to 12.0.167
* Update homeassistant.js
* Update publish.test.js
* Update publish.test.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-20 22:03:00 +02:00
Koen Kanters
0b5d169b46
Provide state to fromZigbee converter
2020-08-20 21:54:59 +02:00
Koen Kanters
22f657ed4d
Add device_announce event to new api. https://github.com/Koenkk/zigbee2mqtt/issues/3281
2020-08-20 20:55:40 +02:00
github-actions[bot]
d69c2c947a
Update zigbee-herdsman-converters to 12.0.166 ( #4136 )
...
* Update zigbee-herdsman-converters to 12.0.166
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-19 22:30:51 +02:00
github-actions[bot]
e780dbcb82
Update zigbee-herdsman-converters to 12.0.165 ( #4126 )
...
* Update zigbee-herdsman-converters to 12.0.165
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-18 22:35:48 +02:00
Koen Kanters
a20c6728b8
Also use state converter when value is open, close, stop, lock and unlock. #4123
2020-08-18 21:27:36 +02:00
github-actions[bot]
b7409295b5
Update zigbee-herdsman-converters to 12.0.164 ( #4121 )
...
* Update zigbee-herdsman-converters to 12.0.164
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-17 22:22:18 +02:00
Koen Kanters
0f6540c5fc
Fix typo 9148977b39 (r41534643)
2020-08-17 22:14:10 +02:00
Kris
5411de8618
Add Philips Hue Nyro ( #4120 )
...
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-17 22:08:52 +02:00
Koen Kanters
8c5fae900e
Don't use state converter on invalid JSON and the payload is not on, off or toggle. https://github.com/Koenkk/zigbee2mqtt/issues/1348
2020-08-17 21:29:11 +02:00
Koen Kanters
d167b149ad
Refactor device options retrieval
2020-08-17 20:57:12 +02:00
Koen Kanters
9148977b39
Rename device entity_id in Home Assistant when changing friendly_name. #4096
2020-08-17 20:19:44 +02:00
Koen Kanters
5f75c9c9f8
Clear outdated Home Assistant configs
2020-08-17 17:24:57 +02:00
felix schwenzel
ffe810a471
Update homeassistant.js ( #4113 )
...
add MAXI JOLLY ZB3 LED driver, see https://github.com/Koenkk/zigbee-herdsman-converters/pull/1475 .
2020-08-17 13:57:42 +02:00
Koen Kanters
410f6a0f95
Fix update state sensor object_id.
2020-08-14 13:48:19 +02:00
mgrom
d3a22d49c1
Added presets (hold_modes) to climate sensor #3821 ( #4070 )
...
* Added presets (hold_modes) to climate sensor #3821
and removed thermostatHeatCool as it's partially redundant
* Added new configuration to TuYa thermostat TS0601_thermostat
* eslint fixes
* Added eco and comfort modes. Looks like they are usable.
* Update homeassistant.js
* Update homeassistant.js
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-14 11:43:52 +02:00
Tom
08524953bf
Add Environment Variable Override ( #4085 )
...
* Add Environment Variable Override
I need to be able to manage settings on this service via Environment Variables. I've added the ability to override anything in the settings schema with a corresponding environment variable.
e.g. to override settings.serial.port you can set ZIGBEE2MQTT_SERIAL_PORT=/dev/ttyS0
to override the mqtt username you can set ZIGBEE2MQTT_MQTT_USER=testusername
This new addition will not perform any action on existing installations unless the matching environment variable is set. I have tested this setting string, number, boolean, object and array values.
* Adding test case for environment variables and slight modification to ensure 100% code coverage.
* Adding a test to confirm that env variables will set non default values. Also realized that I was errantly applying the env variables to the defaults for testing. Understanding what this is doing more clearly I realize that should be clean.
* Refactoring to
1. Remove the test variables from the schema and defaults and manually reflect the tests in the test.
2. Rename environment variable base from ZIGBEE2MQTT_ to ZIGBEE2MQTT_CONFIG_
* Small improvements
* Removing the unneeded test.
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-13 23:50:30 +02:00
github-actions[bot]
5de279c20e
Update zigbee-herdsman-converters to 12.0.162 ( #4097 )
...
* Update zigbee-herdsman-converters to 12.0.162
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-13 21:57:36 +02:00
Koen Kanters
9774031169
Sort logged and published JSON objects alphabetically. #4091
2020-08-13 20:00:35 +02:00
blakadder
3acd123ecd
add direction sensor to AD for some dimmers ( #4078 )
2020-08-12 17:22:05 +02:00
github-actions[bot]
4f1a0ae9cd
Update zigbee-herdsman-converters to 12.0.161 ( #4083 )
...
* Update zigbee-herdsman-converters to 12.0.161
* Update homeassistant.js
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-11 21:38:19 +02:00
github-actions[bot]
f9076b362d
Update zigbee-herdsman-converters to 12.0.160 ( #4075 )
...
* Update zigbee-herdsman-converters to 12.0.160
* Update homeassistant.js
* Update publish.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-10 20:44:44 +02:00
Chamondgl
14712d6fe1
Add Home Assistant discovery for ROB_200-010-0 ( #4074 )
...
Robb Smarrt Zigbee Curtain Motor Controller ROB_200-010-0
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-10 20:31:40 +02:00
github-actions[bot]
ff0b812029
Update zigbee-herdsman-converters to 12.0.159 ( #4069 )
...
* Update zigbee-herdsman-converters to 12.0.159
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-09 22:34:13 +02:00
Koen Kanters
afbbf70caa
Fix null published for attribute output. https://github.com/Koenkk/zigbee2mqtt/issues/4054
2020-08-09 11:31:27 +02:00
Koen Kanters
81db31b784
Fix attribute output not publishing all values. https://github.com/Koenkk/zigbee2mqtt/issues/4054
2020-08-08 16:36:58 +02:00
Koen Kanters
ff2fe2b358
Separate Home Assisant name by space instead of _ when friendlyName contains space. #4048
2020-08-08 13:54:39 +02:00
github-actions[bot]
1198a2d9ac
Update zigbee-herdsman-converters to 12.0.157 ( #4051 )
...
* Update zigbee-herdsman-converters to 12.0.157
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-05 23:01:17 +02:00
mateusz-dziurdziak
7b74971006
Add TuYa SNTZ009 water leak sensor ( #4045 )
...
Co-authored-by: Mateusz Dziurdziak <mateusz.dziurdziak@fara.no>
2020-08-05 22:10:29 +02:00
Koen Kanters
3cdf7604a0
Fix no color_temp for group on changing color_xy and vice versa. #4034
2020-08-05 21:54:39 +02:00
Koen Kanters
516d53e9df
Fix reporting being disabled every time IKEA device announces. https://github.com/Koenkk/zigbee2mqtt/issues/3826
2020-08-05 16:38:40 +02:00
github-actions[bot]
6c6dfc85cd
Update zigbee-herdsman-converters to 12.0.156 ( #4043 )
...
* Update zigbee-herdsman-converters to 12.0.156
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-04 20:10:34 +02:00
Koen Kanters
6345cb07bf
Disable reporting on device when reporting is disabled. https://github.com/Koenkk/zigbee2mqtt/issues/3826
2020-08-04 19:11:13 +02:00
Koen Kanters
852bca5a08
Implement update state for new api. https://github.com/Koenkk/zigbee2mqtt/issues/3634 https://github.com/Koenkk/zigbee2mqtt/issues/3281
2020-08-02 23:09:43 +02:00
github-actions[bot]
8aa3cf0c29
Update zigbee-herdsman-converters to 12.0.155 ( #4025 )
...
* Update zigbee-herdsman-converters to 12.0.155
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-08-02 10:51:51 +02:00
Koen Kanters
9a6397fe75
Make Zigbee2MQTT naming consistent
2020-08-01 10:36:20 +02:00
Zhongfu Li
3b29266be3
Fix Home Assistant auto-discovery for QBKG22LM, QBKG25LM ( #3977 )
...
* Update configuration for QBKG22LM, QBKG25LM
* Update homeassistant.js
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-31 17:59:24 +02:00
github-actions[bot]
0fddfc9ffa
Update zigbee-herdsman-converters to 12.0.154 ( #4018 )
...
* Update zigbee-herdsman-converters to 12.0.154
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-30 23:19:05 +02:00
lionel590
ded3a58883
Network parameters / config displayed in zigbee2mqtt/bridge/config ( #4010 )
...
* Update zigbee.js
* added network parameters to zigbee2mqtt/bridge/config
* added network parameters to zigbee2mqtt/bridge/config
* added test for network config in zigbee2mqtt/bridge/config
* Fix network data
* Added test data for network parameters
* Update zigbee.js
* Update zigbee.js
* Update bridge.test.js
* Update bridge.test.js
* Update utils.js
* Update bridge.js
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-30 22:31:52 +02:00
Sebastian Karasek
a5b03b5dad
Add home-assistant mapping for NLG Q-FRAMELESS ( #4012 )
2020-07-30 22:19:01 +02:00
Matthew Garrett
469ddb7e76
Add support for Orvibo AM25 blinds ( #4011 )
2020-07-30 22:14:51 +02:00
Artyom Dudarev
64022897f8
Add support for Lonsonho X713A 3 gang switch ( #4015 )
2020-07-30 22:12:39 +02:00
Koen Kanters
274109bc85
Allow to disable Home Assistant via MQTT. #3281 ( #4007 )
...
* Initial
* Updates
2020-07-29 23:10:03 +02:00
Koen Kanters
b9c52ef96e
Fix exception in Home Assistant extension when click or action is null/undefined. #4005
2020-07-29 22:08:00 +02:00
github-actions[bot]
9474dfe249
Update zigbee-herdsman-converters to 12.0.153 ( #4006 )
...
* Update zigbee-herdsman-converters to 12.0.153
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-29 17:23:23 +02:00
Koen Kanters
a7f990ef95
New api: log to MQTT. https://github.com/Koenkk/zigbee2mqtt/issues/3281
2020-07-28 22:12:22 +02:00
github-actions[bot]
ae93e6fd0f
Update zigbee-herdsman-converters to 12.0.152 ( #4004 )
...
* Update zigbee-herdsman-converters to 12.0.152
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-28 22:06:30 +02:00
Koen Kanters
946ebe16b6
Allow to specify which clusters are being bound/unbound. https://github.com/Koenkk/zigbee2mqtt/issues/3281
2020-07-28 21:05:02 +02:00
Koen Kanters
44b26f9b22
Parse attribute payload to JSON if possible. https://github.com/Koenkk/zigbee-herdsman-converters/pull/1427
2020-07-27 23:04:59 +02:00
Diego Rodríguez
7c6fe4d95e
Add voltage to ZNCZ02LM ( #3991 )
2020-07-27 22:33:15 +02:00
Hamish Moffatt
f5e5c76ca9
output plain text to syslog ( #3985 )
...
* output plain text to syslog (#3984 )
* fix lint warnings
Co-authored-by: Hamish Moffatt <hamish@moffatt.id.au>
2020-07-27 22:22:02 +02:00
Koen Kanters
b9ba635bea
Fix crash when attribute value is undefined of null (publish empty payload in this case). #3980
2020-07-27 22:07:03 +02:00
iharyadi
88521b25d3
Add HA model mapping ( #3974 )
...
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-26 14:28:17 +02:00
Koen Kanters
7d27e6db69
Changes for zigbee-herdsman-converters 12.0.150
2020-07-26 14:19:33 +02:00
Koen Kanters
812c4927e7
Handle group setup failure. https://github.com/Koenkk/zigbee2mqtt/issues/3966
2020-07-26 10:11:58 +02:00
Koen Kanters
00f836fce6
Don't discover sensor_click when legacy: false is set. https://github.com/Koenkk/zigbee-herdsman-converters/issues/1393
2020-07-24 22:53:10 +02:00
github-actions[bot]
992ebafc63
Update zigbee-herdsman-converters to 12.0.149 ( #3963 )
...
* Update zigbee-herdsman-converters to 12.0.149
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-23 21:06:13 +02:00
senax
f0068d73cb
Added 1746330P7/Philips Hue Appear ( #3962 )
2020-07-23 20:31:19 +02:00
Koen Kanters
867918bd63
Fix incorrect device type. https://github.com/Koenkk/zigbee2mqtt/issues/3953
2020-07-23 19:55:56 +02:00
Koen Kanters
ad13564687
Improve error messages when configuration is invalid. #3943
2020-07-23 19:17:26 +02:00
Koen Kanters
28d48f3d96
Skip message when definition is undefined and still interviewing instead of modelID. https://github.com/Koenkk/zigbee2mqtt/issues/3947
2020-07-22 14:00:27 +02:00
github-actions[bot]
93cae0b09a
Update zigbee-herdsman-converters to 12.0.147
...
* Update zigbee-herdsman-converters to 12.0.147
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-22 13:57:11 +02:00
Koen Kanters
6d9affaa49
Revert "Fix device incorrectly identified when still interviewing. #3947 "
...
This reverts commit 1d3a577fc4
.
2020-07-22 13:44:56 +02:00
Koen Kanters
e06e54321c
Revert "Fix device incorrectly identified when still interviewing (attempt 2) #3947 "
...
This reverts commit 2e0b23f97c
.
2020-07-22 13:44:47 +02:00
Koen Kanters
db748a1333
Implement new api healthcheck. #3281
2020-07-21 21:16:52 +02:00
Koen Kanters
2e0b23f97c
Fix device incorrectly identified when still interviewing (attempt 2) #3947
2020-07-21 20:47:05 +02:00
Koen Kanters
1d3a577fc4
Fix device incorrectly identified when still interviewing. #3947
2020-07-21 20:26:07 +02:00
github-actions[bot]
ad0bbbec97
Update zigbee-herdsman-converters to 12.0.146
...
* Update zigbee-herdsman-converters to 12.0.146
* Update publish.test.js
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-20 18:58:17 +02:00
Deadlystrike
edcf1edae6
Add support for Embrighten Outlet 43102 ( #3939 )
2020-07-20 18:05:42 +02:00
Koen Kanters
1f39ff6f57
Fix transition from device_options not applied. #3922
2020-07-19 00:04:39 +02:00
Koen Kanters
0e0a364da7
Validate experimental.output settings. #3928
2020-07-18 23:40:23 +02:00
Koen Kanters
a845d35b8e
Update Birth & Will Topic for Home Assistant #3918
2020-07-16 23:16:59 +02:00
Artyom Dudarev
1223a06871
Add support for Lonsonho switches ( #3901 )
...
* Add support for Lonsonho switches
* Use cfg.switch for 1 gang switch
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-16 22:40:40 +02:00
Hannes Giesenow
ec688cfa04
Add support for Osram Smart Switch 4x ( #3242 )
...
* Add support for Osram Smart Switch 4x
See https://github.com/Koenkk/zigbee-herdsman-converters/pull/1112 for
the converter
* Update homeassistant.js
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-16 22:35:16 +02:00
Mark Snelling
64e9d65b07
Added AOne 250w Smart Dimmer Module ( #3915 )
...
* Create update_zhc.yml
* Update update_zhc.yml
* Update update_zhc.yml
* Added AOne 250w Smart Dimmer Module
* Delete update_zhc.yml
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-16 21:10:05 +02:00
github-actions[bot]
f86be3308e
Update zigbee-herdsman-converters ( #3914 )
...
* Update zigbee-herdsman-converters to 12.0.139
* Update homeassistant.js
* Update homeassistant.js
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-16 21:04:47 +02:00
Koen Kanters
67f02adbd0
Prefer blocklist/passlist over blacklist/whitelist
2020-07-15 23:22:32 +02:00
Koen Kanters
ee9aedd0f3
Discover Home Assistant energy sensor for NET2GRID N2G-SP. #3909
2020-07-15 23:17:54 +02:00
Koen Kanters
ff1a64b192
Change ID -> id for new api. https://github.com/Koenkk/zigbee2mqtt/issues/3281
2020-07-15 22:16:18 +02:00
Koen Kanters
c900213218
Update converters
2020-07-14 22:04:33 +02:00
Koen Kanters
8415adc514
Make new api snake case. https://github.com/Koenkk/zigbee2mqtt/issues/3281
2020-07-13 23:00:33 +02:00
Koen Kanters
57a2d435a9
Republish groups on change. https://github.com/Koenkk/zigbee2mqtt/issues/3281
2020-07-13 21:45:44 +02:00
Koen Kanters
ff8f16fedb
Group MQTT api. https://github.com/Koenkk/zigbee2mqtt/issues/3281
2020-07-12 23:50:15 +02:00
Koen Kanters
d81f5575ff
Bind for new api. https://github.com/Koenkk/zigbee2mqtt/issues/3281
2020-07-12 21:56:11 +02:00
Koen Kanters
d3b7fe222f
Update herdsman and converters.
2020-07-12 17:14:56 +02:00
Koen Kanters
e7a799d8cc
Update converters
2020-07-12 15:42:33 +02:00
Jeremy Rea
b76b244af7
Add Home Assistant support for Sinopé water leak detector ( #3892 )
2020-07-12 15:18:53 +02:00
TheMClaeys
eac948498a
Update homeassistant.js ( #3889 )
...
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-12 14:52:30 +02:00
Koen Kanters
11a4759a9a
Update converters
2020-07-10 22:09:28 +02:00
Koen Kanters
b1a4926a30
Add cache_state_persistent and cache_state_send_on_startup options. #3496
2020-07-10 22:09:16 +02:00
Ryan Kim(True-World)
051d088172
Add PM-B540, TS0115 ( #3886 )
...
Support Dawon PM-B540,
UseeLink TS0115(https://ko.aliexpress.com/item/4000108371113.html?spm=a2g0o.productlist.0.0.55f169eaiSgWdl&algo_pvid=a2d855e8-89cc-42ea-ab68-8b04c981c537&algo_expid=a2d855e8-89cc-42ea-ab68-8b04c981c537-1&btsid=0ab6f82c15943852972118657e0a09&ws_ab_test=searchweb0_0,searchweb201602_,searchweb201603_ )
TS0115 Model is multi type(EU, US, UK, Universal, Etc.) and 2 type Amp(10A, 16A)
2020-07-10 21:32:54 +02:00
Koen Kanters
b4a6c6f0ba
Update herdsman and converters
2020-07-09 22:00:17 +02:00
ptvo
4fbfec3fdb
ptvo.switch - updated HA integration settings. ( #3880 )
...
* ptvo.switch - updated HA integration settings.
* Update homeassistant.js
Co-authored-by: ptvoinfo <xagga@ya.ru>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-09 21:10:10 +02:00
krencl
c72ccf1bd7
added LED controller YSRSAI ZB-CL01 support for hass.io ( #3876 )
...
* added LED controller YSRSAI ZB-CL01 support for hass.io
* Update homeassistant.js
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
2020-07-09 20:55:54 +02:00
Koen Kanters
0a84412d75
Implement OTA commands for new api. https://github.com/Koenkk/zigbee2mqtt/issues/3281
2020-07-08 23:23:44 +02:00
Koen Kanters
f1c785eedd
Implement new api configure. https://github.com/Koenkk/zigbee2mqtt/issues/3281
2020-07-08 21:46:00 +02:00
Koen Kanters
ffa47b79e3
Remove devices from group when removing group. #3861
2020-07-07 21:16:35 +02:00