Compare commits
77 Commits
2024.8.1
...
update-nam
4
.github/workflows/bump-version.yml
vendored
4
.github/workflows/bump-version.yml
vendored
@@ -15,8 +15,8 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: true
|
||||
steps:
|
||||
- uses: actions/checkout@v4.1.7
|
||||
- uses: actions/setup-python@v5.1.1
|
||||
- uses: actions/checkout@v4.2.1
|
||||
- uses: actions/setup-python@v5.2.0
|
||||
with:
|
||||
python-version: "3.11"
|
||||
- run: pip install -r script/requirements.txt
|
||||
|
||||
10
.github/workflows/devcontainer-build.yaml
vendored
10
.github/workflows/devcontainer-build.yaml
vendored
@@ -19,20 +19,20 @@ jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4.1.7
|
||||
- uses: actions/checkout@v4.2.1
|
||||
- name: Log in to the GitHub container registry
|
||||
uses: docker/login-action@v3.2.0
|
||||
uses: docker/login-action@v3.3.0
|
||||
if: github.event_name != 'pull_request'
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.repository_owner }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3.1.0
|
||||
uses: docker/setup-qemu-action@v3.2.0
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3.4.0
|
||||
uses: docker/setup-buildx-action@v3.7.1
|
||||
- name: Build and Push
|
||||
uses: docker/build-push-action@v6.4.1
|
||||
uses: docker/build-push-action@v6.9.0
|
||||
with:
|
||||
context: .
|
||||
file: .devcontainer/Dockerfile
|
||||
|
||||
6
.github/workflows/lint.yml
vendored
6
.github/workflows/lint.yml
vendored
@@ -19,9 +19,9 @@ jobs:
|
||||
channel: dev
|
||||
steps:
|
||||
- name: ⤵️ Check out code from GitHub
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.1
|
||||
- name: 🛠 Setup Python
|
||||
uses: actions/setup-python@v5.1.1
|
||||
uses: actions/setup-python@v5.2.0
|
||||
with:
|
||||
python-version: '3.11'
|
||||
- name: 🛠 Install dependencies
|
||||
@@ -29,6 +29,6 @@ jobs:
|
||||
- name: 🛠 Generate files from template
|
||||
run: python script/generate.py ${{ matrix.channels.channel }}
|
||||
- name: 🚀 Run Home Assistant Add-on Lint on ${{ matrix.channels.channel }}
|
||||
uses: frenck/action-addon-linter@v2.15.1
|
||||
uses: frenck/action-addon-linter@v2.17.1
|
||||
with:
|
||||
path: "./${{ matrix.channels.folder }}"
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
## 2024.8.1
|
||||
## 2024.10.2
|
||||
|
||||
- [lvgl] Bug fixes [esphome#7338](https://github.com/esphome/esphome/pull/7338) by [@clydebarrow](https://github.com/clydebarrow)
|
||||
- [core] Clean build if the loaded integrations changed [esphome#7344](https://github.com/esphome/esphome/pull/7344) by [@clydebarrow](https://github.com/clydebarrow)
|
||||
- [lvgl] Fix race condition involving numbers, switches etc. [esphome#7345](https://github.com/esphome/esphome/pull/7345) by [@clydebarrow](https://github.com/clydebarrow)
|
||||
- [api] Fix sending the ``once`` flag on ha entity subscription [esphome#7357](https://github.com/esphome/esphome/pull/7357) by [@jesserockz](https://github.com/jesserockz)
|
||||
- Humanized the missing MQTT log topic error message [esphome#7634](https://github.com/esphome/esphome/pull/7634) by [@solarkennedy](https://github.com/solarkennedy)
|
||||
- [lvgl] Some properties were not templatable (Bugfix) [esphome#7655](https://github.com/esphome/esphome/pull/7655) by [@clydebarrow](https://github.com/clydebarrow)
|
||||
- [voice_assistant] Bugfix: Fix crash on start [esphome#7662](https://github.com/esphome/esphome/pull/7662) by [@kahrendt](https://github.com/kahrendt)
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ backup_exclude:
|
||||
init: false
|
||||
startup: services
|
||||
name: ESPHome (beta)
|
||||
version: 2024.8.1
|
||||
version: 2024.10.2
|
||||
slug: esphome-beta
|
||||
description: Beta version of ESPHome add-on
|
||||
image: ghcr.io/esphome/esphome-hassio
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# ESPHome Dev Add-On
|
||||
# ESPHome Device Compiler (Development branch)
|
||||
|
||||
[![ESPHome logo][logo]][website]
|
||||
|
||||
@@ -7,13 +7,13 @@
|
||||
|
||||
## About
|
||||
|
||||
This add-on allows you to manage and program your ESP8266 and ESP32 based microcontrollers
|
||||
directly through Home Assistant **with no programming experience required**. All you need to do
|
||||
is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
||||
This add-on allows you to write configurations and turn your microcontrollers
|
||||
into smart home devices directly through Home Assistant **with no programming experience required**.
|
||||
All you need to do is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
||||
handled by ESPHome.
|
||||
|
||||
<p align="center">
|
||||
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
||||
<img title="ESPHome Device Compiler screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
||||
</p>
|
||||
|
||||
[View the ESPHome documentation][website]
|
||||
|
||||
@@ -32,10 +32,10 @@ backup_exclude:
|
||||
- '*/*/'
|
||||
init: false
|
||||
startup: services
|
||||
name: ESPHome (dev)
|
||||
version: 2024.9.0-dev20240827
|
||||
name: ESPHome Device Compiler (dev)
|
||||
version: 2024.11.0-dev20241024
|
||||
slug: esphome-dev
|
||||
description: Development version of ESPHome add-on
|
||||
description: Development version of ESPHome Device Compiler
|
||||
image: ghcr.io/esphome/esphome-hassio
|
||||
stage: experimental
|
||||
advanced: true
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
## 2024.8.1
|
||||
## 2024.10.2
|
||||
|
||||
- [lvgl] Bug fixes [esphome#7338](https://github.com/esphome/esphome/pull/7338) by [@clydebarrow](https://github.com/clydebarrow)
|
||||
- [core] Clean build if the loaded integrations changed [esphome#7344](https://github.com/esphome/esphome/pull/7344) by [@clydebarrow](https://github.com/clydebarrow)
|
||||
- [lvgl] Fix race condition involving numbers, switches etc. [esphome#7345](https://github.com/esphome/esphome/pull/7345) by [@clydebarrow](https://github.com/clydebarrow)
|
||||
- [api] Fix sending the ``once`` flag on ha entity subscription [esphome#7357](https://github.com/esphome/esphome/pull/7357) by [@jesserockz](https://github.com/jesserockz)
|
||||
- Humanized the missing MQTT log topic error message [esphome#7634](https://github.com/esphome/esphome/pull/7634) by [@solarkennedy](https://github.com/solarkennedy)
|
||||
- [lvgl] Some properties were not templatable (Bugfix) [esphome#7655](https://github.com/esphome/esphome/pull/7655) by [@clydebarrow](https://github.com/clydebarrow)
|
||||
- [voice_assistant] Bugfix: Fix crash on start [esphome#7662](https://github.com/esphome/esphome/pull/7662) by [@kahrendt](https://github.com/kahrendt)
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ backup_exclude:
|
||||
init: false
|
||||
startup: services
|
||||
name: ESPHome
|
||||
version: 2024.8.1
|
||||
version: 2024.10.2
|
||||
slug: esphome
|
||||
description: ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices
|
||||
image: ghcr.io/esphome/esphome-hassio
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# ESPHome Add-On
|
||||
# ESPHome Device Compiler
|
||||
|
||||
[![ESPHome logo][logo]][website]
|
||||
|
||||
@@ -7,13 +7,13 @@
|
||||
|
||||
## About
|
||||
|
||||
This add-on allows you to manage and program your ESP8266 and ESP32 based microcontrollers
|
||||
directly through Home Assistant **with no programming experience required**. All you need to do
|
||||
is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
||||
This add-on allows you to write configurations and turn your microcontrollers
|
||||
into smart home devices directly through Home Assistant **with no programming experience required**.
|
||||
All you need to do is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
||||
handled by ESPHome.
|
||||
|
||||
<p align="center">
|
||||
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/screenshot.png" width="700px"></img>
|
||||
<img title="ESPHome Device Compiler screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/screenshot.png" width="700px"></img>
|
||||
</p>
|
||||
|
||||
[View the ESPHome documentation][website]
|
||||
|
||||
@@ -45,10 +45,10 @@ base: &base
|
||||
esphome-dev:
|
||||
<<: *base
|
||||
directory: esphome-dev
|
||||
name: ESPHome (dev)
|
||||
version: "2024.9.0-dev20240827" # DEV
|
||||
name: ESPHome Device Compiler (dev)
|
||||
version: "2024.11.0-dev20241024" # DEV
|
||||
slug: esphome-dev
|
||||
description: "Development version of ESPHome add-on"
|
||||
description: "Development version of ESPHome Device Compiler"
|
||||
url: https://next.esphome.io/
|
||||
image: ghcr.io/esphome/esphome-hassio
|
||||
stage: experimental
|
||||
@@ -69,10 +69,10 @@ esphome-dev:
|
||||
esphome-beta:
|
||||
<<: *base
|
||||
directory: esphome-beta
|
||||
name: ESPHome (beta)
|
||||
version: "2024.8.1" # BETA
|
||||
name: ESPHome Device Compiler (beta)
|
||||
version: "2024.10.2" # BETA
|
||||
slug: esphome-beta
|
||||
description: "Beta version of ESPHome add-on"
|
||||
description: "Beta version of ESPHome Device Compiler"
|
||||
url: https://beta.esphome.io/
|
||||
image: ghcr.io/esphome/esphome-hassio
|
||||
stage: experimental
|
||||
@@ -83,10 +83,10 @@ esphome-beta:
|
||||
esphome-stable:
|
||||
<<: *base
|
||||
directory: esphome
|
||||
name: ESPHome
|
||||
version: "2024.8.1" # STABLE
|
||||
name: ESPHome Device Compiler
|
||||
version: "2024.10.2" # STABLE
|
||||
slug: esphome
|
||||
description: "ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices"
|
||||
description: "Build your own smart home devices using ESPHome, no programming experience required."
|
||||
image: ghcr.io/esphome/esphome-hassio
|
||||
|
||||
copy_files:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# ESPHome Beta Add-On
|
||||
# ESPHome Device Compiler Beta
|
||||
|
||||
[![ESPHome logo][logo]][website]
|
||||
|
||||
@@ -7,13 +7,13 @@
|
||||
|
||||
## About
|
||||
|
||||
This add-on allows you to manage and program your ESP8266 and ESP32 based microcontrollers
|
||||
directly through Home Assistant **with no programming experience required**. All you need to do
|
||||
is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
||||
This add-on allows you to write configurations and turn your microcontrollers
|
||||
into smart home devices directly through Home Assistant **with no programming experience required**.
|
||||
All you need to do is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
||||
handled by ESPHome.
|
||||
|
||||
<p align="center">
|
||||
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/screenshot.png" width="700px"></img>
|
||||
<img title="ESPHome Device Compiler screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/screenshot.png" width="700px"></img>
|
||||
</p>
|
||||
|
||||
[View the ESPHome documentation][website]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# ESPHome Dev Add-On
|
||||
# ESPHome Device Compiler (Development branch)
|
||||
|
||||
[![ESPHome logo][logo]][website]
|
||||
|
||||
@@ -7,13 +7,13 @@
|
||||
|
||||
## About
|
||||
|
||||
This add-on allows you to manage and program your ESP8266 and ESP32 based microcontrollers
|
||||
directly through Home Assistant **with no programming experience required**. All you need to do
|
||||
is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
||||
This add-on allows you to write configurations and turn your microcontrollers
|
||||
into smart home devices directly through Home Assistant **with no programming experience required**.
|
||||
All you need to do is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
||||
handled by ESPHome.
|
||||
|
||||
<p align="center">
|
||||
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
||||
<img title="ESPHome Device Compiler screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
||||
</p>
|
||||
|
||||
[View the ESPHome documentation][website]
|
||||
|
||||
Reference in New Issue
Block a user