iobroker.zigbee 1.8.24 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -50,12 +50,12 @@ While Conbee/RaspBee Support is no longer considered experimental in the zigbee-
50
50
 
51
51
  ### Silicon Labs SoC
52
52
 
53
- Support for [Silicon Lab Zigbee](https://www.silabs.com/wireless/zigbee) based adapters is experimental. The initial support for EZSP v8 is still not yet considered stable and the project is in need of more developers volenteering to help with this integration. Please refer to the respective documentation on [this page](https://www.zigbee2mqtt.io/guide/adapters/) and [ongoing development discussion](https://github.com/Koenkk/zigbee-herdsman/issues/319) with regards to the state of Silabs EmberZNet Serial Protocol (EZSP) adapter implementation integration into the zigbee-herdsman and zigbee-herdsman-converters libraries which it depends on.
53
+ Support for [Silicon Lab Zigbee](https://www.silabs.com/wireless/zigbee) based adapters is experimental. The initial support for EZSP v8 is still not yet considered stable and the project is in need of more developers volunteering to help with this integration. Please refer to the respective documentation on [this page](https://www.zigbee2mqtt.io/guide/adapters/) and [ongoing development discussion](https://github.com/Koenkk/zigbee-herdsman/issues/319) with regards to the state of Silabs EmberZNet Serial Protocol (EZSP) adapter implementation integration into the zigbee-herdsman and zigbee-herdsman-converters libraries which it depends on.
54
54
 
55
55
 
56
56
  ### ZiGate SoC
57
57
 
58
- Support for [ZiGate](https://zigate.fr) based adapters is experimental. The initial support for ZiGate is still not yet considered stable and the project is in need of more developers volenteering to help with this integration. Please refer to the respective documentation on [this page](https://www.zigbee2mqtt.io/guide/adapters/) and [ongoing development discussion](https://github.com/Koenkk/zigbee-herdsman/issues/242) with regards to the state of ZiGate adapter implementation into the zigbee-herdsman and zigbee-herdsman-converters libraries which it depends on.
58
+ Support for [ZiGate](https://zigate.fr) based adapters is experimental. The initial support for ZiGate is still not yet considered stable and the project is in need of more developers volunteering to help with this integration. Please refer to the respective documentation on [this page](https://www.zigbee2mqtt.io/guide/adapters/) and [ongoing development discussion](https://github.com/Koenkk/zigbee-herdsman/issues/242) with regards to the state of ZiGate adapter implementation into the zigbee-herdsman and zigbee-herdsman-converters libraries which it depends on.
59
59
 
60
60
 
61
61
  ## Work with adapter
@@ -134,8 +134,23 @@ You can thank the authors by these links:
134
134
  -----------------------------------------------------------------------------------------------------
135
135
 
136
136
  ## Changelog
137
+ ### 1.9.0 (2023-12-22)
138
+ * (arteck) up to new zhc
139
+ * (arteck) update dependency
140
+
141
+ ### 1.8.27 (2023-12-22)
142
+ * (arteck) update dependency
143
+
144
+ ### 1.8.26 (2023-12-22)
145
+ * (arteck) corr toZigbee message
146
+ * (arteck) add deviceManager
147
+
148
+ ### 1.8.25 (2023-12-17)
149
+ * zhc 16.x
150
+ * (arteck) corr group from exclude dialog
151
+
137
152
  ### 1.8.24 (2023-09-05)
138
- * (arteck) switch to exposes tab for some Aqara Devices
153
+ * (arteck) switch to exposes tab for some Aqara Devices [more infos](https://github.com/ioBroker/ioBroker.zigbee/wiki/Exposes-for-device-integration)
139
154
 
140
155
  ### 1.8.23 (2023-08-10)
141
156
  * (arteck) query from xiaomi is now better
@@ -162,10 +177,14 @@ You can thank the authors by these links:
162
177
  ### 1.8.16 (2023-07-11)
163
178
  * (arteck) battery corr
164
179
 
165
- ### 1.8.13
180
+ ### 1.8.15 (2023-07-11)
181
+ * (arteck) corr battery status
182
+
183
+ ### 1.8.13 (2023-07-09)
166
184
  * (arteck) ota corr
167
185
  * (arteck) devices are wrong with enum exposes
168
- * (arteck) select field for groups is larger
186
+ * (arteck) select field for groups is larger
187
+ * (kirovilya) tuya.whitelabel corr
169
188
 
170
189
  ### 1.8.12 (2023-06-30)
171
190
  * (arteck) new Documentation (thx Stefan)
@@ -305,7 +324,7 @@ You can thank the authors by these links:
305
324
  * (arteck) Setting to use exposes instead of internal device description
306
325
 
307
326
  ### 1.4.1 (2020-12)
308
- * (o0shojo0o) added a kelvin posibility into colortemp
327
+ * (o0shojo0o) added a kelvin possibility into colortemp
309
328
  * (asgothian) Hue_calibration for exposed devices (Use requires PR on zigbee-herdsman-converters, PR is being worked on)
310
329
  * (asgothian) fix Tuya Thermostat: restore lost property "preset"
311
330
  * (asgothian) Change for Device Availability: Stagger initial ping by 200 ms to prevent network congestion due to a large number of ping requests
package/admin/admin.js CHANGED
@@ -655,9 +655,9 @@ function checkFwUpdate() {
655
655
  const callback = function (msg) {
656
656
  if (msg) {
657
657
  const deviceCard = getDeviceCard(msg.device);
658
- const devId = getDevId(deviceCard.attr('id'));
659
658
  const fwInfoNode = getFwInfoNode(deviceCard);
660
659
  if (msg.status == 'available') {
660
+ const devId = getDevId(deviceCard.attr('id'));
661
661
  fwInfoNode.html(createBtn('system_update', 'Click to start firmware update', false));
662
662
  $(fwInfoNode).find('button[name=\'fw_update\']').click(() => {
663
663
  fwInfoNode.html(createBtn('check_circle', 'Firmware update started, check progress in logs.', true, 'icon-blue'));
@@ -677,7 +677,11 @@ function checkFwUpdate() {
677
677
  };
678
678
  for (let i = 0; i < deviceCards.length; i++) {
679
679
  const deviceCard = $(deviceCards[i]);
680
- const devId = getDevId(deviceCard.attr('id'));
680
+ const devIdAttr = deviceCard.attr('id');
681
+ if (!devIdAttr) {
682
+ continue;
683
+ }
684
+ const devId = getDevId(devIdAttr);
681
685
  getFwInfoNode(deviceCard).html('<span class="left" style="padding-top:8px">checking...</span>');
682
686
  sendTo(namespace, 'checkOtaAvail', {devId: devId}, callback);
683
687
  }
@@ -2591,6 +2595,9 @@ function prepareExcludeDialog(excludeObj) {
2591
2595
  }
2592
2596
  return device.common.type;
2593
2597
  } else {
2598
+ if (device.common.type == 'group') {
2599
+ return null;
2600
+ }
2594
2601
  return device.common.type;
2595
2602
  }
2596
2603
  },
Binary file
@@ -976,7 +976,7 @@
976
976
  <div class="modal-content">
977
977
  <h3 class="translate">Config device</h3>
978
978
  <div class="row">
979
- <div class="co1l">
979
+ <div class="col1">
980
980
  <div class="input-field">
981
981
  <input id="d_name" type="text" class="value validate">
982
982
  <label for="d_name" class="translate">Name</label>
@@ -992,7 +992,7 @@
992
992
  <div class="col1">
993
993
  <div class="input-field groups">
994
994
  <select id="d_groups_ep0" class="materialSelect" multiple>
995
- <option value="1">value</option>
995
+ <option value="1">select</option>
996
996
  </select>
997
997
  <label for="d_groups_ep0" class="translate">Groups</label>
998
998
  </div>
@@ -1007,7 +1007,7 @@
1007
1007
  <div class="col">
1008
1008
  <div class="input-field groups">
1009
1009
  <select id="d_groups_ep1" class="materialSelect" multiple>
1010
- <option value="1">value</option>
1010
+ <option value="1">select</option>
1011
1011
  </select>
1012
1012
  <label for="d_groups_ep1" class="translate">Groups</label>
1013
1013
  </div>
@@ -1022,7 +1022,7 @@
1022
1022
  <div class="col">
1023
1023
  <div class="input-field groups">
1024
1024
  <select id="d_groups_ep2" class="materialSelect" multiple>
1025
- <option value="1">value</option>
1025
+ <option value="1">select</option>
1026
1026
  </select>
1027
1027
  <label for="d_groups_ep2" class="translate">Groups</label>
1028
1028
  </div>
@@ -1037,7 +1037,7 @@
1037
1037
  <div class="col">
1038
1038
  <div class="input-field groups">
1039
1039
  <select id="d_groups_ep3" class="materialSelect" multiple>
1040
- <option value="1">value</option>
1040
+ <option value="1">select</option>
1041
1041
  </select>
1042
1042
  <label for="d_groups_ep3" class="translate">Groups</label>
1043
1043
  </div>
@@ -1076,7 +1076,7 @@
1076
1076
  <div class="input-field members">
1077
1077
  <label for="g_members" class="translate">Members</label>
1078
1078
  <select id="g_members" class="materialSelect" multiple>
1079
- <option value="1">Значение</option>
1079
+ <option value="1">value</option>
1080
1080
  </select>
1081
1081
  </div>
1082
1082
  </div>
package/admin/tab_m.html CHANGED
@@ -672,67 +672,75 @@
672
672
  <div class="materialize-dialogs m">
673
673
  <div id="modaledit" class="modal">
674
674
  <div class="modal-content">
675
- <h3 class="translate">Config device</h3>
676
- <div class="row">
677
- <div class="col">
678
- <div class="input-field">
679
- <input id="d_name" type="text" class="value validate">
680
- <label for="d_name" class="translate">Name</label>
681
- </div>
682
- </div>
683
- </div>
684
- <div class="row epid0">
685
- <div class="col">
686
- <div class=endpointid>
687
- <p class="translate device_with_endpoint">Main Endpoint</p>
688
- </div>
689
- </div>
690
- <div class="col1">
691
- <div class="input-field groups">
692
- <select id="d_groups_ep0" class="materialSelect" multiple><option value="1">value</option></select>
693
- <label for="d_groups_ep0" class="translate">Groups</label>
694
- </div>
695
- </div>
696
- </div>
697
- <div class="row epid1">
698
- <div class="col epid">
699
- <div class=endpointid>
700
- <p class="translate device_with_endpoint">Sub Endpoint 1</p>
701
- </div>
702
- </div>
703
- <div class="col">
704
- <div class="input-field groups">
705
- <select id="d_groups_ep1" class="materialSelect" multiple><option value="1">value</option></select>
706
- <label for="d_groups_ep1" class="translate">Groups</label>
707
- </div>
675
+ <h3 class="translate">Config device</h3>
676
+ <div class="row">
677
+ <div class="col1">
678
+ <div class="input-field">
679
+ <input id="d_name" type="text" class="value validate">
680
+ <label for="d_name" class="translate">Name</label>
681
+ </div>
682
+ </div>
708
683
  </div>
709
- </div>
710
- <div class="row epid2">
711
- <div class="col epid">
712
- <div class=endpointid>
713
- <p class="translate device_with_endpoint">Sub Endpoint 2</p>
714
- </div>
684
+ <div class="row epid0">
685
+ <div class="col">
686
+ <div class=endpointid>
687
+ <p class="translate device_with_endpoint">Main Endpoint</p>
688
+ </div>
689
+ </div>
690
+ <div class="col1">
691
+ <div class="input-field groups">
692
+ <select id="d_groups_ep0" class="materialSelect" multiple>
693
+ <option value="1">select</option>
694
+ </select>
695
+ <label for="d_groups_ep0" class="translate">Groups</label>
696
+ </div>
697
+ </div>
715
698
  </div>
716
- <div class="col">
717
- <div class="input-field groups">
718
- <select id="d_groups_ep2" class="materialSelect" multiple><option value="1">value</option></select>
719
- <label for="d_groups_ep2" class="translate">Groups</label>
720
- </div>
699
+ <div class="row epid1">
700
+ <div class="col epid">
701
+ <div class=endpointid>
702
+ <p class="translate device_with_endpoint">Sub Endpoint 1</p>
703
+ </div>
704
+ </div>
705
+ <div class="col">
706
+ <div class="input-field groups">
707
+ <select id="d_groups_ep1" class="materialSelect" multiple>
708
+ <option value="1">select</option>
709
+ </select>
710
+ <label for="d_groups_ep1" class="translate">Groups</label>
711
+ </div>
712
+ </div>
721
713
  </div>
722
- </div>
723
- <div class="row epid3">
724
- <div class="col epid">
725
- <div class=endpointid>
726
- <p class="translate device_with_endpoint">Sub Endpoint 3</p>
727
- </div>
714
+ <div class="row epid2">
715
+ <div class="col epid">
716
+ <div class=endpointid>
717
+ <p class="translate device_with_endpoint">Sub Endpoint 2</p>
718
+ </div>
719
+ </div>
720
+ <div class="col">
721
+ <div class="input-field groups">
722
+ <select id="d_groups_ep2" class="materialSelect" multiple>
723
+ <option value="1">select</option>
724
+ </select>
725
+ <label for="d_groups_ep2" class="translate">Groups</label>
726
+ </div>
727
+ </div>
728
728
  </div>
729
- <div class="col">
730
- <div class="input-field groups">
731
- <select id="d_groups_ep3" class="materialSelect" multiple><option value="1">value</option></select>
732
- <label for="d_groups_ep3" class="translate">Groups</label>
733
- </div>
729
+ <div class="row epid3">
730
+ <div class="col epid">
731
+ <div class=endpointid>
732
+ <p class="translate device_with_endpoint">Sub Endpoint 3</p>
733
+ </div>
734
+ </div>
735
+ <div class="col">
736
+ <div class="input-field groups">
737
+ <select id="d_groups_ep3" class="materialSelect" multiple>
738
+ <option value="1">select</option>
739
+ </select>
740
+ <label for="d_groups_ep3" class="translate">Groups</label>
741
+ </div>
742
+ </div>
734
743
  </div>
735
- </div>
736
744
  </div>
737
745
  <div class="modal-footer">
738
746
  <a name="save" href="#!" class="modal-action modal-close waves-effect waves-green btn green translate">Save</a>