Skip to content

Commit

Permalink
1.6.0
Browse files Browse the repository at this point in the history
Enhanced data/entity processing to reduce CPU usage.
  • Loading branch information
RonnyWinkler committed Jul 16, 2024
1 parent ebb7d78 commit 447ac30
Show file tree
Hide file tree
Showing 6 changed files with 300 additions and 150 deletions.
4 changes: 4 additions & 0 deletions .homeychangelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,10 @@
"1.5.24": {
"en": "Added token for previous state to app trigger 'entity state changed'.",
"de": "Token für vorherigen Status zu App-Trigger 'Entitäts-Status geändert' hinzugefügt."
},
"1.6.0": {
"en": "Enhanced data/entity processing to reduce CPU usage.",
"de": "Daten/Entitätsverarbeitung optimiert zur Reduzierung der CPU-Auslastung."
}

}
2 changes: 1 addition & 1 deletion .homeycompose/app.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "io.home-assistant.community",
"version": "1.5.24",
"version": "1.6.0",
"compatibility": ">=8.1.0",
"sdk": 3,
"brandColor": "#0DA6EA",
Expand Down
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"_comment": "This file is generated. Please edit .homeycompose/app.json instead.",
"id": "io.home-assistant.community",
"version": "1.5.24",
"version": "1.6.0",
"compatibility": ">=8.1.0",
"sdk": 3,
"brandColor": "#0DA6EA",
Expand Down
2 changes: 1 addition & 1 deletion drivers/basedriver.js
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ class BaseDriver extends Homey.Driver {
else{
devices = await this.getDeviceList(client);
}
this.log("onPairListDevices: size of devices JSON: "+JSON.stringify(devices).length);
this.log("onPairListDevices: devices: "+devices.length+"/"+ client.getEntitiesCount() +" entities, size of devices JSON: "+JSON.stringify(devices).length);
return devices;
}

Expand Down
Loading

0 comments on commit 447ac30

Please sign in to comment.