Skip to content

Commit

Permalink
Merge pull request #90 from Luligu/dev
Browse files Browse the repository at this point in the history
Release 2.4.0
  • Loading branch information
Luligu authored Jan 8, 2025
2 parents ff66470 + 1c7d2ee commit bd6c1aa
Show file tree
Hide file tree
Showing 8 changed files with 122 additions and 116 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ If you like this project and find it useful, please consider giving it a star on

All notable changes to this project will be documented in this file.

## [2.4.0] - 2025-01-08

### Added

- [selectDevice]: Added selectDevice to get the device names from a list in the config editor.
- [configUrl]: Added configUrl to get a link to the zigbee2mqtt frontend from the Matterbridge frontend Devices page.

### Changed

- [illuminace_lux]: Follow removal of illuminace_lux https://github.com/Koenkk/zigbee-herdsman-converters/pull/8304
- [package]: Updated dependencies.

<a href="https://www.buymeacoffee.com/luligugithub">
<img src="./yellow-button.png" alt="Buy me a coffee" width="120">
</a>

## [2.3.2] - 2024-12-24

### Changed
Expand Down
26 changes: 18 additions & 8 deletions matterbridge-zigbee2mqtt.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"title": "Matterbridge zigbee2mqtt plugin",
"description": "matterbridge-zigbee2mqtt v. 2.0.17 by https://github.com/Luligu",
"type": "object",
"required": ["host", "port", "topic"],
"required": [
"host",
"port",
"topic"
],
"properties": {
"name": {
"description": "Plugin name",
Expand Down Expand Up @@ -46,36 +50,42 @@
"description": "The devices in the list will not be exposed.",
"type": "array",
"items": {
"type": "string"
}
"type": "string",
"default": "device or group name"
},
"selectFrom": "name"
},
"whiteList": {
"description": "Only the devices in the list will be exposed.",
"type": "array",
"items": {
"type": "string"
}
},
"selectFrom": "name"
},
"switchList": {
"description": "The devices in the list will be exposed like switches (don't use it for Alexa, use lightList or outletList instead).",
"type": "array",
"items": {
"type": "string"
}
},
"selectFrom": "name"
},
"lightList": {
"description": "The devices in the list will be exposed like lights.",
"type": "array",
"items": {
"type": "string"
}
},
"selectFrom": "name"
},
"outletList": {
"description": "The devices in the list will be exposed like outlets.",
"type": "array",
"items": {
"type": "string"
}
},
"selectFrom": "name"
},
"featureBlackList": {
"description": "The features in the list will not be exposed for all devices.",
Expand Down Expand Up @@ -110,4 +120,4 @@
"default": false
}
}
}
}
Loading

0 comments on commit bd6c1aa

Please sign in to comment.