Skip to content

Commit

Permalink
3.1.1 Release (#462)
Browse files Browse the repository at this point in the history
* Adding in fix for Issue #444.

* Reverting the SimpleBlindsAccessory back to the version suggested in #451

* Updating to try cater for multiple types of blinds in the same file.



* 3.4 Protocol succesfull connection
* restore other protocols compatibility

* Revert "Changes from @fate8383. #433 (comment)"

This reverts commit d85caa5.

* Add support for Proscenic air purifier (tested against Proscenic A8) addresses #363 and #195 (#364)

* Add support for Proscenic air purifier (tested against Proscenic A8)

* Additional fix for "Turning off..." state as getCurrentAirPurifierState always returned 2 (PURIFYING_AIR)

* Fix for setting rotation speed and active status

* Add initial support for Virone VDP-65 doorbell.
Notifies on ring with a snapshot.
Notifies when a user presses the lock or gate buttons on another device.
Does not provide video or audio.
Does not allow the user to control the lock or gate.

* Add Siguro support from @fate8383.

* Revert "Add initial support for Virone VDP-65 doorbell."

This reverts commit 7db7a1f.

---------

Co-authored-by: Andrew <bitbucket@a.k6i.uk>
Co-authored-by: Andrew Kurowski <ak6i@github.com>

* Adding Air purifier config map so that changes can be made from the ui.

* Bumping package version. Removing a rogue ,

* Dropping the Beta Version in preparation of a release.

---------

Co-authored-by: 05TEVE <>
Co-authored-by: scooterpsu <3433982+scooterpsu@users.noreply.github.com>
Co-authored-by: tomash1 <tomdomaracki@gmail.com>
Co-authored-by: ak6i <62596884+ak6i@users.noreply.github.com>
Co-authored-by: Andrew <bitbucket@a.k6i.uk>
Co-authored-by: Andrew Kurowski <ak6i@github.com>
  • Loading branch information
6 people authored May 3, 2024
1 parent 95789f8 commit 78feb4c
Show file tree
Hide file tree
Showing 8 changed files with 758 additions and 520 deletions.
13 changes: 13 additions & 0 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,12 @@
"enum": [
"FanLight"
]
},
{
"title": "Air Purifier",
"enum": [
"AirPurifier"
]
}
]
},
Expand Down Expand Up @@ -495,6 +501,13 @@
"condition": {
"functionBody": "return model.devices && model.devices[arrayIndices] && ['RGBTWOutlet'].includes(model.devices[arrayIndices].type);"
}
},
"dpBlindType": {
"type": "integer",
"placeholder": 1,
"condition": {
"functionBody": "return model.devices && model.devices[arrayIndices] && ['SimpleBlinds'].includes(model.devices[arrayIndices].type);"
}
}
}
}
Expand Down
Loading

0 comments on commit 78feb4c

Please sign in to comment.