From c6e4031444f63bf650e48d404cdd3503cbe9fe8b Mon Sep 17 00:00:00 2001 From: veeck Date: Mon, 8 Sep 2025 11:04:07 +0200 Subject: [PATCH 1/3] update default icon for calendars --- modules/default/calendar/calendar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js index 5c1c9ee76b..a1807d22b7 100644 --- a/modules/default/calendar/calendar.js +++ b/modules/default/calendar/calendar.js @@ -8,7 +8,7 @@ Module.register("calendar", { limitDays: 0, // Limit the number of days shown, 0 = no limit pastDaysCount: 0, displaySymbol: true, - defaultSymbol: "calendar-alt", // Fontawesome Symbol see https://fontawesome.com/cheatsheet?from=io + defaultSymbol: "calendar-days", // Fontawesome Symbol see https://fontawesome.com/search?ic=free&o=r defaultSymbolClassName: "fas fa-fw fa-", showLocation: false, displayRepeatingCountTitle: false, From 12f870b9457fcdae4efddb6f303826c473db6bf3 Mon Sep 17 00:00:00 2001 From: veeck Date: Mon, 8 Sep 2025 11:07:38 +0200 Subject: [PATCH 2/3] Update CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b8c10b8994..4510280d78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ Thanks to: @dathbe. ### Updated +- [calendar] Update defaultSymbol name and also the link to the icon search site (#3879) - [core] Update dependencies including electron to v38 as well as github actions (#3831, #3849, #3857, #3858, #3872, #3876) - [weather] Update feels_like temperature calculation formula (#3869) From ed529424f04e95579bafa18cd9cfeaa73b622da0 Mon Sep 17 00:00:00 2001 From: veeck Date: Mon, 8 Sep 2025 13:29:40 +0200 Subject: [PATCH 3/3] fix tests --- tests/e2e/modules/calendar_spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/modules/calendar_spec.js b/tests/e2e/modules/calendar_spec.js index 0388642155..56d2a45ad5 100644 --- a/tests/e2e/modules/calendar_spec.js +++ b/tests/e2e/modules/calendar_spec.js @@ -42,7 +42,7 @@ describe("Calendar module", () => { }); it("should show the default calendar symbol in each event", async () => { - await expect(testElementLength(".calendar .event .fa-calendar-alt", 0, "not")).resolves.toBe(true); + await expect(testElementLength(".calendar .event .fa-calendar-days", 0, "not")).resolves.toBe(true); }); });