From a678f42166fd713e0878078e56f4e3322d14b203 Mon Sep 17 00:00:00 2001 From: Donavan Becker Date: Sat, 15 Apr 2023 23:32:29 -0500 Subject: [PATCH] v2.6.1 ## [Version 2.6.1](https://github.com/OpenWonderLabs/homebridge-switchbot/releases/tag/v2.6.1) (2023-04-15) ## What's Changed - Add Support for [SwitchBot Meter Plus (JP)](https://www.switchbot.jp/products/switchbot-meter-plus), [#642](https://github.com/OpenWonderLabs/homebridge-switchbot/pull/642) **Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.6.0....v2.6.1 --- CHANGELOG.md | 8 ++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/platform.ts | 1 + 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a311671..3e14385d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/) +## [Version 2.6.1](https://github.com/OpenWonderLabs/homebridge-switchbot/releases/tag/v2.6.1) (2023-04-15) + +## What's Changed + +- Add Support for [SwitchBot Meter Plus (JP)](https://www.switchbot.jp/products/switchbot-meter-plus), [#642](https://github.com/OpenWonderLabs/homebridge-switchbot/pull/642) + +**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v2.6.0....v2.6.1 + ## [Version 2.6.0](https://github.com/OpenWonderLabs/homebridge-switchbot/releases/tag/v2.6.0) (2023-04-15) ## What's Changed diff --git a/package-lock.json b/package-lock.json index 63f3b4fd..93a34a0e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@switchbot/homebridge-switchbot", - "version": "2.6.0", + "version": "2.6.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@switchbot/homebridge-switchbot", - "version": "2.6.0", + "version": "2.6.1", "funding": [ { "type": "Paypal", diff --git a/package.json b/package.json index 549bd75d..31e1ec83 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "displayName": "Homebridge SwitchBot", "name": "@switchbot/homebridge-switchbot", - "version": "2.6.0", + "version": "2.6.1", "description": "The [Homebridge](https://homebridge.io) SwitchBot plugin allows you to access your [SwitchBot](https://www.switch-bot.com) device(s) from HomeKit.", "author": "SwitchBot (https://github.com/SwitchBot)", "license": "ISC", diff --git a/src/platform.ts b/src/platform.ts index 15f7c085..fd1752aa 100644 --- a/src/platform.ts +++ b/src/platform.ts @@ -414,6 +414,7 @@ export class SwitchBotPlatform implements DynamicPlatformPlugin { this.createMeter(device); break; case 'MeterPlus': + case 'Meter Plus (JP)': this.debugLog(`Discovered ${device.deviceType}: ${device.deviceId}`); this.createMeterPlus(device); break;