Compare commits
26 Commits
@@ -3,7 +3,12 @@ FROM ghcr.io/home-assistant/devcontainer:addons
|
|||||||
RUN \
|
RUN \
|
||||||
apt-get update \
|
apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends \
|
&& apt-get install -y --no-install-recommends \
|
||||||
python3-pip
|
python3-pip \
|
||||||
|
python3-venv
|
||||||
|
|
||||||
|
ENV VIRTUAL_ENV=/opt/venv
|
||||||
|
RUN python3 -m venv $VIRTUAL_ENV
|
||||||
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
||||||
|
|
||||||
COPY script/requirements.txt /
|
COPY script/requirements.txt /
|
||||||
|
|
||||||
|
|||||||
@@ -14,23 +14,28 @@
|
|||||||
"containerEnv": {
|
"containerEnv": {
|
||||||
"WORKSPACE_DIRECTORY": "${containerWorkspaceFolder}"
|
"WORKSPACE_DIRECTORY": "${containerWorkspaceFolder}"
|
||||||
},
|
},
|
||||||
"extensions": [
|
"customizations": {
|
||||||
"timonwong.shellcheck",
|
"vscode": {
|
||||||
"esbenp.prettier-vscode"
|
"extensions": [
|
||||||
],
|
"timonwong.shellcheck",
|
||||||
"mounts": [
|
"esbenp.prettier-vscode",
|
||||||
"type=volume,target=/var/lib/docker"
|
"ms-python.python"
|
||||||
],
|
],
|
||||||
"settings": {
|
"mounts": [
|
||||||
"terminal.integrated.profiles.linux": {
|
"type=volume,target=/var/lib/docker"
|
||||||
"zsh": {
|
],
|
||||||
"path": "/usr/bin/zsh"
|
"settings": {
|
||||||
|
"terminal.integrated.profiles.linux": {
|
||||||
|
"zsh": {
|
||||||
|
"path": "/usr/bin/zsh"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"terminal.integrated.defaultProfile.linux": "zsh",
|
||||||
|
"editor.formatOnPaste": false,
|
||||||
|
"editor.formatOnSave": true,
|
||||||
|
"editor.formatOnType": true,
|
||||||
|
"files.trimTrailingWhitespace": true
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"terminal.integrated.defaultProfile.linux": "zsh",
|
|
||||||
"editor.formatOnPaste": false,
|
|
||||||
"editor.formatOnSave": true,
|
|
||||||
"editor.formatOnType": true,
|
|
||||||
"files.trimTrailingWhitespace": true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
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.5.3
|
- uses: actions/checkout@v4.0.0
|
||||||
- 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.5.3
|
- uses: actions/checkout@v4.0.0
|
||||||
- name: Log in to the GitHub container registry
|
- name: Log in to the GitHub container registry
|
||||||
uses: docker/login-action@v2.2.0
|
uses: docker/login-action@v2.2.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.2.0
|
uses: docker/setup-qemu-action@v2.2.0
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v2.7.0
|
uses: docker/setup-buildx-action@v2.10.0
|
||||||
- name: Build and Push
|
- name: Build and Push
|
||||||
uses: docker/build-push-action@v4.1.1
|
uses: docker/build-push-action@v4.1.1
|
||||||
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.5.3
|
uses: actions/checkout@v4.0.0
|
||||||
- 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.13.1
|
uses: frenck/action-addon-linter@v2.13.2
|
||||||
with:
|
with:
|
||||||
path: "./${{ matrix.channels.folder }}"
|
path: "./${{ matrix.channels.folder }}"
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
## 2023.6.5
|
## 2023.9.2
|
||||||
|
|
||||||
- Fix bulk and single Bluetooth parser coexistence [esphome#5073](https://github.com/esphome/esphome/pull/5073) by [@bdraco](https://github.com/bdraco)
|
- SPI fixes for buggy components [esphome#5446](https://github.com/esphome/esphome/pull/5446) by [@clydebarrow](https://github.com/clydebarrow)
|
||||||
- binary_sensor: Validate max_length for on_click/on_double_click [esphome#5068](https://github.com/esphome/esphome/pull/5068) by [@kpfleming](https://github.com/kpfleming)
|
- Fix an Issue with IR Remote Climate and Whirlpool protocol toggle [esphome#5447](https://github.com/esphome/esphome/pull/5447) by [@the-mentor](https://github.com/the-mentor)
|
||||||
|
- Fix SPI support for second bus on 2023.9.1 [esphome#5456](https://github.com/esphome/esphome/pull/5456) by [@angelnu](https://github.com/angelnu)
|
||||||
|
- Ensure esphome directory exists on addon startup [esphome#5464](https://github.com/esphome/esphome/pull/5464) by [@jesserockz](https://github.com/jesserockz)
|
||||||
|
|
||||||
|
|||||||
@@ -26,13 +26,12 @@ schema:
|
|||||||
ssl: bool?
|
ssl: bool?
|
||||||
certfile: str?
|
certfile: str?
|
||||||
keyfile: str?
|
keyfile: str?
|
||||||
relative_url: str?
|
|
||||||
leave_front_door_open: bool?
|
leave_front_door_open: bool?
|
||||||
backup_exclude:
|
backup_exclude:
|
||||||
- '*/*/'
|
- '*/*/'
|
||||||
init: false
|
init: false
|
||||||
name: ESPHome (beta)
|
name: ESPHome (beta)
|
||||||
version: 2023.6.5
|
version: 2023.9.2
|
||||||
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
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 69 KiB |
@@ -27,7 +27,6 @@ schema:
|
|||||||
ssl: bool?
|
ssl: bool?
|
||||||
certfile: str?
|
certfile: str?
|
||||||
keyfile: str?
|
keyfile: str?
|
||||||
relative_url: str?
|
|
||||||
leave_front_door_open: bool?
|
leave_front_door_open: bool?
|
||||||
backup_exclude:
|
backup_exclude:
|
||||||
- '*/*/'
|
- '*/*/'
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
## 2023.6.5
|
## 2023.9.2
|
||||||
|
|
||||||
- Fix bulk and single Bluetooth parser coexistence [esphome#5073](https://github.com/esphome/esphome/pull/5073) by [@bdraco](https://github.com/bdraco)
|
- SPI fixes for buggy components [esphome#5446](https://github.com/esphome/esphome/pull/5446) by [@clydebarrow](https://github.com/clydebarrow)
|
||||||
- binary_sensor: Validate max_length for on_click/on_double_click [esphome#5068](https://github.com/esphome/esphome/pull/5068) by [@kpfleming](https://github.com/kpfleming)
|
- Fix an Issue with IR Remote Climate and Whirlpool protocol toggle [esphome#5447](https://github.com/esphome/esphome/pull/5447) by [@the-mentor](https://github.com/the-mentor)
|
||||||
|
- Fix SPI support for second bus on 2023.9.1 [esphome#5456](https://github.com/esphome/esphome/pull/5456) by [@angelnu](https://github.com/angelnu)
|
||||||
|
- Ensure esphome directory exists on addon startup [esphome#5464](https://github.com/esphome/esphome/pull/5464) by [@jesserockz](https://github.com/jesserockz)
|
||||||
|
|
||||||
|
|||||||
@@ -26,13 +26,12 @@ schema:
|
|||||||
ssl: bool?
|
ssl: bool?
|
||||||
certfile: str?
|
certfile: str?
|
||||||
keyfile: str?
|
keyfile: str?
|
||||||
relative_url: str?
|
|
||||||
leave_front_door_open: bool?
|
leave_front_door_open: bool?
|
||||||
backup_exclude:
|
backup_exclude:
|
||||||
- '*/*/'
|
- '*/*/'
|
||||||
init: false
|
init: false
|
||||||
name: ESPHome
|
name: ESPHome
|
||||||
version: 2023.6.5
|
version: 2023.9.2
|
||||||
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
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 69 KiB |
@@ -34,7 +34,6 @@ base: &base
|
|||||||
ssl: bool?
|
ssl: bool?
|
||||||
certfile: str?
|
certfile: str?
|
||||||
keyfile: str?
|
keyfile: str?
|
||||||
relative_url: str?
|
|
||||||
leave_front_door_open: bool?
|
leave_front_door_open: bool?
|
||||||
backup_exclude:
|
backup_exclude:
|
||||||
- "*/*/"
|
- "*/*/"
|
||||||
@@ -60,7 +59,6 @@ esphome-dev:
|
|||||||
ssl: bool?
|
ssl: bool?
|
||||||
certfile: str?
|
certfile: str?
|
||||||
keyfile: str?
|
keyfile: str?
|
||||||
relative_url: str?
|
|
||||||
leave_front_door_open: bool?
|
leave_front_door_open: bool?
|
||||||
base_image: ghcr.io/esphome/esphome-hassio:dev
|
base_image: ghcr.io/esphome/esphome-hassio:dev
|
||||||
options:
|
options:
|
||||||
@@ -70,7 +68,7 @@ esphome-beta:
|
|||||||
<<: *base
|
<<: *base
|
||||||
directory: esphome-beta
|
directory: esphome-beta
|
||||||
name: ESPHome (beta)
|
name: ESPHome (beta)
|
||||||
version: '2023.6.5' # BETA
|
version: '2023.9.2' # 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,7 +82,7 @@ esphome-stable:
|
|||||||
<<: *base
|
<<: *base
|
||||||
directory: esphome
|
directory: esphome
|
||||||
name: ESPHome
|
name: ESPHome
|
||||||
version: '2023.6.5' # STABLE
|
version: '2023.9.2' # 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
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 69 KiB |
Reference in New Issue
Block a user