From 25e75662b2b55727863f39708ed199520b31be6a Mon Sep 17 00:00:00 2001 From: Just Jam Date: Sun, 8 Dec 2024 17:10:19 +0000 Subject: [PATCH 1/2] Removed debug output --- src/accessories/virtualAccessoryValve.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/accessories/virtualAccessoryValve.ts b/src/accessories/virtualAccessoryValve.ts index 81e621e..0c205b8 100644 --- a/src/accessories/virtualAccessoryValve.ts +++ b/src/accessories/virtualAccessoryValve.ts @@ -78,9 +78,6 @@ export class Valve extends Accessory { this.service.updateCharacteristic(this.platform.Characteristic.InUse, (this.states.ValveInUse)); this.service.updateCharacteristic(this.platform.Characteristic.SetDuration, (this.accessoryConfiguration.valveDuration)); - // eslint-disable-next-line max-len - this.platform.log.info(`[${this.accessoryConfiguration.accessoryName}] SetDuration: ${JSON.stringify(this.service.getCharacteristic(this.platform.Characteristic.SetDuration))}`); - // each service must implement at-minimum the "required characteristics" for the given service type // see https://developers.homebridge.io/#/service/Lightbulb From 0e59cdd0dc22de2b44d795ab66c2c16daec0b7cd Mon Sep 17 00:00:00 2001 From: Just Jam Date: Sun, 8 Dec 2024 17:11:25 +0000 Subject: [PATCH 2/2] Bumped vesion to 1.2.0-beta.2 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index e1b1150..3465d06 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "homebridge-virtual-accessories", - "version": "1.2.0-beta.1", + "version": "1.2.0-beta.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "homebridge-virtual-accessories", - "version": "1.2.0-beta.1", + "version": "1.2.0-beta.2", "license": "Apache-2.0", "dependencies": { "@js-joda/core": "^5.6.3", diff --git a/package.json b/package.json index 9afd818..d99bc19 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "homebridge-virtual-accessories", "displayName": "Virtual Accessories for Homebridge", "type": "module", - "version": "1.2.0-beta.1", + "version": "1.2.0-beta.2", "description": "Virtual accessories for Homebridge.", "author": "justjam2013", "license": "Apache-2.0",