Skip to content

Commit b3ab0f3

Browse files
authoredFeb 28, 2025··
fix images for s3 config (#145)
1 parent e4ac27d commit b3ab0f3

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed
 

‎common/images-local.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ image:
22
id: launch_image
33
file: "docs/homeThingLogo.svg"
44
resize: 48x48
5-
type: TRANSPARENT_BINARY
5+
type: BINARY
6+
transparency: chroma_key

‎common/images-weather.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
substitutions:
22
launch_image_file: "https://github.com/landonr/homeThing/raw/main/docs/homeThingLogoWhite.svg"
33
launch_image_size: "48x48"
4-
launch_image_type: "TRANSPARENT_BINARY"
4+
launch_image_type: "BINARY"
55
weather_icon_size: "50x50"
66

77
image:

‎common/images.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
substitutions:
22
launch_image_file: "https://raw.githubusercontent.com/landonr/homeThing/main/docs/homeThingLogo.svg"
33
launch_image_size: "48x48"
4-
launch_image_type: "TRANSPARENT_BINARY"
4+
launch_image_type: "BINARY"
55

66
image:
77
id: launch_image
88
file: $launch_image_file
99
resize: $launch_image_size
10-
type: $launch_image_type
10+
type: $launch_image_type
11+
transparency: chroma_key

‎tdisplay-s3.yaml

+20
Original file line numberDiff line numberDiff line change
@@ -176,33 +176,53 @@ image:
176176
- file: mdi:weather-night
177177
id: weather_clear
178178
resize: 50x50
179+
type: grayscale
180+
transparency: alpha_channel
179181
- file: mdi:weather-cloudy
180182
id: weather_cloudy
181183
resize: 50x50
184+
type: grayscale
185+
transparency: alpha_channel
182186
- file: mdi:weather-fog
183187
id: weather_fog
184188
resize: 50x50
189+
type: grayscale
190+
transparency: alpha_channel
185191
- file: mdi:weather-hail
186192
id: weather_hail
187193
resize: 50x50
194+
type: grayscale
195+
transparency: alpha_channel
188196
- file: mdi:weather-rainy
189197
id: weather_rainy
190198
resize: 50x50
199+
type: grayscale
200+
transparency: alpha_channel
191201
- file: mdi:weather-snowy
192202
id: weather_snow
193203
resize: 50x50
204+
type: grayscale
205+
transparency: alpha_channel
194206
- file: mdi:weather-sunny
195207
id: weather_sunny
196208
resize: 50x50
209+
type: grayscale
210+
transparency: alpha_channel
197211
- file: mdi:weather-windy
198212
id: weather_windy
199213
resize: 50x50
214+
type: grayscale
215+
transparency: alpha_channel
200216
- file: mdi:weather-partly-cloudy
201217
id: weather_partly_cloudy
202218
resize: 50x50
219+
type: grayscale
220+
transparency: alpha_channel
203221
- file: mdi:weather-lightning
204222
id: weather_lightning
205223
resize: 50x50
224+
type: grayscale
225+
transparency: alpha_channel
206226
# Launch image is included with other images
207227
- id: launch_image
208228
file: $launch_image_file

0 commit comments

Comments
 (0)
Please sign in to comment.