Skip to content

Commit

Permalink
Release 3.11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jghaanstra committed Aug 31, 2022
1 parent 08690ad commit c61ec91
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .homeychangelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -538,5 +538,8 @@
},
"3.11.3": {
"en": "Upcoming breaking change: the next release will remove all old Plus/Pro drivers for both Homey Pro and Cloud. Please migrate to the new unified driver before updating to version 3.12.0 which will be released early september. This release fixes an issue with pairing devices on Homey Pro where it shows already paired devices from the old drivers. It also fixes an issue with the total enery returned capability of the 3EM and adds a triggercard for Total Meter Power for the 3EM."
},
"3.11.4": {
"en": "Upcoming breaking change: the next release will remove all old Plus/Pro drivers for both Homey Pro and Cloud. Please migrate to the new unified driver before updating to version 3.12.0 which will be released early september. This release fixes an issue with pairing devices on Homey Pro where it shows already paired devices from the old drivers. It also fixes an issue with the total enery returned capability of the 3EM and adds a triggercard for Total Meter Power for the 3EM."
}
}
2 changes: 1 addition & 1 deletion .homeycompose/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"Shelly radiator"
]
},
"version": "3.11.3",
"version": "3.11.4",
"compatibility": ">=8.0.0",
"platforms": [ "local", "cloud" ],
"author": {
Expand Down
4 changes: 2 additions & 2 deletions .homeycompose/flow/triggers/triggerMeterPowerTotal.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"id": "triggerMeterPowerTotal",
"title": {
"en": "Total Power",
"nl": "Totale power"
"en": "Total Power changed",
"nl": "Totale power gewijzigd"
},
"tokens": [
{
Expand Down
6 changes: 3 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"Shelly radiator"
]
},
"version": "3.11.3",
"version": "3.11.4",
"compatibility": ">=8.0.0",
"platforms": [
"local",
Expand Down Expand Up @@ -674,8 +674,8 @@
{
"id": "triggerMeterPowerTotal",
"title": {
"en": "Total Power",
"nl": "Totale power"
"en": "Total Power changed",
"nl": "Totale power gewijzigd"
},
"tokens": [
{
Expand Down
2 changes: 1 addition & 1 deletion drivers/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ class ShellyDevice extends Homey.Device {
/* power factor */
if (result.emeters[channel].hasOwnProperty("pf") && this.hasCapability('meter_power_factor')) {
this.updateCapabilityValue('meter_power_factor', result.emeters[channel].pf);
this.homey.flow.getDeviceTriggerCard('triggerMeterPowerFactor').trigger(this, {'pf': value}, {}).catch(error => { this.error(error) });
this.homey.flow.getDeviceTriggerCard('triggerMeterPowerFactor').trigger(this, {'pf': result.emeters[channel].pf}, {}).catch(error => { this.error(error) });
}

/* measure_current */
Expand Down
2 changes: 1 addition & 1 deletion 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": "cloud.shelly",
"version": "3.11.3",
"version": "3.11.4",
"description": "Homey app for controlling Shelly devices",
"main": "app.js",
"scripts": {
Expand Down

0 comments on commit c61ec91

Please sign in to comment.