diff --git a/add-ons/ps5-mqtt/CHANGELOG.md b/add-ons/ps5-mqtt/CHANGELOG.md index 20e4a94..6b0ffe2 100644 --- a/add-ons/ps5-mqtt/CHANGELOG.md +++ b/add-ons/ps5-mqtt/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.0.1 - 2022-08-19 + +### What’s changed + +#### 🐛 Bug fixes + +- Fix PS4 title activity not being matched to PS5 devices @FunkeyFlo (#29) + ## 1.0.0 - 2022-08-11 ### What’s changed @@ -60,11 +68,13 @@ Take a look at the [documentation](https://github.com/FunkeyFlo/ps5-mqtt/blob/ma - - - +- - - (hopefully) cleared up some of the confusion people were having with the authentication steps by changing the walkthrough text that's displayed in the Authorization dialog. - - - - +- ## 0.6.3 @@ -84,6 +94,7 @@ Because the add-on switched from locally built Dockerfiles to pre-built images y - - - +- ## 0.5.2 @@ -96,21 +107,25 @@ Because the add-on switched from locally built Dockerfiles to pre-built images y - - - +- - - ...avoid entities being unavailable after home assistant restart. ([#5](https://github.com/FunkeyFlo/ps5-mqtt/issues/5)) - - - - +- - Re-implemented device discovery - - Added `device_discovery_interval` option to change the frequency of discovering PS5 devices. - - - +- - - Optimizations for discovered devices. - - - - +- - Various minor tweaks and improvements. ## 0.4.4 diff --git a/add-ons/ps5-mqtt/config.yaml b/add-ons/ps5-mqtt/config.yaml index a1be662..e5e6805 100644 --- a/add-ons/ps5-mqtt/config.yaml +++ b/add-ons/ps5-mqtt/config.yaml @@ -1,4 +1,4 @@ -version: 1.0.0 +version: 1.0.1 slug: ps5_mqtt name: PS5 MQTT description: Control Sony PlayStation 5 devices via MQTT @@ -11,21 +11,21 @@ arch: - i386 startup: application services: - - "mqtt:need" + - mqtt:need boot: auto host_network: true ingress: true ingress_port: 0 -panel_icon: 'mdi:sony-playstation' +panel_icon: mdi:sony-playstation ports: 8645/tcp: null ports_description: 8645/tcp: PS5 MQTT Web Interface map: - - "config:rw" + - config:rw options: mqtt: {} - logger: "@ha:ps5:*" + logger: '@ha:ps5:*' device_check_interval: 5000 device_discovery_interval: 60000 account_check_interval: 5000 @@ -46,4 +46,4 @@ schema: account_check_interval: int include_ps4_devices: bool stdin: true -image: "ghcr.io/funkeyflo/ps5-mqtt/{arch}" +image: ghcr.io/funkeyflo/ps5-mqtt/{arch}