diff --git a/README.md b/README.md index 6620ea8..91f1476 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ __NOTE 2:__ Once reset is complete, remember to set the `resetAll` setting back The script provides an active connection to the ADT Pulse portal. Here is a list of must-knows, just in case you might want to debug (or improve) the plugin: 1. Device and zone statuses will be fetched every __3 seconds__. If logins have failed more than 2 times, portal sync will pause for 10 minutes. -2. Supported versions are `19.0.0-89` and `20.0.0-221`. If this plugin does not support either version, a warning will appear in the logs. Please [submit an issue](https://github.com/mrjackyliang/homebridge-adt-pulse/issues/new/choose) to let me know! +2. Supported versions are `20.0.0-221` and `20.0.0-244`. If this plugin does not support either version, a warning will appear in the logs. Please [submit an issue](https://github.com/mrjackyliang/homebridge-adt-pulse/issues/new/choose) to let me know! ## Credits and Appreciation If you would like to show your appreciation for its continued development, you can optionally become my supporter on [GitHub Sponsors](https://github.com/sponsors/mrjackyliang)! diff --git a/index.js b/index.js index 3032ebd..813e49d 100644 --- a/index.js +++ b/index.js @@ -832,7 +832,7 @@ ADTPulsePlatform.prototype.portalSync = function portalSync() { .login() .then((response) => { const version = _.get(response, 'info.version'); - const supportedVersion = ['19.0.0-89', '20.0.0-221']; + const supportedVersion = ['20.0.0-221', '20.0.0-244']; if (version !== undefined && !supportedVersion.includes(version) && version !== this.sessionVersion) { this.logMessage(`Web Portal version ${version} detected. Test plugin to ensure system compatibility...`, 20); diff --git a/package.json b/package.json index e02511a..96a446a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "homebridge-adt-pulse", "displayName": "Homebridge ADT Pulse", - "version": "1.9.0", + "version": "1.9.1", "description": "Homebridge security system platform for ADT Pulse", "main": "index.js", "private": false, @@ -51,8 +51,8 @@ }, "devDependencies": { "eslint": "^6.8.0", - "eslint-config-airbnb-base": "^14.2.0", - "eslint-plugin-import": "^2.22.0", + "eslint-config-airbnb-base": "^14.2.1", + "eslint-plugin-import": "^2.22.1", "homebridge": "^0.4.53", "typescript": "^3.9.7" }