-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
199 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: dewenni | ||
custom: https://paypal.me/toensjost |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Create Release | ||
|
||
# 1 Erstellt ein Release bei einem Push mit Tag | ||
# 2 liest die changeNew.md und nutzt diese als Beschreibung für das Release | ||
# 3 upload aller Files aus ./release/ als Assets im Release | ||
|
||
on: | ||
workflow_dispatch: # Ermöglicht das manuelle Anstoßen des Workflows | ||
push: | ||
tags: | ||
- 'v*.*.*' | ||
|
||
jobs: | ||
create_release: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Create release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref_name }} | ||
run: | | ||
# Erstelle die Release-Dateien-Variable | ||
files=$(ls ./release/*) | ||
# Erstelle das Release und lade die Assets hoch | ||
gh release create "$tag" $files \ | ||
--repo="$GITHUB_REPOSITORY" \ | ||
--title="${tag}" \ | ||
-F changeNew.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# v4.1.2 | ||
|
||
## what's new | ||
|
||
There are some changes to MQTT Discovery for Home Assistant | ||
|
||
## changelog | ||
|
||
- fixes the behavior that the devices are "not available" in Home Assistant, after Home Assistant has restarted. #108 | ||
- change control for "summer threshold" from Slider to DropDown | ||
- add support to control "warm water pump circulation" at Home Assistant #110 | ||
- add restart button in Home Assistant |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
|
||
void mqttDiscoverySetup(); | ||
void mqttDiscoveryCyclic(); | ||
void mqttDiscoverySendConfig(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.