Skip to content

Commit

Permalink
Merge pull request #19 from Luligu/dev
Browse files Browse the repository at this point in the history
Release 0.0.6
  • Loading branch information
Luligu authored Dec 24, 2024
2 parents 6ce5ede + 2e3a5b2 commit 27e042a
Show file tree
Hide file tree
Showing 10 changed files with 550 additions and 1,408 deletions.
15 changes: 9 additions & 6 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
Expand All @@ -24,16 +25,18 @@ A clear and concise description of what you expected to happen.
Please always add screenshots to help explain your problem. Possibly taken from the console output with colors.

**Debug file**
Please always add the debug file to help explain your problem.
[How to download the log](https://github.com/Luligu/matterbridge/blob/main/README.md#how-to-send-the-debug-log-files)
Please always add the debug file to help explain your problem.
[How to download the log](https://github.com/Luligu/matterbridge/blob/main/README.md#how-to-send-the-debug-log-files)

**Plugin (please complete the following information):**
- Version [e.g. 0.0.2]

- Version [e.g. 0.0.2]

**Matterbridge (please complete the following information):**
- Mode [e.g. as a service or docker container]
- Version [e.g. 1.6.6]
- OS: [e.g. where you raun Matterbridge

- Mode [e.g. as a service or docker container]
- Version [e.g. 1.6.6]
- OS: [e.g. where you raun Matterbridge

**Additional context**
Add any other context about the problem here.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.

If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge-hass and sponsoring it.

## [0.0.6] - 2024-12-24

### Added

- [entity]: Added individual entity of domain automation, scene and script.
- [config]: Added individual entity white and black list.

### Changed

- [package]: Update package.
- [package]: Update dependencies.

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

## [0.0.5] - 2024-12-16

### Added
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ Supported devices:

- sensor (with deviceClass temperature/humidity/pressure/illuminance)

Supported individual entities:

- automation

- scene

- script

These entities are exposed as on/off outlets. When the outlet is turned on, it triggers the associated automation, scene, or script. After triggering, the outlet automatically switches back to the off state.

> **Warning:** Since this plugin takes the devices from Home Assistant, it cannot be paired back to Home Assistant. This would lead to duplicate devices! If you run Matterbridge like a Home Assistant Add-on and also use other plugins to expose their devices to Home Assistant, then change to child bridge mode and pair the other plugins to Home Assistant and this plugin wherever you need it.
If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge-hass and sponsoring it.
Expand Down
14 changes: 14 additions & 0 deletions matterbridge-hass.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,20 @@
"type": "string"
}
},
"individualEntityWhiteList": {
"description": "White list of individual entities without associated device to be exposed. It allows to expose scenes, scripts, automations. Enter the entity name.",
"type": "array",
"items": {
"type": "string"
}
},
"individualEntityBlackList": {
"description": "Black list of individual entities without associated device to be exposed. It allows to expose scenes, scripts, automations. Enter the entity name.",
"type": "array",
"items": {
"type": "string"
}
},
"entityBlackList": {
"description": "The entities in the list will not be exposed. Use the entity name.",
"type": "array",
Expand Down
Loading

0 comments on commit 27e042a

Please sign in to comment.