diff --git a/config/README.md b/config/README.md
index 5a9ba92..f9467bd 100644
--- a/config/README.md
+++ b/config/README.md
@@ -10,7 +10,7 @@ Hey there! Welcome to my little corner of the tech world! 👨💻
This is where I store all the cool configurations for my Home Assistant system. Well, it's a mix of awesome codes and setups I discovered from the Home Assistant community. Seriously, those folks are wizards! 🧙♂️ As a bit of an internet newbie turned tech enthusiast, I stumbled upon the magic of IT, and this repository is my way of sharing the joy and knowledge I've gained along the way. Dive in, explore, and let the tech magic begin! ✨
-I frequently refresh my configuration files. My current Home Assistant version is 2024.10.4 . If you find something you like, don't forget to give my repository a ⭐️!
+I frequently refresh my configuration files. My current Home Assistant version is 2024.11.0 . If you find something you like, don't forget to give my repository a ⭐️!
@@ -37,13 +37,13 @@ https://github.com/ngocjohn/hass-config/assets/96962827/acc1a4db-b92e-4ab1-ac9d-
- 35,457
+ 35,442
33
- 178
+ 181
38
52
31
- 1118
+ 1134
171
38
diff --git a/config/blueprints/template/homeassistant/inverted_binary_sensor.yaml b/config/blueprints/template/homeassistant/inverted_binary_sensor.yaml
new file mode 100644
index 0000000..5be1840
--- /dev/null
+++ b/config/blueprints/template/homeassistant/inverted_binary_sensor.yaml
@@ -0,0 +1,27 @@
+blueprint:
+ name: Invert a binary sensor
+ description: Creates a binary_sensor which holds the inverted value of a reference binary_sensor
+ domain: template
+ source_url: https://github.com/home-assistant/core/blob/dev/homeassistant/components/template/blueprints/inverted_binary_sensor.yaml
+ input:
+ reference_entity:
+ name: Binary sensor to be inverted
+ description: The binary_sensor which needs to have its value inverted
+ selector:
+ entity:
+ domain: binary_sensor
+variables:
+ reference_entity: !input reference_entity
+binary_sensor:
+ state: >
+ {% if states(reference_entity) == 'on' %}
+ off
+ {% elif states(reference_entity) == 'off' %}
+ on
+ {% else %}
+ {{ states(reference_entity) }}
+ {% endif %}
+ # delay_on: not_used in this example
+ # delay_off: not_used in this example
+ # auto_off: not_used in this example
+ availability: "{{ states(reference_entity) not in ('unknown', 'unavailable') }}"
diff --git a/config/custom_components/mass/manifest.json b/config/custom_components/mass/manifest.json
index 142f739..6a98028 100644
--- a/config/custom_components/mass/manifest.json
+++ b/config/custom_components/mass/manifest.json
@@ -9,6 +9,6 @@
"issue_tracker": "https://github.com/music-assistant/hass-music-assistant/issues",
"loggers": ["music_assistant"],
"requirements": ["music-assistant-client==1.0.5"],
- "version": "2024.11.0",
+ "version": "2024.11.1",
"zeroconf": ["_mass._tcp.local."]
}
diff --git a/config/custom_components/mbapi2020/manifest.json b/config/custom_components/mbapi2020/manifest.json
index dc0d5d5..7eb8777 100644
--- a/config/custom_components/mbapi2020/manifest.json
+++ b/config/custom_components/mbapi2020/manifest.json
@@ -16,5 +16,5 @@
"requirements": [
"protobuf>=3.19.1"
],
- "version": "v0.19.0"
+ "version": "v0.19.1"
}
diff --git a/docs/README.md b/docs/README.md
index 5a9ba92..f9467bd 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -10,7 +10,7 @@ Hey there! Welcome to my little corner of the tech world! 👨💻
This is where I store all the cool configurations for my Home Assistant system. Well, it's a mix of awesome codes and setups I discovered from the Home Assistant community. Seriously, those folks are wizards! 🧙♂️ As a bit of an internet newbie turned tech enthusiast, I stumbled upon the magic of IT, and this repository is my way of sharing the joy and knowledge I've gained along the way. Dive in, explore, and let the tech magic begin! ✨
-I frequently refresh my configuration files. My current Home Assistant version is 2024.10.4 . If you find something you like, don't forget to give my repository a ⭐️!
+I frequently refresh my configuration files. My current Home Assistant version is 2024.11.0 . If you find something you like, don't forget to give my repository a ⭐️!
@@ -37,13 +37,13 @@ https://github.com/ngocjohn/hass-config/assets/96962827/acc1a4db-b92e-4ab1-ac9d-
- 35,457
+ 35,442
33
- 178
+ 181
38
52
31
- 1118
+ 1134
171
38