From 043bfec096ebb3c2f9ddb028c8037c0dabc53a48 Mon Sep 17 00:00:00 2001 From: RMCob Date: Wed, 30 Mar 2022 16:06:19 -0400 Subject: [PATCH] V1.2.1 - See CHANGELOG.md for details --- CHANGELOG.md | 3 +++ README.md | 2 +- package-lock.json | 9 ++++----- package.json | 2 +- publish.sh | 2 +- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b228c06..75bc278 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All changes to the software will be documented here. +## V1.2.1 +- Fixed typos in README.md + ## V1.2.0 - Changed the BatteryCheck algorithm to not pound the Wyze servers so much. There are now 2 referesh intervals specified, one for when the vacuum is busy or has less than 100% charge, and one for when the vacuum is idle with 100% charge. - Changed the refresh interval specifications on the Settings page (and in config.json) from milliseconds to seconds. If you are updating this plugin be sure to go to the Settings page and change the value for statusCheckRefreshInterval to be in seconds. diff --git a/README.md b/README.md index c904551..eb0a0bc 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Supported devices will be discovered and added to Homebridge automatically. * **`mfaCode`** – Only required for the initial login if you have two-factor authentication enabled for your account. This is typically a 6-digit code provided by your authenticator app. * **`statusCheckRefreshInterval`** – Defines how often the status of the vacuum will be polled in seconds after sweeping has started (e.g., `"statusCheckRefreshInterval": 60` will check your devices' status every 60 seconds). Defaults to 30 seconds. * **`idleBatteryCheckRefreshInterval`** – Defines how often to check the battery level of the vacuum when it is idle and the battery level = 100. (e.g., `"idleBatteryCheckRefreshInterval": 2700` will check the battery level every 45 minutes. Defaults to 1800 seconds (30 minutes). -* **`busyBatteryCheckRefreshInterval`** – Defines how often to check the battery level of the vacuum when it is busy or the battery level < 100. (e.g., `"idleBatteryCheckRefreshInterval": 2700` will check the battery level every 45 minutes. Defaults to 1800 seconds (30 minutes). +* **`busyBatteryCheckRefreshInterval`** – Defines how often to check the battery level of the vacuum when it is busy or the battery level < 100. (e.g., `"busyBatteryCheckRefreshInterval": 60` will check the battery level every minute. Defaults to 120 seconds (2 minutes). ## Other Info diff --git a/package-lock.json b/package-lock.json index ed27e59..b9bedbb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "homebridge-wyze-robovac", - "version": "1.2.0", + "version": "1.2.1", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -1795,10 +1795,9 @@ } }, "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, "mkdirp": { "version": "0.5.5", diff --git a/package.json b/package.json index abe970a..b25496d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "private": false, "displayName": "Homebridge Wyze RoboVac", "name": "homebridge-wyze-robovac", - "version": "1.2.0", + "version": "1.2.1", "description": "Basic control of a Wyze Robot Vacuum.", "license": "Apache-2.0", "repository": { diff --git a/publish.sh b/publish.sh index 6372888..ff1099e 100755 --- a/publish.sh +++ b/publish.sh @@ -7,7 +7,7 @@ npm audit if npm run lint; then if npm run build; then git add . - npm version minor -m "$1" --force + npm version patch -m "$1" --force npm publish --tag latest git commit -m "$1" git push "https://github.com/RMCob/homebridge-wyze-robovac.git" master --tags