homebridge-itho-daalderop
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -7,5 +7,19 @@ ### Changelog | ||
#### [1.1.2](https://github.com/jvandenaardweg/homebridge-itho-daalderop/compare/1.1.1...1.1.2) | ||
- docs: update docs on api utils [`550ce57`](https://github.com/jvandenaardweg/homebridge-itho-daalderop/commit/550ce573f7df265fc749a7cb27dce9e44da8f1c2) | ||
- test: increase test coverage on config.schema [`354326d`](https://github.com/jvandenaardweg/homebridge-itho-daalderop/commit/354326dd5f7b0a3b08a4014fd3f452996f3cb5bb) | ||
- chore: update issue templates [`f405f8e`](https://github.com/jvandenaardweg/homebridge-itho-daalderop/commit/f405f8e828cbfcb7e75f5fbe61038f4cbf58d75e) | ||
- refactor: set version of package on build in dist files [`ffee695`](https://github.com/jvandenaardweg/homebridge-itho-daalderop/commit/ffee69535ac7cf3f5cd6c43e00f65fb928ea593d) | ||
- chore: set version on after:bump [`e865758`](https://github.com/jvandenaardweg/homebridge-itho-daalderop/commit/e8657580d1169fc9dd98bb8185ebc5f44cd775d2) | ||
- docs: improve readme on configuring plugin [`fb5b2df`](https://github.com/jvandenaardweg/homebridge-itho-daalderop/commit/fb5b2dfe135dcb7c06f621e4873ddc82148054e1) | ||
- docs: remove typo [`ecfedd2`](https://github.com/jvandenaardweg/homebridge-itho-daalderop/commit/ecfedd29c9739315676d3ac059cb2fdd5b8e61ac) | ||
- docs: clarify setProps on rotation speed [`a77713c`](https://github.com/jvandenaardweg/homebridge-itho-daalderop/commit/a77713cd9e190bb288dbc3df97d09a770d0dca44) | ||
#### [1.1.1](https://github.com/jvandenaardweg/homebridge-itho-daalderop/compare/1.1.0...1.1.1) | ||
> 30 December 2022 | ||
- fix: vremote speed controls not working due to config changes [`fc3792d`](https://github.com/jvandenaardweg/homebridge-itho-daalderop/commit/fc3792d62f9285c8859d4bc5a1107d81ba893ea4) | ||
- chore: release v1.1.1 [`60e8786`](https://github.com/jvandenaardweg/homebridge-itho-daalderop/commit/60e878623ad75c68787f09047dea83f1516c7104) | ||
- docs: update readme about speed control [`d66d296`](https://github.com/jvandenaardweg/homebridge-itho-daalderop/commit/d66d296db920105a488df12f3d2801dee290a25d) | ||
@@ -12,0 +26,0 @@ |
@@ -19,2 +19,3 @@ "use strict"; | ||
const serial_1 = require("./utils/serial"); | ||
const version_1 = require("./version"); | ||
class AirQualitySensorAccessory { | ||
@@ -60,3 +61,3 @@ constructor(platform, accessory, config) { | ||
informationService === null || informationService === void 0 ? void 0 : informationService.setCharacteristic(this.platform.Characteristic.SerialNumber, (0, serial_1.serialNumberFromUUID)(this.accessory.UUID)); | ||
informationService === null || informationService === void 0 ? void 0 : informationService.setCharacteristic(this.platform.Characteristic.FirmwareRevision, process.env.npm_package_version || '1.0'); | ||
informationService === null || informationService === void 0 ? void 0 : informationService.setCharacteristic(this.platform.Characteristic.FirmwareRevision, version_1.PLUGIN_VERSION || '1.0'); | ||
this.service = | ||
@@ -63,0 +64,0 @@ this.accessory.getService(this.platform.Service.AirQualitySensor) || |
@@ -19,2 +19,3 @@ "use strict"; | ||
const serial_1 = require("./utils/serial"); | ||
const version_1 = require("./version"); | ||
class FanAccessory { | ||
@@ -63,3 +64,3 @@ constructor(platform, accessory, config) { | ||
(_c = this.informationService) === null || _c === void 0 ? void 0 : _c.setCharacteristic(this.platform.Characteristic.SerialNumber, (0, serial_1.serialNumberFromUUID)(this.accessory.UUID)); | ||
(_d = this.informationService) === null || _d === void 0 ? void 0 : _d.setCharacteristic(this.platform.Characteristic.FirmwareRevision, process.env.npm_package_version || '1.0'); | ||
(_d = this.informationService) === null || _d === void 0 ? void 0 : _d.setCharacteristic(this.platform.Characteristic.FirmwareRevision, version_1.PLUGIN_VERSION || '1.0'); | ||
this.service = | ||
@@ -66,0 +67,0 @@ this.accessory.getService(this.platform.Service.Fanv2) || |
{ | ||
"displayName": "Homebridge Itho Daalderop", | ||
"name": "homebridge-itho-daalderop", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "This Homebridge plugin exposes your Itho Daalderop mechanical fan unit to Apple HomeKit by using the WiFi Add-on module. So you can use the Home App to control your fan units and integrate into your Home Automations.", | ||
@@ -38,5 +38,7 @@ "license": "MIT", | ||
"watch": "npm run build && npm link && nodemon", | ||
"prebuild": "node -p \"'export const PLUGIN_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts", | ||
"build": "rimraf ./dist && tsc --project tsconfig.build.json && resolve-tspaths", | ||
"prepublishOnly": "npm run lint && npm run build", | ||
"pretest": "npm run lint && npm run type-check", | ||
"set-version": "npm run prebuild", | ||
"homebridge": "homebridge -D", | ||
@@ -101,3 +103,3 @@ "update": "npx npm-check-updates --interactive", | ||
"hooks": { | ||
"after:bump": "npx auto-changelog -p --commit-limit false" | ||
"after:bump": "npx auto-changelog -p --commit-limit false && npm run set-version" | ||
}, | ||
@@ -104,0 +106,0 @@ "npm": { |
@@ -27,3 +27,3 @@ <p align="center"> | ||
It is required to have installed and configured the [WiFi Add-on module](https://github.com/arjenhiemstra/ithowifi) for your fan unit. More info about this module and for a complete list on what mechanical ventilation models models are supported, please take a look at [Arjan Hiemstra's GitHub repository](https://github.com/arjenhiemstra/ithowifi) or this forum thread on Tweakers.net (Dutch): [Itho Daalderop - open source wifi control add-on module](https://gathering.tweakers.net/forum/list_messages/1976492). | ||
It is required to have installed and configured the [WiFi Add-on module](https://github.com/arjenhiemstra/ithowifi) for your fan unit. More info about this module and for a complete list on what mechanical ventilation models are supported, please take a look at [Arjan Hiemstra's GitHub repository](https://github.com/arjenhiemstra/ithowifi) or this forum thread on Tweakers.net (Dutch): [Itho Daalderop - open source wifi control add-on module](https://gathering.tweakers.net/forum/list_messages/1976492). | ||
@@ -58,3 +58,3 @@ ### MQTT | ||
2. On the plugin page click on "Settings" for `Homebridge Itho Daalderop` | ||
3. Let the plugin know if you have a build-in CO2 sensor in your fan unit | ||
3. Let the plugin know if you have a built-in CO2 sensor in your fan unit or if you have a non-CVE unit like the HRU-350, DemandFlow, QualityFlow or HR | ||
4. And choose between using MQTT or the HTTP API and fill in the required settings | ||
@@ -61,0 +61,0 @@ 5. Save the config |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
144836
57
1549
0