1
0

Compare commits

...

26 Commits

9 changed files with 25 additions and 16 deletions

View File

@@ -16,7 +16,7 @@ jobs:
continue-on-error: true
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v4.7.1
- uses: actions/setup-python@v4.8.0
with:
python-version: '3.11'
- run: pip install -r script/requirements.txt

View File

@@ -32,7 +32,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.0.0
- name: Build and Push
uses: docker/build-push-action@v5.0.0
uses: docker/build-push-action@v5.1.0
with:
context: .
file: .devcontainer/Dockerfile

View File

@@ -21,7 +21,7 @@ jobs:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4.1.1
- name: 🛠 Setup Python
uses: actions/setup-python@v4.7.1
uses: actions/setup-python@v4.8.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.13.2
uses: frenck/action-addon-linter@v2.15.0
with:
path: "./${{ matrix.channels.folder }}"

View File

@@ -1,6 +1,8 @@
## 2023.11.5
## 2024.2.2
- Voice Assistant improvements [esphome#5827](https://github.com/esphome/esphome/pull/5827) by [@jesserockz](https://github.com/jesserockz)
- Fix missing include in remote_base [esphome#5843](https://github.com/esphome/esphome/pull/5843) by [@jesserockz](https://github.com/jesserockz)
- Add 'voice_assistant.connected' condition [esphome#5845](https://github.com/esphome/esphome/pull/5845) by [@jesserockz](https://github.com/jesserockz)
- CSE7766: Fix energy calculation [esphome#6286](https://github.com/esphome/esphome/pull/6286) by [@puuu](https://github.com/puuu)
- handling with the negative temperature in the sensor tmp102 [esphome#6316](https://github.com/esphome/esphome/pull/6316) by [@FlyingFeng2021](https://github.com/FlyingFeng2021)
- fix tmp102 negative calculation [esphome#6320](https://github.com/esphome/esphome/pull/6320) by [@ssieb](https://github.com/ssieb)
- auto load output for now [esphome#6309](https://github.com/esphome/esphome/pull/6309) by [@ssieb](https://github.com/ssieb)
- Add wake word phrase to voice assistant start command [esphome#6290](https://github.com/esphome/esphome/pull/6290) by [@jesserockz](https://github.com/jesserockz)

View File

@@ -30,8 +30,9 @@ schema:
backup_exclude:
- '*/*/'
init: false
startup: services
name: ESPHome (beta)
version: 2023.11.5
version: 2024.2.2
slug: esphome-beta
description: Beta version of ESPHome add-on
image: ghcr.io/esphome/esphome-hassio

View File

@@ -31,6 +31,7 @@ schema:
backup_exclude:
- '*/*/'
init: false
startup: services
name: ESPHome (dev)
version: dev
slug: esphome-dev

View File

@@ -1,6 +1,8 @@
## 2023.11.5
## 2024.2.2
- Voice Assistant improvements [esphome#5827](https://github.com/esphome/esphome/pull/5827) by [@jesserockz](https://github.com/jesserockz)
- Fix missing include in remote_base [esphome#5843](https://github.com/esphome/esphome/pull/5843) by [@jesserockz](https://github.com/jesserockz)
- Add 'voice_assistant.connected' condition [esphome#5845](https://github.com/esphome/esphome/pull/5845) by [@jesserockz](https://github.com/jesserockz)
- CSE7766: Fix energy calculation [esphome#6286](https://github.com/esphome/esphome/pull/6286) by [@puuu](https://github.com/puuu)
- handling with the negative temperature in the sensor tmp102 [esphome#6316](https://github.com/esphome/esphome/pull/6316) by [@FlyingFeng2021](https://github.com/FlyingFeng2021)
- fix tmp102 negative calculation [esphome#6320](https://github.com/esphome/esphome/pull/6320) by [@ssieb](https://github.com/ssieb)
- auto load output for now [esphome#6309](https://github.com/esphome/esphome/pull/6309) by [@ssieb](https://github.com/ssieb)
- Add wake word phrase to voice assistant start command [esphome#6290](https://github.com/esphome/esphome/pull/6290) by [@jesserockz](https://github.com/jesserockz)

View File

@@ -30,8 +30,9 @@ schema:
backup_exclude:
- '*/*/'
init: false
startup: services
name: ESPHome
version: 2023.11.5
version: 2024.2.2
slug: esphome
description: ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices
image: ghcr.io/esphome/esphome-hassio

View File

@@ -39,6 +39,8 @@ base: &base
- "*/*/"
# Disable docker init for s6
init: false
# Make sure dashboard is available for core
startup: services
esphome-dev:
<<: *base
@@ -68,7 +70,7 @@ esphome-beta:
<<: *base
directory: esphome-beta
name: ESPHome (beta)
version: '2023.11.5' # BETA
version: '2024.2.2' # BETA
slug: esphome-beta
description: "Beta version of ESPHome add-on"
url: https://beta.esphome.io/
@@ -82,7 +84,7 @@ esphome-stable:
<<: *base
directory: esphome
name: ESPHome
version: '2023.11.5' # STABLE
version: '2024.2.2' # STABLE
slug: esphome
description: "ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices"
image: ghcr.io/esphome/esphome-hassio