mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-08-21 12:55:22 +00:00
Compare commits
2 Commits
855b1d7cbf
...
d9e2e0272f
Author | SHA1 | Date | |
---|---|---|---|
|
d9e2e0272f | ||
|
3a2a52c864 |
10
CHANGELOG.md
10
CHANGELOG.md
@@ -11,10 +11,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
planned for 2025-10-01
|
planned for 2025-10-01
|
||||||
|
|
||||||
|
Thanks to: @dathbe.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- [clock] Add CSS to prevent line breaking of sunset/sunrise time display (#3816)
|
||||||
|
|
||||||
### Updated
|
### Updated
|
||||||
|
|
||||||
- [core] Update dependencies including electron to v37 (#3831)
|
- [core] Update dependencies including electron to v37 (#3831)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- [calendar] Fixed broken unittest that only broke at 1st of july and 1st of january (#3830)
|
||||||
|
|
||||||
## [2.32.0] - 2025-07-01
|
## [2.32.0] - 2025-07-01
|
||||||
|
|
||||||
Thanks to: @bughaver, @bugsounet, @khassel, @KristjanESPERANTO, @plebcity, @rejas, @sdetweil.
|
Thanks to: @bughaver, @bugsounet, @khassel, @KristjanESPERANTO, @plebcity, @rejas, @sdetweil.
|
||||||
|
@@ -87,9 +87,17 @@
|
|||||||
transform-origin: 50% 100%;
|
transform-origin: 50% 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.module.clock .digital {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
.module.clock .sun,
|
.module.clock .sun,
|
||||||
.module.clock .moon {
|
.module.clock .moon {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
white-space: nowrap;
|
||||||
|
gap: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.module.clock .sun > *,
|
.module.clock .sun > *,
|
||||||
|
@@ -10,7 +10,7 @@ describe("Calendar fetcher utils test", () => {
|
|||||||
excludedEvents: [],
|
excludedEvents: [],
|
||||||
includePastEvents: false,
|
includePastEvents: false,
|
||||||
maximumEntries: 10,
|
maximumEntries: 10,
|
||||||
maximumNumberOfDays: 365
|
maximumNumberOfDays: 367
|
||||||
};
|
};
|
||||||
|
|
||||||
describe("filterEvents", () => {
|
describe("filterEvents", () => {
|
||||||
@@ -53,7 +53,6 @@ describe("Calendar fetcher utils test", () => {
|
|||||||
expect(filteredEvents[1].title).toBe("upcomingEvent");
|
expect(filteredEvents[1].title).toBe("upcomingEvent");
|
||||||
});
|
});
|
||||||
|
|
||||||
/*
|
|
||||||
it("should return the correct times when recurring events pass through daylight saving time", () => {
|
it("should return the correct times when recurring events pass through daylight saving time", () => {
|
||||||
const data = ical.parseICS(`BEGIN:VEVENT
|
const data = ical.parseICS(`BEGIN:VEVENT
|
||||||
DTSTART;TZID=Europe/Amsterdam:20250311T090000
|
DTSTART;TZID=Europe/Amsterdam:20250311T090000
|
||||||
@@ -87,7 +86,6 @@ END:VEVENT`);
|
|||||||
expect(januaryFirst[0].startDate).toEqual(januaryMoment.format("x"));
|
expect(januaryFirst[0].startDate).toEqual(januaryMoment.format("x"));
|
||||||
expect(julyFirst[0].startDate).toEqual(julyMoment.format("x"));
|
expect(julyFirst[0].startDate).toEqual(julyMoment.format("x"));
|
||||||
});
|
});
|
||||||
*/
|
|
||||||
|
|
||||||
it("should return the correct moments based on the timezone given", () => {
|
it("should return the correct moments based on the timezone given", () => {
|
||||||
const data = ical.parseICS(`BEGIN:VEVENT
|
const data = ical.parseICS(`BEGIN:VEVENT
|
||||||
|
Reference in New Issue
Block a user