diff --git a/config/.HA_VERSION b/config/.HA_VERSION index bb441ab6..c2f2004f 100755 --- a/config/.HA_VERSION +++ b/config/.HA_VERSION @@ -1 +1 @@ -0.111.4 \ No newline at end of file +0.112.0 \ No newline at end of file diff --git a/config/packages/youtube.yaml b/config/packages/youtube.yaml index afdb3b9f..f84e4e65 100755 --- a/config/packages/youtube.yaml +++ b/config/packages/youtube.yaml @@ -22,6 +22,10 @@ automation: - platform: state entity_id: sensor.vcloudinfo + condition: + - condition: template + value_template: "{{ trigger.from_state.state != trigger.to_state.state }}" + action: - service: script.tweet_engine_no_image data_template: diff --git a/config/www/community/search-card/search-card.js b/config/www/community/search-card/search-card.js index 3cf93a0c..a556d276 100644 --- a/config/www/community/search-card/search-card.js +++ b/config/www/community/search-card/search-card.js @@ -35,6 +35,8 @@ class SearchCard extends ct.LitElement { this.active_actions = []; this.max_results = this.config.max_results || 10; + + this.search_text = this.config.search_text || "Type to search..."; this.actions = BUILTIN_ACTIONS.concat(this.config.actions || []); } @@ -52,15 +54,15 @@ class SearchCard extends ct.LitElement {