Skip to content

Commit

Permalink
Merge pull request #908 from UI-Lovelace-Minimalist/release
Browse files Browse the repository at this point in the history
Release V1.1.0
  • Loading branch information
basbruss authored Aug 5, 2022
2 parents 020ebfe + 9e378a0 commit 2eab8a0
Show file tree
Hide file tree
Showing 76 changed files with 1,735 additions and 426 deletions.
6 changes: 5 additions & 1 deletion custom_cards/custom_card_esh_room/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ hide:
- Full credit to user [bms on the forum](https://community.home-assistant.io/t/lovelace-ui-minimalist/322687/192), they created the design and base of it in full, EverythingSmartHome put it into a PR as the basis
- beasthouse and basbruss on the EverythingSmartHome discord channel for emoji/humidity customization
- mpeterson added support for a switch to control climate and also to remove the need to have an entity associated
- Version: 2.1.0
- Version: 2.1.1

## Changelog

Expand All @@ -40,6 +40,10 @@ Fixes text overflow issue over the climate button.
- It now uses the `ulm_actions_card` template, which allows the usage of the popups wherever custom actions are set as `popup`.
- Allow overflowing label and text to the climate button area whenever there is no climate button.
</details>
<details>
<summary>2.1.1</summary>
Add support for the new popup framework while maintaining backwards compatibility with the old one.
</details>

## Description

Expand Down
34 changes: 30 additions & 4 deletions custom_cards/custom_card_esh_room/custom_card_esh_room.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,21 @@ card_esh_room:
template:
- "widget_icon"
- "ulm_actions_card"
variables:
ulm_card_light_enable_popup: "[[[ return variables.ulm_card_light_enable_popup; ]]]"
variables: >
[[[
let vars = {};
vars.ulm_card_light_enable_popup = variables.ulm_card_light_enable_popup;
if(variables.ulm_card_light_enable_popup) {
vars.ulm_custom_popup = {
'template': 'popup_light_brightness',
'popup_variables': {
'ulm_popup_light_entity': variables.ulm_custom_card_esh_room_light_entity,
}
};
}
return vars;
]]]
climate:
card:
Expand Down Expand Up @@ -218,5 +231,18 @@ card_esh_room:
template:
- "widget_icon"
- "ulm_actions_card"
variables:
ulm_card_thermostat_enable_popup: "[[[ return variables.ulm_card_thermostat_enable_popup; ]]]"
variables: >
[[[
let vars = {};
vars.ulm_card_thermostat_enable_popup = variables.ulm_card_light_enable_popup;
if(variables.ulm_card_thermostat_enable_popup) {
vars.ulm_custom_popup = {
'template': 'popup_thermostat_temperature',
'popup_variables': {
'ulm_popup_thermostat_entity': variables.ulm_custom_card_esh_room_climate_entity,
}
};
}
return vars;
]]]
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
custom_card_httpedo13_thermostat_language_variables:
variables:
custom_card_httpedo13_thermostat_off: "wyłączony"
custom_card_httpedo13_thermostat_on: "włączony"
custom_card_httpedo13_thermostat_heating: "grzanie"
6 changes: 6 additions & 0 deletions custom_cards/custom_card_irmajavi_speedtest/languages/pl.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
ulm_custom_card_irmajavi_speedtest_language_variables:
variables:
ulm_custom_card_irmajavi_speedtest_speedtest: "Test prędkości Internetu"
ulm_custom_card_irmajavi_speedtest_download: "Prędkość pobierania"
ulm_custom_card_irmajavi_speedtest_upload: "Prędkość wysyłania"
4 changes: 4 additions & 0 deletions custom_cards/custom_card_ristou_person/languages/pl.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
ulm_custom_card_ristou_person_language_variables:
variables:
ulm_custom_card_ristou_person_driving: "Porusza się"
13 changes: 13 additions & 0 deletions custom_cards/custom_card_wsly_pollen/languages/pl.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# EN.yaml for custom_card_wsly_pollen
---
custom_card_wsly_pollen_language_variables:
variables:
custom_card_wsly_pollen_none: "Brak"
custom_card_wsly_pollen_very_low: "Bardzo słabe"
custom_card_wsly_pollen_low: "Słabe"
custom_card_wsly_pollen_medium: "Średnie"
custom_card_wsly_pollen_high: "Wysokie"
custom_card_wsly_pollen_very_high: "Bardzo wysokie"
custom_card_wsly_pollen_tree_name: "Drzewa"
custom_card_wsly_pollen_grass_name: "Trawy"
custom_card_wsly_pollen_weed_name: "Zioła"
1 change: 1 addition & 0 deletions custom_components/ui_lovelace_minimalist/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ async def configure_plugins(self) -> bool:
"simple-weather-card",
"lovelace-layout-card",
"lovelace-state-switch",
"weather-radar-card",
]
for p in depenceny_resource_paths:
if not self.configuration.include_other_cards:
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "你好"
ulm_volume: "体积"
ulm_popups_color: "顏色"
ulm_radar: "雷达"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Ahoj"
ulm_volume: "Hlasitost"
ulm_popups_color: "Barva"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ ulm_language_variables:
ulm_hello: "Hej"
ulm_volume: "Volumen"
ulm_popups_color: "Farve"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Hallo"
ulm_volume: "Lautstärke"
ulm_popups_color: "Farbe"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ ulm_language_variables:
ulm_hello: "Hello"
ulm_volume: "Volume"
ulm_popups_color: "Color"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ ulm_language_variables:
ulm_hello: "Hola"
ulm_volume: "Volumen"
ulm_popups_color: "Color"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Hei"
ulm_volume: "Äänenvoimakkuus"
ulm_popups_color: "Väri"
ulm_radar: "Tutka"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Bonjour"
ulm_volume: "Volume"
ulm_popups_color: "Couleur"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Ciao"
ulm_volume: "Volume"
ulm_popups_color: "Colore"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ ulm_language_variables:
ulm_hello: "Hallo"
ulm_volume: "Volume"
ulm_popups_color: "Kleur"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Hei"
ulm_volume: "Volume"
ulm_popups_color: "Farge"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Witaj"
ulm_volume: "Objętość"
ulm_popups_color: "Kolor"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Olá"
ulm_volume: "Volume"
ulm_popups_color: "Cor"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Olá"
ulm_volume: "Volume"
ulm_popups_color: "Cor"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Здравствуйте"
ulm_volume: "Объем"
ulm_popups_color: "Цвет"
ulm_radar: "Pадар"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Ahoj"
ulm_volume: "Volume"
ulm_popups_color: "Farba"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Hej"
ulm_volume: "Volym"
ulm_popups_color: "Färg"
ulm_radar: "Radar"
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ ulm_language_variables:
ulm_hello: "Hello"
ulm_volume: "Cilt"
ulm_popups_color: "Renk"
ulm_radar: "Radar"
Loading

0 comments on commit 2eab8a0

Please sign in to comment.