Joshua Clark

Results 57 comments of 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: > > ![grafik](https://private-user-images.githubusercontent.com/13799156/351059325-25166a65-0389-4ae0-91a2-1b6c97c04786.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MjE2Nzc0ODEsIm5iZiI6MTcyMTY3NzE4MSwicGF0aCI6Ii8xMzc5OTE1Ni8zNTEwNTkzMjUtMjUxNjZhNjUtMDM4OS00YWUwLTkxYTItMWI2Yzk3YzA0Nzg2LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNDA3MjIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjQwNzIyVDE5Mzk0MVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWRlY2Q5ZDczZGQ0ZDUxZGI1OGY4ODdmYzY1YTdhYTk3MjU4MTRhNzc4YzZmNWIwMDk1YzViM2U1Mjc5YjZmMGQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JmFjdG9yX2lkPTAma2V5X2lkPTAmcmVwb19pZD0wIn0.2AGUPBm9HuEQVoUslKh1kHcH_jEaPVwWUNFhT83kTdI) > > 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 ![image](https://user-images.githubusercontent.com/1580378/115088566-ac3b8c00-9ecd-11eb-828f-9a507d2c0444.png) 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:...