Joshua Clark
Joshua Clark
I might try to work on this as I have found a really neat map program called [BlueMap](https://bluemap.bluecolored.de/) > BlueMap is a program that reads your Minecraft world files and...
We could ping the GitHub API and see what the latest tag or release is
https://api.github.com/repos/MinecraftServerControl/mscs/releases Grab `tag_name` and pass it to download the specific tag `https://github.com/MinecraftServerControl/mscs/releases/download/$tag_name/$tag_name.zip` Or we could use the latest download link Or not upgrade in place and just notify
I just noticed there is a `tarball_url` and `zipball_url` in the API, that's probably the easiest to grab the download or even output the URL or use `html_url` for the...
I also tried to rename all the sensors and commands but it failed in an unexpected way. If you have multiple computers set with the same names for the sensors...
> > Fixed in 2.0.1 and up. > > Which "2.0.1"? > > Latest release according to https://github.com/LAB02-Research/HASS.Agent/releases still is this: > >  > > It's a joke or...
This is ~probably~ the result of fixing tooltips causing the more info popup to overflow #51 You can remove these lines from `metro.yaml` but then tooltips will cause the container...
The only change in the last update was adding a version key to the manifest.json file since Home Assistant will require it in version 2021.6
If you need a sensor now, you could make a custom sensor template ```yaml sensor: - platform: template sensors: dreamscreen_living_room_mode: friendly_name: Dreamscreen value_template: >- {% if is_state_attr('dreamscreen.living_room', 'device_mode', 1) %}...
Use the `dreamscreen.set_hdr_tone_remapping` service  Or here is a script example ```yaml script: dreamscreen_hdr_off: alias: "DreamScreen - Turn off HDR Tone Mapping" sequence: - service: dreamscreen.set_hdr_tone_remapping data: entity_id: dreamscreen.living_room hdr_tone_remapping:...