From 0993310d763001685b4b14b4c1417b31bb35f638 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 28 Sep 2022 21:31:36 +0200 Subject: [PATCH] 2022.10: Small fixes --- source/_integrations/nobo_hub.markdown | 2 +- source/_posts/2022-10-05-release-202210.markdown | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/source/_integrations/nobo_hub.markdown b/source/_integrations/nobo_hub.markdown index 41fcdfe2515..abf6654ce3c 100644 --- a/source/_integrations/nobo_hub.markdown +++ b/source/_integrations/nobo_hub.markdown @@ -3,7 +3,7 @@ title: Nobø Ecohub description: Instructions on how to integrate Nobø Ecohub into Home Assistant. ha_category: - Climate -ha_release: '2021.10' +ha_release: '2022.10' ha_iot_class: Local Push ha_config_flow: true ha_codeowners: diff --git a/source/_posts/2022-10-05-release-202210.markdown b/source/_posts/2022-10-05-release-202210.markdown index ed8ad7151a5..2187dc0eaa1 100644 --- a/source/_posts/2022-10-05-release-202210.markdown +++ b/source/_posts/2022-10-05-release-202210.markdown @@ -51,12 +51,13 @@ Enjoy the (beta) release! - [Integrations v2](#integrations-v2) +- [Active connections for Bluetooth remote proxies](#active-connections-for-bluetooth-remote-proxies) - [Sub-views for dashboards](#sub-views-for-dashboards) - [Restyling of all dialogs](#restyling-of-all-dialogs) - [Viewing manual automations in the automation editor](#viewing-manual-automations-in-the-automation-editor) - [New template thingies](#new-template-thingies) -- [Google sheets?](#google-sheets) -- [iBeacon?](#ibeacon) +- [Google sheets](#google-sheets) +- [iBeacon](#ibeacon) - [Other noteworthy changes](#other-noteworthy-changes) - [New Integrations](#new-integrations) - [Integrations now available to set up from the UI](#integrations-now-available-to-set-up-from-the-ui) @@ -218,7 +219,8 @@ numbers and even check the difference between 2 version numbers. {% raw %} - `{{ version("2022.10.0") > "2022.9.7" }}` Will return true, as `2022.10.0` is newer. -- `{{ (version("2022.10.0") - "209.9.7").patch }}` Will return false, as this is not a patch release. +- `{{ (version("2022.10.1") - "2022.10.0").patch }}` Will return true, as the patch number of the version changed. +- `{{ (version("2022.10.1") - "2022.10.0").minor }}` Will return false, as there is just a patch difference. - `{{ version("2022.10.0b0").beta }}` will return true, as this is a beta version. {% endraw %}