diff --git a/.github/workflows/hacs_check.yml b/.github/workflows/hacs_check.yml index 6aee195..ea6cf6f 100644 --- a/.github/workflows/hacs_check.yml +++ b/.github/workflows/hacs_check.yml @@ -15,4 +15,3 @@ jobs: uses: "hacs/action@main" with: category: "integration" - ignore: "brands" diff --git a/README.md b/README.md index b5a2aa2..f9dbd5b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![GitHub release (latest by date)](https://img.shields.io/github/v/release/Andre0512/speedport?color=green)](https://github.com/Andre0512/speedport/releases/latest) [![GitHub all releases](https://img.shields.io/github/downloads/Andre0512/speedport/total?color=blue&label=total%20downloads)](https://tooomm.github.io/github-release-stats/?username=Andre0512&repository=speedport) -Telekom Speedport Integration for Home Assistant based on [speedport-api](https://github.com/Andre0512/speedport.git) +Telekom Speedport Integration for Home Assistant based on [speedport-api](https://github.com/Andre0512/speedport-api.git) | ⚠️ **Work in progress...** ⚠️ | |------------------------------| diff --git a/custom_components/speedport/config_flow.py b/custom_components/speedport/config_flow.py index 4fa7fdd..0d6ab58 100644 --- a/custom_components/speedport/config_flow.py +++ b/custom_components/speedport/config_flow.py @@ -20,7 +20,7 @@ STEP_USER_DATA_SCHEMA = vol.Schema( { vol.Required("host", default="speedport.ip"): str, - vol.Required("password", default="route89251984"): str, + vol.Required("password"): str, } ) diff --git a/custom_components/speedport/manifest.json b/custom_components/speedport/manifest.json index 1fedd00..1c48694 100644 --- a/custom_components/speedport/manifest.json +++ b/custom_components/speedport/manifest.json @@ -12,7 +12,7 @@ "iot_class": "local_polling", "issue_tracker": "https://github.com/Andre0512/speedport/issues", "requirements": [ - "speedport-api==0.4.7" + "speedport-api==0.4.8" ], - "version": "0.1.2" + "version": "0.1.3" } diff --git a/requirements.txt b/requirements.txt index c949a68..d46e406 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -speedport-api==0.4.7 +speedport-api==0.4.8 homeassistant~=2023.10