Skip to content

Commit

Permalink
v3.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Grizzelbee committed May 13, 2024
1 parent 0fb4782 commit d876be8
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,13 +185,17 @@ All states report whether there is a failure or not. `True` means a failure, `fa

### **WORK IN PROGRESS**

### 3.1.9 (2024-05-13) (Marching on)

- (arcticon) Fix: [#278](https://github.com/Grizzelbee/ioBroker.dysonairpurifier/issues/278) Changeable fields are working again.

### 3.1.8 (2024-05-10) (Marching on)

- (arcticon) Upd: Dependencies got updated
- (grizzelbee) Chg: code refactoring
- (arcticon) Chg: code refactoring
- (arcticon) Chg: [#273](https://github.com/Grizzelbee/ioBroker.dysonairpurifier/issues/273) Performance improvements
- (arcticon) Chg: [#274](https://github.com/Grizzelbee/ioBroker.dysonairpurifier/issues/274) Update of outdated certificate
- (arcticon) Chg: [#273](https://github.com/Grizzelbee/ioBroker.dysonairpurifier/issues/273) Performance improvements
- (arcticon) Chg: [#274](https://github.com/Grizzelbee/ioBroker.dysonairpurifier/issues/274) Update of outdated certificate

### 3.1.7 (2024-04-24) (Marching on)

Expand Down
2 changes: 2 additions & 0 deletions dyson-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,8 @@ module.exports.deleteUnusedFields = async function (self, device) {
if (!err && oldObj) {
self.log.info(`Deleting deprecated field: ${id}`);
self.delObject(id);
} else {
self.log.debug(`deprecated field: ${id} not found - nothing to do.`);
}
});
}
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.1.8",
"version": "3.1.9",
"news": {
"3.1.9": {
"en": "Changeable fields are working again.",
"de": "Änderbare Felder funktionieren wieder.",
"ru": "Изменяемые поля снова работают.",
"pt": "Os campos alteráveis ​​estão funcionando novamente.",
"nl": "Veranderlijke velden werken weer.",
"fr": "Les champs modifiables fonctionnent à nouveau.",
"it": "I campi modificabili funzionano di nuovo.",
"es": "Los campos modificables están funcionando nuevamente.",
"pl": "Zmienne pola znów działają.",
"uk": "Змінні поля знову працюють.",
"zh-cn": "可变字段再次发挥作用。"
},
"3.1.8": {
"en": "Dependencies got updated\nCode refactoring\nPerformance improvements\nUpdate of outdated certificate",
"de": "Abhängigkeiten wurden aktualisiert\nCode-Refactoring\nLeistungsverbesserungen\nAktualisierung des veralteten Zertifikats",
Expand Down
3 changes: 2 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1519,7 +1519,8 @@ class dysonAirPurifier extends utils.Adapter {
*/
onUnload(callback) {
try {
for (const thisDevice of devices) {
for (const DEVICE in devices) {
const thisDevice = devices[DEVICE];
clearTimeout(thisDevice.updateIntervalHandle);
this.log.info(`Cleaned up timeout for ${thisDevice.Serial}.`);
// todo unsubscribe to any subscribes
Expand Down
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.1.8",
"version": "3.1.9",
"description": "dyson air purifiers and fans",
"author": {
"name": "grizzelbee",
Expand Down

0 comments on commit d876be8

Please sign in to comment.