iobroker.zigbee2mqtt 3.0.16 → 3.0.17

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
@@ -22,6 +22,12 @@ This adapter allows to control the data points of the devices of a Zigbee2MQTT i
22
22
  [Adapter Documentation](https://github.com/arteck/ioBroker.zigbee2mqtt/blob/main/docs/wiki.md)
23
23
 
24
24
  ## Changelog
25
+ ### **WORK IN PROGRESS**
26
+ * (arteck) typo
27
+
28
+ ### 3.0.17 (2026-01-28)
29
+ * (arteck) typo
30
+
25
31
  ### 3.0.16 (2026-01-28)
26
32
  * (arteck) fix action dp
27
33
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "zigbee2mqtt",
4
- "version": "3.0.16",
4
+ "version": "3.0.17",
5
5
  "news": {
6
+ "3.0.17": {
7
+ "en": "typo",
8
+ "de": "typo",
9
+ "ru": "опечатка",
10
+ "pt": "erro de digitação",
11
+ "nl": "type",
12
+ "fr": "typo",
13
+ "it": "tipo",
14
+ "es": "typo",
15
+ "pl": "typo",
16
+ "uk": "типи",
17
+ "zh-cn": "类型"
18
+ },
6
19
  "3.0.16": {
7
20
  "en": "fix action dp",
8
21
  "de": "funktion dp",
@@ -80,19 +93,6 @@
80
93
  "pl": "fix info.connection",
81
94
  "uk": "фіксувати інформацію.connection",
82
95
  "zh-cn": "修复信息.连接"
83
- },
84
- "3.0.10": {
85
- "en": "Dependencies have been updated\nChanged role of `color_temp_startup` state to `level` to avoid double `level.temperature` in one device\nfix ZBMINIR2 inching DP\ndelete DP colortempstartup",
86
- "de": "Abhängigkeiten wurden aktualisiert\nÄnderung der Rolle von `color_temp_startup` Zustand auf `level`, um Doppel `level.temperature` in einem Gerät zu vermeiden\nzBMINIR2 Inch DP reparieren\nlöschen DP colortempstartup",
87
- "ru": "Зависимости были обновлены\nИзменилась роль состояния «color_temp_startup» до «level», чтобы избежать двойной «level.temperature» в одном устройстве\nzBMINIR2 Inching DP\nудалить DP colortempstartup",
88
- "pt": "As dependências foram atualizadas\nPapel alterado do estado de `color_temp_startup` para `level` para evitar o duplo `level.temperature` em um dispositivo\ncorrigir ZBMINIR2 nching DP\napagar DP colortempstartup",
89
- "nl": "Afhankelijkheden zijn bijgewerkt\nVeranderde rol van Color_temp_startup\nfix ZBMINIR2 inching DP\nverwijderen DP colortempstartup",
90
- "fr": "Les dépendances ont été actualisées\nChangement du rôle de l'état `color_temp_startup` à `level` pour éviter le double `level.temperature` dans un seul appareil\ncorrection de l'encoche ZBMINIR2 DP\nsupprimer DP colortempstartup",
91
- "it": "Le dipendenze sono state aggiornate\nCambiato ruolo di `color_temp_startup` stato a `level` per evitare doppio `level.temperature` in un dispositivo\ncorrezione ZBMINIR2 inching DP\neliminare DP colortempstartup",
92
- "es": "Se han actualizado las dependencias\nCambiar el papel de `color_temp_startup` estado a `nivel` para evitar el doble `nivel.temperatura` en un dispositivo\nfijar ZBMINIR2 inching DP\neliminar DP colortempstartup",
93
- "pl": "Zaktualizowano zależności\nZmieniona rola 'color _ temp _ startup' stanu na 'poziom', aby uniknąć podwójnego 'level.temperature' w jednym urządzeniu\nfix ZBMINIR2 inching DP\nusuń odtwarzacz kolorów DP",
94
- "uk": "Залежність було оновлено\nЗмінена роль `color_temp_startup` для `level`, щоб уникнути подвійного рівня `level. Температура` в одному пристрої\nзафіксувати ZBMINIR2 інвертор ДП\nвидалити DP Colortempstartup",
95
- "zh-cn": "依赖关系已更新\n将“color_temp_startup”状态的作用改为“level”,以避免一个设备中的双“level.teperature”\n修补 ZBMINIR2 插入 DP\n删除 DP 调色符启动"
96
96
  }
97
97
  },
98
98
  "messages": [
package/lib/exposes.js CHANGED
@@ -763,6 +763,7 @@ async function createDeviceFromExposes(devicesMessag, adapter) {
763
763
  state = genState(expose);
764
764
  state.isEvent = true;
765
765
  pushToStates(state, expose.access);
766
+ state = null;
766
767
 
767
768
  if (!Array.isArray(expose.values)) {
768
769
  break;
@@ -155,14 +155,13 @@ class StatesController {
155
155
  } else {
156
156
  await this.setStateSafelyAsync(stateName, state.getter(messageObj.payload));
157
157
  }
158
+ // publish the action into action dp
159
+ if (state.prop && state.prop == 'action') {
160
+ await this.setStateSafelyAsync(`${device.ieee_address}.action`, messageObj.payload.action);
161
+ }
158
162
  } else {
159
163
  await this.setStateChangedSafelyAsync(stateName, state.getter(messageObj.payload));
160
- }
161
-
162
- // publish the action into action dp
163
- if (state.prop && state.prop == 'action') {
164
- await this.setStateSafelyAsync(`${device.ieee_address}.action`, messageObj.payload.action);
165
- }
164
+ }
166
165
  } catch (err) {
167
166
  incStatsQueue[incStatsQueue.length] = messageObj;
168
167
  this.adapter.log.debug(`Can not set ${stateName}, queue state in incStatsQueue!`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.zigbee2mqtt",
3
- "version": "3.0.16",
3
+ "version": "3.0.17",
4
4
  "description": "Zigbee2MQTT adapter for ioBroker",
5
5
  "author": {
6
6
  "name": "Dennis Rathjen and Arthur Rupp",