fix #3701, calculation wrong, added testcase, ics, config (#3702)

fixes #3701 

offset calculation wrong when user looking back at east coast event

added testcase
This commit is contained in:
sam detweiler
2025-01-23 01:37:41 -06:00
committed by GitHub
parent 53ac31dcf3
commit af77b7b628
5 changed files with 57 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
let config = {
address: "0.0.0.0",
ipWhitelist: [],
timeFormat: 24,
modules: [
{
module: "calendar",
position: "bottom_bar",
config: {
fade: false,
urgency: 0,
dateFormat: "Do.MMM, HH:mm",
fullDayEventDateFormat: "Do.MMM",
timeFormat: "absolute",
getRelative: 0,
maximumNumberOfDays: 28,
showEnd: true,
calendars: [
{
maximumEntries: 100,
url: "http://localhost:8080/tests/mocks/chicago-nyedge.ics"
}
]
}
}
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}