From 3b345551d380e2f27b7c68b690599b203b663ad7 Mon Sep 17 00:00:00 2001 From: Webpatrick Date: Wed, 2 Sep 2026 15:52:30 +0200 Subject: [PATCH 1/2] Prepare repository for HACS release - add MIT license - add codeowner in manifest - improve README wording and license section - add GitHub Actions for HACS and Hassfest validation Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/validate.yml | 24 +++++++++++++++++++ LICENSE | 21 ++++++++++++++++ README.md | 4 ++-- .../intergas_local/manifest.json | 2 +- 4 files changed, 48 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/validate.yml create mode 100644 LICENSE diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 0000000..f6ae080 --- /dev/null +++ b/.github/workflows/validate.yml @@ -0,0 +1,24 @@ +name: Validate + +on: + push: + pull_request: + +jobs: + hacs: + name: HACS + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: HACS validation + uses: hacs/action@main + with: + category: integration + + hassfest: + name: Hassfest + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Hassfest validation + uses: home-assistant/actions/hassfest@master diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..51387e5 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Patrick + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index f615d23..576480e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The Intergas Xtend system exposes operational data through a local API on the un ## Important: dedicated Wi‑Fi requirement -For Xtend installations, Home Assistant needs to be connected to the local accespoint of the Xtend using a dedicated Wi‑Fi adapter. +For Xtend installations, Home Assistant needs to be connected to the local access point of the Xtend using a dedicated Wi‑Fi adapter. This is important because the Xtend API is typically reachable only through a dedicated local network, not through the normal home network. @@ -99,4 +99,4 @@ This project is a local, derived implementation based on the original Xtend / In ## License -This project does not currently declare a license in its metadata. Please check the repository contents and downstream usage requirements before distributing or reusing the code outside your own Home Assistant setup. +This project is licensed under the MIT License. See [LICENSE](LICENSE). diff --git a/custom_components/intergas_local/manifest.json b/custom_components/intergas_local/manifest.json index b8323d5..7d730b1 100644 --- a/custom_components/intergas_local/manifest.json +++ b/custom_components/intergas_local/manifest.json @@ -5,7 +5,7 @@ "documentation": "https://github.com/webpatrick/intergas_local", "requirements": [], "dependencies": [], - "codeowners": [], + "codeowners": ["@webpatrick"], "config_flow": true, "iot_class": "local_polling" } \ No newline at end of file From ee826b3148e368ec1822b6900b43001c6bd56b7f Mon Sep 17 00:00:00 2001 From: Webpatrick Date: Wed, 2 Sep 2026 16:02:04 +0200 Subject: [PATCH 2/2] Fix HACS validation metadata - remove deprecated content_type from hacs.json - add issue_tracker to integration manifest Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- custom_components/intergas_local/manifest.json | 1 + hacs.json | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/intergas_local/manifest.json b/custom_components/intergas_local/manifest.json index 7d730b1..e4db27b 100644 --- a/custom_components/intergas_local/manifest.json +++ b/custom_components/intergas_local/manifest.json @@ -3,6 +3,7 @@ "name": "Intergas Local", "version": "1.0.0", "documentation": "https://github.com/webpatrick/intergas_local", + "issue_tracker": "https://github.com/webpatrick/intergas_local/issues", "requirements": [], "dependencies": [], "codeowners": ["@webpatrick"], diff --git a/hacs.json b/hacs.json index dc74cf2..70886b1 100644 --- a/hacs.json +++ b/hacs.json @@ -1,6 +1,5 @@ { "name": "Intergas Local", - "content_type": "integration", "homeassistant": "2024.1.0", "render_readme": true }