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..e4db27b 100644 --- a/custom_components/intergas_local/manifest.json +++ b/custom_components/intergas_local/manifest.json @@ -3,9 +3,10 @@ "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": [], + "codeowners": ["@webpatrick"], "config_flow": true, "iot_class": "local_polling" } \ No newline at end of file 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 }