Skip to content

Commit

Permalink
v3.2.0 (#96)
Browse files Browse the repository at this point in the history
## [Version 3.2.0](homebridge-plugins/homebridge-resideo@v3.1.0....3.2.0) (2020-10-15)

#### Changes

- Added support for the MSS530H.
  - You set an ChannelID 1, 2 or 3.
    - Channel 1 is the Top Outlet.
    - Channel 2 the bottom left.
    - Channel 3 the bottom right.

Closes #69
  • Loading branch information
donavanbecker authored Oct 16, 2020
1 parent 8e4551b commit 6fd7e14
Show file tree
Hide file tree
Showing 11 changed files with 268 additions and 338 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
env:
ACTIONS_STEP_DEBUG: true
steps:
- uses: actions/[email protected].11
- uses: actions/[email protected].12
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/).

## [Version 3.2.0](https://github.com/donavanbecker/homebridge-honeywell-home/compare/v3.1.0....3.2.0) (2020-10-15)

#### Changes

- Added support for the MSS530H.
- You set an ChannelID 1, 2 or 3.
- Channel 1 is the Top Outlet.
- Channel 2 the bottom left.
- Channel 3 the bottom right.

## [Version 3.1.0](https://github.com/donavanbecker/homebridge-honeywell-home/compare/v3.0.0....3.1.0) (2020-10-02)

#### Changes
Expand Down
4 changes: 4 additions & 0 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@
"title": "MSS-510M",
"enum": ["MSS510M"]
},
{
"title": "MSS-530H",
"enum": ["MSS530H"]
},
{
"title": "MSS-550",
"enum": ["MSS550"]
Expand Down
Binary file removed meross/02.png
Binary file not shown.
Binary file removed meross/03.png
Binary file not shown.
Binary file removed meross/merosssetup.m4v
Binary file not shown.
Binary file removed meross/merosssetup.mov
Binary file not shown.
Binary file removed meross/merosssetup.mp4
Binary file not shown.
574 changes: 244 additions & 330 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"displayName": "Homebridge Meross",
"name": "homebridge-meross",
"version": "3.1.0",
"version": "3.2.0",
"description": "A Meross Plugin for Homebridge.",
"license": "Apache-2.0",
"author": "donavanbecker/dylanfrankcom",
Expand All @@ -14,7 +14,7 @@
},
"engines": {
"node": ">=12.18.3",
"homebridge": ">=1.2.2"
"homebridge": ">=1.2.3"
},
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -42,12 +42,12 @@
"request": ">=2.88.0"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"homebridge": "^1.2.3",
"nodemon": "^2.0.4",
"nodemon": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ class Meross {
break;
case "MSS510":
case "MSS510M":
case 'MSS530H':
case "MSS550":
case "MSS560":
case "MSS570":
Expand Down Expand Up @@ -111,6 +112,7 @@ class Meross {
break;
case 'MSS510':
case 'MSS510M':
case 'MSS530H':
case 'MSS550':
case 'MSS570':
case 'MSS5X0':
Expand Down

0 comments on commit 6fd7e14

Please sign in to comment.