diff --git a/hassio-access-point/CHANGELOG.md b/hassio-access-point/CHANGELOG.md index b04d912..75edbb4 100644 --- a/hassio-access-point/CHANGELOG.md +++ b/hassio-access-point/CHANGELOG.md @@ -4,10 +4,16 @@ ### Notes: - Error: "wlan0: Could not connect to kernel driver" - https://raspberrypi.stackexchange.com/a/88297 -- **If anyone has any knowledge relating to the underlying modules, or just wants to assist with testing this addon, please get in touch, submit PRs, etc. I don't currently use this or have the capability to test it** +- **If anyone has any knowledge relating to the underlying modules, or just wants to assist with testing this addon, please get in touch, submit PRs, etc.** + +## [0.4.3] - 2022-06-21 + +### Fixed +- [Issue](https://github.com/mattlongman/Hassio-Access-Point/issues/31) from @adosikas: `nmcli: command not found`. Added `apk add networkmanager-cli` to Dockerfile. Found this via [this PR](https://github.com/hassio-addons/addon-ssh/pull/415). ## [0.4.2] - 2022-06-14 +### Added - [PR](https://github.com/mattlongman/Hassio-Access-Point/pull/23) from @esotericnonsense (thanks!): Added a new config addon option: dnsmasq_config_override to allow additions/overrides to the dnsmasq config file, for example in order to add static DHCP leases with the dhcp-host= option. This option operates similarly to hostapd_config_override. ## [0.4.1] - 2021-07-21 diff --git a/hassio-access-point/Dockerfile b/hassio-access-point/Dockerfile index 5d22e22..f605bd7 100644 --- a/hassio-access-point/Dockerfile +++ b/hassio-access-point/Dockerfile @@ -8,7 +8,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] ENV LANG C.UTF-8 RUN apk update && \ -apk add --no-cache bash jq iw hostapd networkmanager net-tools sudo dnsmasq && \ +apk add --no-cache bash jq iw hostapd networkmanager networkmanager-cli net-tools sudo dnsmasq && \ rm -rf /var/cache/apk/* COPY hostapd.conf / diff --git a/hassio-access-point/config.json b/hassio-access-point/config.json index 13d55b9..b3702d5 100644 --- a/hassio-access-point/config.json +++ b/hassio-access-point/config.json @@ -1,6 +1,6 @@ { "name": "Hass.io Access Point", - "version": "0.4.2", + "version": "0.4.3", "slug": "hassio-access-point", "description": "Create a WiFi access point to directly connect devices to Home Assistant", "arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],