Skip to content

Commit 731016f

Browse files
committed
Restructure for HACS compatibility
- Move integration to custom_components/ directory - Add issue_tracker to manifest.json - Add hacs.json configuration - Update README with HACS installation instructions - Update all file paths and imports
1 parent 17cdd76 commit 731016f

File tree

117 files changed

+84
-48
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+84
-48
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717

1818
- name: Create integration zip
1919
run: |
20-
cd unifi_network
21-
zip -r ../unifi_network.zip . -x "__pycache__/*" "*/__pycache__/*" "*.pyc"
22-
cd ..
20+
cd custom_components/unifi_network
21+
zip -r ../../unifi_network.zip . -x "__pycache__/*" "*/__pycache__/*" "*.pyc"
22+
cd ../..
2323
2424
- name: Upload release asset
2525
env:

README.md

Lines changed: 25 additions & 4 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.

unifi_network/api_client/api/about_application/__init__.py renamed to custom_components/unifi_network/api_client/api/about_application/__init__.py

File renamed without changes.

unifi_network/api_client/api/about_application/get_info.py renamed to custom_components/unifi_network/api_client/api/about_application/get_info.py

File renamed without changes.

unifi_network/api_client/api/clients/__init__.py renamed to custom_components/unifi_network/api_client/api/clients/__init__.py

File renamed without changes.

unifi_network/api_client/api/clients/execute_connected_client_action.py renamed to custom_components/unifi_network/api_client/api/clients/execute_connected_client_action.py

File renamed without changes.

unifi_network/api_client/api/clients/get_connected_client_details.py renamed to custom_components/unifi_network/api_client/api/clients/get_connected_client_details.py

File renamed without changes.

0 commit comments

Comments
 (0)