Skip to content

Commit

Permalink
2024.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
matt8707 committed Jan 22, 2024
1 parent ee344e5 commit 0f78ac0
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 17 deletions.
26 changes: 10 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
## What's Changed
* Fix light modal color modes, close #189 by @matt8707 in https://github.com/matt8707/ha-fusion/pull/193
* Filter leading section name from entity names, closes #194 by @matt8707 in https://github.com/matt8707/ha-fusion/pull/196
* Update handling hassUrl by @matt8707 in https://github.com/matt8707/ha-fusion/pull/199
* Add vacuum modal, closes #24 by @matt8707 in https://github.com/matt8707/ha-fusion/pull/204
* Update person, zone and device_tracker by @matt8707 in https://github.com/matt8707/ha-fusion/pull/205
* Add 'group' modal support, closes #179 by @matt8707 in https://github.com/matt8707/ha-fusion/pull/206
* Fix alarm modal styles by @matt8707 in https://github.com/matt8707/ha-fusion/pull/207
* Update onStates by @matt8707 in https://github.com/matt8707/ha-fusion/pull/208
* Add 'humidifier' modal support, closes #151 by @matt8707 in https://github.com/matt8707/ha-fusion/pull/210
* Add 'water_heater' modal support, closes #149 by @matt8707 in https://github.com/matt8707/ha-fusion/pull/214
* Add 'valve' modal support, closes #152 by @matt8707 in https://github.com/matt8707/ha-fusion/pull/215
* Add 'lawn_mower' modal support by @matt8707 in https://github.com/matt8707/ha-fusion/pull/216
* Add 'fan' modal oscillate, direction and preset_mode support by @matt8707 in https://github.com/matt8707/ha-fusion/pull/217
* Update getSupport function by @matt8707 in https://github.com/matt8707/ha-fusion/pull/218
* Add port option to addon, closes #171 by @matt8707
* Remove unused 'youtube' from settings, closes #239 by @matt8707 in https://github.com/matt8707/ha-fusion/pull/240
* Fix issue where certain icons didn't display properly by @matt8707 in https://github.com/matt8707/ha-fusion/pull/242
* Update default time logic by @matt8707 in https://github.com/matt8707/ha-fusion/pull/243
* Implement auth flow by @matt8707 in https://github.com/matt8707/ha-fusion/pull/244
* Allow section name to be empty, close #129, close #130, close #232 by @matt8707 in https://github.com/matt8707/ha-fusion/pull/245
* Weather forecast sidebar component by @EvanBarbour3 in https://github.com/matt8707/ha-fusion/pull/175

**Full Changelog**: https://github.com/matt8707/ha-fusion/compare/2024.1.5...2024.1.6
## New Contributors
* @EvanBarbour3 made their first contribution in https://github.com/matt8707/ha-fusion/pull/175

**Full Changelog**: https://github.com/matt8707/ha-fusion/compare/2024.1.6...2024.1.7
9 changes: 8 additions & 1 deletion config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# required configuration options
name: Fusion
version: 2024.1.6
version: 2024.1.7
slug: ha_fusion
description: A modern, easy-to-use and performant custom Home Assistant dashboard
arch:
Expand Down Expand Up @@ -28,5 +28,12 @@ ingress_stream: true
ports:
8099/tcp: null

# options
options:
hass_url: null

schema:
hass_url: str

# docker hub
image: matt8707/addon-ha-fusion-{arch}
3 changes: 3 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/usr/bin/with-contenv bashio

HASS_URL=$(bashio::config 'hass_url')
export HASS_URL

echo "Starting Fusion..."

node server.js
7 changes: 7 additions & 0 deletions translations/en.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
configuration:
hass_url:
name: Home Assistant URL
description: "Required. This can be any Home Assistant instance. Example: http://192.168.1.100:8123"

network:
8099/tcp: "Optional. Port to expose externally, bypassing Ingress. Example: 5050"

0 comments on commit 0f78ac0

Please sign in to comment.