Skip to content

Commit

Permalink
Merge pull request #305 from Grizzelbee/development
Browse files Browse the repository at this point in the history
v3.2.3 (2024-06-21) (Marching on)
  • Loading branch information
Grizzelbee authored Jun 21, 2024
2 parents 9b07df4 + 4c5e55e commit 361ecd7
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,9 @@ This is nice to know because the devices usually send (at least mine do) their s

### **WORK IN PROGRESS**

### 3.2.3 (2024-06-21) (Marching on)
- (grizzelbee) Fix: Added missing clearInterval in onUnload

### 3.2.2 (2024-06-18) (Marching on)
- (grizzelbee) Upd: Dependencies got updated
- (grizzelbee) Upd: [#286](https://github.com/Grizzelbee/ioBroker.dysonairpurifier/issues/286) Fixed polling which got broken in v3.1.10
Expand Down
15 changes: 14 additions & 1 deletion io-package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
{
"common": {
"name": "dysonairpurifier",
"version": "3.2.2",
"version": "3.2.3",
"news": {
"3.2.3": {
"en": "Fix: Added missing clearInterval in onUnload",
"de": "Fix: Fehlendes ClearInterval in onUnload hinzugefügt",
"ru": "Исправлено: добавлен отсутствующий параметр ClearInterval в onUnload.",
"pt": "Correção: adicionado clearInterval ausente em onUnload",
"nl": "Oplossing: ontbrekend clearInterval toegevoegd in onUnload",
"fr": "Correctif : ajout de clearInterval manquant dans onUnload",
"it": "Correzione: aggiunto clearInterval mancante in onUnload",
"es": "Solución: se agregó el intervalo claro que faltaba en onUnload",
"pl": "Poprawka: dodano brakujący clearInterval w onUnload",
"uk": "Виправлення: додано відсутній clearInterval у onUnload",
"zh-cn": "修复:在 onUnload 中添加了缺少的clearInterval"
},
"3.2.2": {
"en": "Fix: Fixed polling which got broken in v3.1.10\nChg: Dependencies got updated",
"de": "Fix: Polling wurde korrigiert nachdem es in Version 3.1.10 kaputt gegangen ist.\nÄnderung: Abhängigkeiten wurden aktualisiert",
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1584,7 +1584,7 @@ class dysonAirPurifier extends utils.Adapter {
try {
for (const DEVICE in devices) {
const thisDevice = devices[DEVICE];
clearTimeout(thisDevice.updateIntervalHandle);
clearInterval(thisDevice.updateIntervalHandle);
this.log.info(`Cleaned up timeout for ${thisDevice.Serial}.`);
await this.setDeviceOnlineState(thisDevice.Serial, 'offline');
this.log.debug(`Set device ${thisDevice.Serial} to offline.`);
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.dysonairpurifier",
"version": "3.2.2",
"version": "3.2.3",
"description": "dyson air purifiers and fans",
"author": {
"name": "grizzelbee",
Expand Down

0 comments on commit 361ecd7

Please sign in to comment.