Read the statement by Michael Teeuw here.
MMM-CalendarExt3Agenda - Two questions
-
As for the #1 question, look at these config items:
startDayIndex endDayIndex
That will adjust your view to specific days -
startDayIndex: 0
will set it to start on the current day, and then continue for the number of days listed inendDayIndex
-
@BKeyport said in MMM-CalendarExt3Agenda - Two questions:
As for the #1 question, look at these config items:
startDayIndex endDayIndex
Those are already set correctly. There’s something hard coded somewhere that removes events that are in the past from showing, even if they’re from Today. If those settings were wrong I wouldn’t see anything from today.
-
-
@Kelemvor do you have
broadcastPastEvents: true,
set in the default calendar app? -
@Kelemvor Actually, I think you might be right - does look hardcoded.
-
@BKeyport said in MMM-CalendarExt3Agenda - Two questions:
@Kelemvor do you have
broadcastPastEvents: true,
set in the default calendar app?Not if that goes in the normal Config area. Does that make ALL events from the entire calendar get passed over to Ext3? Is that going to overload anything since it’s decades of events? :)
-
@Kelemvor It won’t overload anything. broadcastPastEvents is required to show old events.
-
@BKeyport I know it says its broadcasting 400+ events so I’m assuming it’s sending old stuff.
-
@Kelemvor I pretty much bet it’s that setting - with it I get what you want:
-
I think I fixed it and I Just found a typo in the official documentation:
On this page:
https://docs.magicmirror.builders/modules/calendar.html#configuration-optionsThe first instance of broadcastPastEvents is wrong.
It should say pastDaysCount, not maximumNumberofDays,
Anyway, I set broadcastPastEvents to True and PastDaysCount to 1. It seems to be showing now. I’ll know more tomorrow afternoon.