Compare commits
15 Commits
2023.3.0b6
...
2023.4.3
2
.github/workflows/bump-version.yml
vendored
2
.github/workflows/bump-version.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3.3.0
|
- uses: actions/checkout@v3.5.2
|
||||||
- uses: actions/setup-python@v4
|
- uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|||||||
4
.github/workflows/devcontainer-build.yaml
vendored
4
.github/workflows/devcontainer-build.yaml
vendored
@@ -19,7 +19,7 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3.3.0
|
- uses: actions/checkout@v3.5.2
|
||||||
- name: Log in to the GitHub container registry
|
- name: Log in to the GitHub container registry
|
||||||
uses: docker/login-action@v2.1.0
|
uses: docker/login-action@v2.1.0
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
@@ -30,7 +30,7 @@ jobs:
|
|||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v2.1.0
|
uses: docker/setup-qemu-action@v2.1.0
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v2.4.1
|
uses: docker/setup-buildx-action@v2.5.0
|
||||||
- name: Build and Push
|
- name: Build and Push
|
||||||
uses: docker/build-push-action@v4.0.0
|
uses: docker/build-push-action@v4.0.0
|
||||||
with:
|
with:
|
||||||
|
|||||||
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
|||||||
channel: dev
|
channel: dev
|
||||||
steps:
|
steps:
|
||||||
- name: ⤵️ Check out code from GitHub
|
- name: ⤵️ Check out code from GitHub
|
||||||
uses: actions/checkout@v3.3.0
|
uses: actions/checkout@v3.5.2
|
||||||
- name: 🛠 Setup Python
|
- name: 🛠 Setup Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
@@ -29,6 +29,6 @@ jobs:
|
|||||||
- name: 🛠 Generate files from template
|
- name: 🛠 Generate files from template
|
||||||
run: python script/generate.py ${{ matrix.channels.channel }}
|
run: python script/generate.py ${{ matrix.channels.channel }}
|
||||||
- name: 🚀 Run Home Assistant Add-on Lint on ${{ matrix.channels.channel }}
|
- name: 🚀 Run Home Assistant Add-on Lint on ${{ matrix.channels.channel }}
|
||||||
uses: frenck/action-addon-linter@v2.11.0
|
uses: frenck/action-addon-linter@v2.12.0
|
||||||
with:
|
with:
|
||||||
path: "./${{ matrix.channels.folder }}"
|
path: "./${{ matrix.channels.folder }}"
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
## 2023.3.0b6
|
## 2023.4.3
|
||||||
|
|
||||||
- fixing `shrink` and `extend` functions of the displaybuffer's Rect class [esphome#4565](https://github.com/esphome/esphome/pull/4565) by [@nielsnl68](https://github.com/nielsnl68)
|
- Fix sprinkler switch restore_mode [esphome#4756](https://github.com/esphome/esphome/pull/4756) by [@kbx81](https://github.com/kbx81)
|
||||||
|
- Fix i2s media player on devices with no internal DAC [esphome#4768](https://github.com/esphome/esphome/pull/4768) by [@jesserockz](https://github.com/jesserockz)
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
# Home Assistant Community Add-on: ESPHome
|
# ESPHome Add-on
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
The installation of this add-on is pretty straightforward and not different in comparison to installing any other Home Assistant add-on.
|
The installation of this add-on is pretty straightforward and not different in comparison to installing any other Home Assistant add-on.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# ESPHome Home Assistant Add-On
|
# ESPHome Add-On
|
||||||
|
|
||||||
[](https://esphome.io/)
|
[](https://esphome.io/)
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ backup_exclude:
|
|||||||
- '*/*/'
|
- '*/*/'
|
||||||
init: false
|
init: false
|
||||||
name: ESPHome (beta)
|
name: ESPHome (beta)
|
||||||
version: 2023.3.0b6
|
version: 2023.4.3
|
||||||
slug: esphome-beta
|
slug: esphome-beta
|
||||||
description: Beta version of ESPHome add-on
|
description: Beta version of ESPHome add-on
|
||||||
image: ghcr.io/esphome/esphome-hassio
|
image: ghcr.io/esphome/esphome-hassio
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# ESPHome Home Assistant Add-On
|
# ESPHome Add-On
|
||||||
|
|
||||||
[](https://esphome.io/)
|
[](https://esphome.io/)
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
## 2023.2.4
|
## 2023.4.3
|
||||||
|
|
||||||
- BL0939 state_class set for energy sensors [esphome#4463](https://github.com/esphome/esphome/pull/4463) by [@konsulten](https://github.com/konsulten)
|
- Fix sprinkler switch restore_mode [esphome#4756](https://github.com/esphome/esphome/pull/4756) by [@kbx81](https://github.com/kbx81)
|
||||||
- fix wiegand tag parity [esphome#4476](https://github.com/esphome/esphome/pull/4476) by [@ssieb](https://github.com/ssieb)
|
- Fix i2s media player on devices with no internal DAC [esphome#4768](https://github.com/esphome/esphome/pull/4768) by [@jesserockz](https://github.com/jesserockz)
|
||||||
- Fix multiple remote_receivers with triggers [esphome#4477](https://github.com/esphome/esphome/pull/4477) by [@jesserockz](https://github.com/jesserockz)
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
# Home Assistant Community Add-on: ESPHome
|
# ESPHome Add-on
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
The installation of this add-on is pretty straightforward and not different in comparison to installing any other Home Assistant add-on.
|
The installation of this add-on is pretty straightforward and not different in comparison to installing any other Home Assistant add-on.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# ESPHome Home Assistant Add-On
|
# ESPHome Add-On
|
||||||
|
|
||||||
[](https://esphome.io/)
|
[](https://esphome.io/)
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ backup_exclude:
|
|||||||
- '*/*/'
|
- '*/*/'
|
||||||
init: false
|
init: false
|
||||||
name: ESPHome
|
name: ESPHome
|
||||||
version: 2023.2.4
|
version: 2023.4.3
|
||||||
slug: esphome
|
slug: esphome
|
||||||
description: ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices
|
description: ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices
|
||||||
image: ghcr.io/esphome/esphome-hassio
|
image: ghcr.io/esphome/esphome-hassio
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
See https://esphome.io/changelog/index.html
|
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
# Home Assistant Community Add-on: ESPHome
|
# ESPHome Add-on
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
The installation of this add-on is pretty straightforward and not different in comparison to installing any other Home Assistant add-on.
|
The installation of this add-on is pretty straightforward and not different in comparison to installing any other Home Assistant add-on.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# ESPHome Home Assistant Add-On
|
# ESPHome Add-On
|
||||||
|
|
||||||
[](https://esphome.io/)
|
[](https://esphome.io/)
|
||||||
|
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ esphome-beta:
|
|||||||
<<: *base
|
<<: *base
|
||||||
directory: esphome-beta
|
directory: esphome-beta
|
||||||
name: ESPHome (beta)
|
name: ESPHome (beta)
|
||||||
version: '2023.3.0b6' # BETA
|
version: '2023.4.3' # BETA
|
||||||
slug: esphome-beta
|
slug: esphome-beta
|
||||||
description: "Beta version of ESPHome add-on"
|
description: "Beta version of ESPHome add-on"
|
||||||
url: https://beta.esphome.io/
|
url: https://beta.esphome.io/
|
||||||
@@ -84,13 +84,12 @@ esphome-stable:
|
|||||||
<<: *base
|
<<: *base
|
||||||
directory: esphome
|
directory: esphome
|
||||||
name: ESPHome
|
name: ESPHome
|
||||||
version: '2023.2.4' # STABLE
|
version: '2023.4.3' # STABLE
|
||||||
slug: esphome
|
slug: esphome
|
||||||
description: "ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices"
|
description: "ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices"
|
||||||
image: ghcr.io/esphome/esphome-hassio
|
image: ghcr.io/esphome/esphome-hassio
|
||||||
|
|
||||||
copy_files:
|
copy_files:
|
||||||
CHANGELOG.md:
|
|
||||||
DOCS.md:
|
DOCS.md:
|
||||||
icon.png:
|
icon.png:
|
||||||
logo.png:
|
logo.png:
|
||||||
|
|||||||
Reference in New Issue
Block a user