@sdetweil yeah that’s what I was using limitDays for and it was working great for my needs until now - I have my kids school lessons synced to a google calendar, and setting limitDays to 1 used to show the full set of lessons for the day. When they get home from school (all events from the current day are in the past), it automatically showed all of the lessons for the following day. Best thing I’ve ever used MM for! Even highlights PE lessons so they know when to bring kit :)
For me now, limitDays: 1 just shows the single next event even when there are 6 more events on that day (and if that event is ‘Tutor time’, it displays when it should be hidden).
I can’t say exactly what version I was on prior to the update but it should have been whatever the previous version was - since I set this up with watchtower in docker I’ve not had to do any manual upgrades.
Here’s my anonamised calendar config - I have 5 different calendar modules running if that’s likely to be a factor, but this is one that has the config issues:
{
module: 'calendar',
header: 'School day',
position: 'bottom_right',
config: {
coloredSymbol: true,
coloredText: true,
showLocation: true,
displaySymbol: false,
hideTime: true,
tableClass: 'medium',
flipDateHeaderTitle: true,
fade: false,
timeFormat: 'absolute',
dateFormat: 'ddd',
fullDayEventDateFormat: 'ddd',
urgency: '0',
sliceMultiDayEvents: true,
nextDaysRelative: false,
limitDays: 1,
fetchInterval: '600000',
displayRepeatingCountTitle: true,
wrapEvents: false,
//maxTitleLength: 30,
customEvents: [{ keyword: 'Physical Education', symbol: 'volleyball', color: 'Gold' }],
excludedEvents: [
'Tutor time'
],
calendars: [
{
symbol: 'graduation-cap',
url: 'https://calendar.google.com/calendar/ical/REDACTED/basic.ics'
}
]
}
},