Skip to content

Commit

Permalink
Merge branch 'amosyuen:main' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
misa1515 authored Jun 24, 2024
2 parents 7ca2e54 + 387d018 commit 65b5451
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 22 deletions.
16 changes: 0 additions & 16 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Feature request
description: Suggest an idea for this project
body:
- type: markdown
attributes:
value: |
This issue form is for requestin feature requests only!
> [!CAUTION]
> This integration is in MAINTENANCE MODE.
>
> I no longer have a deco unit so I cannot test this integration properly.
> I will not implement any new feature requests, you are still free to request them and see if anybody else wants to implement them.
>
> If anybody is interested in taking over this repo and maintaining it, please let me know.
- type: textarea
validations:
required: true
attributes:
label: Feature Request
description: >-
A clear and concise description of the problem and what you want to happen.
- type: textarea
validations:
required: true
attributes:
label: Alternatives
description: >-
A clear and concise description of any alternative solutions or features you've considered.
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ body:
attributes:
value: |
This issue form is for reporting bugs only!
> [!CAUTION]
> This integration is in MAINTENANCE MODE.
>
> I no longer have a deco unit so I cannot test this integration properly.
> I will only implement simple critical fixes required to keep the integration running.
>
> If anybody is interested in taking over this repo and maintaining it, please let me know.
- type: textarea
validations:
required: true
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@

[![Community Forum][forum-shield]][forum]

> [!CAUTION]
> This integration is in MAINTENANCE MODE.
>
> I no longer have a deco unit so I cannot test this integration properly. I will not implement any new feature requests and will only implement simple fixes required by Home Assistant.
>
> If anybody is interested in taking over this repo and maintaining it, please let me know.
## Functionality

This integration is a local polling integration that logs into the admin web UI for TP-Link Deco routers. Currently the only feature implemented is device trackers for active devices.
Expand Down
4 changes: 2 additions & 2 deletions custom_components/tplink_deco/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry):
deco_coordinator = data[COORDINATOR_DECOS_KEY]

for platform in PLATFORMS:
hass.async_add_job(
hass.config_entries.async_forward_entry_setup(config_entry, platform)
config_entry.async_create_task(
hass, hass.config_entries.async_forward_entry_setup(config_entry, platform)
)

async def async_reboot_deco(service: ServiceCall) -> None:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/tplink_deco/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"iot_class": "local_polling",
"issue_tracker": "https://github.com/amosyuen/ha-tplink-deco/issues",
"requirements": ["pycryptodome>=3.12.0"],
"version": "3.6.0"
"version": "3.6.2"
}
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ colorlog==6.8.2
flake8==6.1.0
homeassistant==2023.6.0
pip>=21.0,<23.2
pre-commit==3.7.0
reorder-python-imports==3.12.0
ruff==0.4.1
pre-commit==3.7.1
reorder-python-imports==3.13.0
ruff==0.4.10

0 comments on commit 65b5451

Please sign in to comment.