Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: homebridge-plugins/homebridge-resideo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.1.1
Choose a base ref
...
head repository: homebridge-plugins/homebridge-resideo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.1.2
Choose a head ref
  • 1 commit
  • 12 files changed
  • 1 contributor

Commits on May 31, 2024

  1. v2.1.2

    donavanbecker committed May 31, 2024
    Copy the full SHA
    e11b6fe View commit details
Showing with 452 additions and 357 deletions.
  1. +7 −0 CHANGELOG.md
  2. +2 −3 config.schema.json
  3. +54 −54 package-lock.json
  4. +2 −2 package.json
  5. +117 −67 src/devices/device.ts
  6. +3 −3 src/devices/roomsensors.ts
  7. +70 −56 src/devices/roomsensorthermostats.ts
  8. +75 −50 src/devices/thermostats.ts
  9. +1 −1 src/devices/valve.ts
  10. +116 −105 src/platform.ts
  11. +4 −2 src/settings.ts
  12. +1 −14 src/utils.ts
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/)

## [2.1.2](https://github.com/donavanbecker/homebridge-resideo/releases/tag/v2.1.2) (2024-05-30)

### What's Changes
- Housekeeping and updated dependencies.

**Full Changelog**: https://github.com/donavanbecker/homebridge-resideo/compare/v2.1.1..v2.1.2

## [2.1.1](https://github.com/donavanbecker/homebridge-resideo/releases/tag/v2.1.1) (2024-05-29)

### What's Changes
5 changes: 2 additions & 3 deletions config.schema.json
Original file line number Diff line number Diff line change
@@ -402,10 +402,9 @@
}
},
"pushRate": {
"title": "Device Refresh Rate",
"title": "Device Push Rate",
"type": "number",
"minimum": 30,
"placeholder": 360,
"placeholder": 1,
"description": "Indicates the number of seconds between pushes to the of Resideo API.",
"condition": {
"functionBody": "return (model.options && model.options.devices && !model.options.devices[arrayIndices].hide_device && (model.options.devices[arrayIndices].deviceClass === 'Thermostat' || model.options.devices[arrayIndices].deviceClass === 'LeakDetector') && model.options.devices[arrayIndices].deviceID);"
108 changes: 54 additions & 54 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"displayName": "Resideo",
"name": "homebridge-resideo",
"version": "2.1.1",
"version": "2.1.2",
"description": "The Resideo plugin allows you to access your Resideo device(s) from HomeKit.",
"author": {
"name": "donavanbecker",
@@ -81,6 +81,6 @@
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.21"
"typescript-eslint": "^8.0.0-alpha.24"
}
}
Loading