Holy cow, how long has this been around?? Game changer!!! Thanks for pointing it out!
It was introduce in version 0.117 (Oct 2020).
So Iāve updated to the newest version (it shows as 2022.5.0 in the info) and Iām not seeing the new settings menu.
Do I need to turn it on somehwere? It looks interesting and useful in the various āwhats new in HA 22.5ā videos Iāve checked out but Iām not seeing it locally.
Iām running the official docker container if it matters.
Your menu may be different without supervisor but try reloading the page and clearing your cache.
The upgrade went fast and flawless, like most of the times by the way. Great work!
I am happy to see the Amcres fixed as-well as the new/return of the Sonos favorites list. I however do not yet understand how to integrate the sensor.sonos_favorites
in my automation as shown below.
The sensor states the number of favorites, which are listed in the attribute āitemsā with a prefix 'FV:2/<no>'
that makes no sense to me. Unfortunately the integration documentation isnāt updated with this new sensor yet. Anyone who can help me understand?
I am happy to update the documentation as soon as I have a clear understanding of it
Itās saying if you find yourself doing this
if: "{{ a == 'b' }}"
then:
service: option_1
else:
if: "{{ a == 'c' }}"
then:
service: option_2
else:
...
Then switch to a choose
choose:
- conditions: "{{ a == 'b' }}"
actions:
service: option_1
- conditions: "{{ a == 'c' }}"
actions:
service: option_2
...
default:
...
For me while refactoring to use these my rule of thumb has been if I need an elif or else if then use a choose. If I just need an if or an if and an else then use the new if then.
Ah! Right. Thereās no elif
. Thanks.
Tautulli did not automatically migrate my configuration to the UI. Further, the new integration doesnāt appear to include all the previously monitored conditions (e.g. media_type
, duration
and file
).
Hereās the doc update for Sonos favorites as itās not immediately obvious on how to use: Add Sonos favorites notes by jjlawren Ā· Pull Request #22642 Ā· home-assistant/home-assistant.io Ā· GitHub.
Anyone experiences problem with glances running on HA Proxmox? Iām getting error but only for Glances running under HA VM which is strange. There are several other problem with this release.
Anyone have any idea why the required Community Add-on repository has disappeared from so many systems? I definitely didnāt remove it from my system, but it wasnāt there. It would have just happened recently because I saw addon updates within the last couple of weeks.
It saw this and got excited:
@sisimomo added Markdown support to Blueprint input descriptions, allowing you to add links to, for example, documentation in your Blueprints.
But I see that the note is not completely true.
Markdown has been added to Automation Blueprints !inputs, not Script blueprints. Markdown is not working in those (at least for me).
It would be very helpful to extend this to the rest of the blueprint family.
Thanks for the awesome look and function on Automations, any chance you can extend that?
I guess itās better than the endlessly spinning wheel of previous versions
I really would like to see this eventually fixed as well because since the TTS button was removed from the players, we, apple device owners, have to resort to using the service in dev tools or a script/automation.
So in core version 2022.4 there was a bug where the hassio integration asked supervisor to do a full update check on all addon repos every 5 minutes. This meant that every user with supervisor on core-2022.4 was trying to pull the official, community and esphome addon repos every 5 minutes. GitHub (understandably) took defensive action because of this as it saw it as either a DOS attack or a breach of TOS (using a repository as a CDN) and started dropping requests. When the request got dropped supervisor thought the repo either didnāt exist or was corrupt and tried to remove it.
This was fixed in 2022.4.5 by this pr and things returned to normal as people updated. But the community addons repo was accidently removed by this process for a number of people so youāll have to add it back manually back. This accidental auto removing is something I plan to work on but for now just click the buttons for the repos youāre missing:
dont know about thatā¦ even when using the developers Service tab I get this error in the logs:
Media streaming is not possible with current configuration
while trying to tts cloud_say
No problem here, but Iām using google translate instead of cloud, thatās the only difference I can seeā¦
Mvg.
would be so nice to see the full options:
if
elif
elif
else
I think most easy way to create automations based on a if state.
Thatās impossible to do in Yaml because the first elif would be replaced by the second elif. Thatās why choose is a list and not a map.
But this is exactly, what choose is doing, isnāt it?
This. if-then
was introduced because this:
if: "{{ a == 'b' }}"
then:
service: do_something
and this:
if: "{{ a == 'b' }}"
then:
service: do_something
else:
service: do_something_else
is a bit shorter and easier to read then this:
choose:
conditions: "{{ a == 'b' }}"
actions:
service: do_something
default:
service: do_something_else
But if you do actually need an elif
then choose
is your tool:
choose:
- conditions: "{{ a == 'b' }}"
actions:
service: do_something
- conditions: "{{ a == 'c' }}"
actions:
service: do_something_2
...
default:
service: do_something_else
And to petroās point this isnāt an option because its not valid yaml and automations arenāt actually a programming language:
# NOTE: INVALID, DON'T COPY ME
if: "{{ a == 'b' }}"
then:
service: do_something
elif: "{{ a == 'c' }}"
then:
service: do_something_2
elif: "{{ a == 'd' }}"
then:
service: do_something_3
...
else:
service: do_something_else