Read the statement by Michael Teeuw here.
Call for testers, updated calendar module
-
like you I am tired of all the troubles we have with the calendar module,
so lets end that here. we’ve got time between now and Jan 1 to find and fix any remaining issues.I have (I think) finally fixed it , this is built on top of the cal module in the current release 2.29.
to get my fork into a DIFFERENT folder, not touching existing MM (I use newmm here as the new folder name, use whatever you like
git clone https://github.com/sdetweil/MagicMirror newmm cd newmm git checkout fixcaldates2 npm run install-mm cd config cp config.js.sample config.js cd ..
edit the config.js and add your appropriate url in place of the default calendar we supply
add whatever config settings are appropriate for your calendar, date/time formats, etcthen
npm startDST/STD change is coming this weekend for Europe, and next weekend for the US
let me know what you see…
you can open issue on my fork, add a ics for the events you find that you have trouble withif you want to run under this new MM… you can copy your whole config over and
the modules folder too…you can use my backup/restore to do that too…(save time and energy)
https://github.com/sdetweil/MagicMirror-backup-restore
backup from MagicMirror (-s MagicMirror)
restore to newmm (-s newmm) it will reinstall the modules -
-
@evroom bug with
showsEndOnlyWithDuration, new code suggestion posted in other topic
i will open an issue and add this to the fix list (and two testcases)
-
Repeating all day event with X occurrences shows end time of 23:59.
urgency: 0, timeFormat: "absolute", dateFormat: "dddd MMM D - HH:mm", dateEndFormat: "HH:mm", fullDayEventDateFormat: "dddd MMM D", showEnd: true, showEndsOnlyWithDuration: true, getRelative: 0,
BEGIN:VEVENT DTSTART;VALUE=DATE:20241104 DTEND;VALUE=DATE:20241107 DTSTAMP:20241023T164753Z UID:086ujg156a8n9t0dpg8h3g4ptu@google.com CREATED:20241023T164710Z LAST-MODIFIED:20241023T164710Z SEQUENCE:0 STATUS:CONFIRMED SUMMARY:TestCal: ALLDAY_REPEAT_FROM_TO TRANSP:TRANSPARENT END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20241111 DTEND;VALUE=DATE:20241112 RRULE:FREQ=DAILY;COUNT=3 DTSTAMP:20241023T164753Z UID:0c9ah6plfonal1s1250k2mmgbt@google.com CREATED:20241023T164743Z LAST-MODIFIED:20241023T164743Z SEQUENCE:0 STATUS:CONFIRMED SUMMARY:TestCal: ALLDAY_REPEAT_3_OCCURENCES TRANSP:TRANSPARENT END:VEVENT
(cannot upload a text file anymore, only images)
Changed:
dateEndFormat: "dddd MMM D - HH:mm",
Changed:
showEnd: false,
-
@evroom yes, you are working the end time issue on the other topic
-
Just to follow up on the test I did where I got the end date displayed according to ‘dateEndFormat’ for a repeating allday event.
Most of it is also covered in the other thread.It is working with your suggested change in calendar.js.
No need to set ‘showEnd: false’.urgency: 0, timeFormat: "absolute", dateFormat: "dddd MMM D - HH:mm", dateEndFormat: "dddd MMM D - HH:mm", fullDayEventDateFormat: "dddd MMM D", showEnd: true, showEndsOnlyWithDuration: true, getRelative: 0,
-
@evroom bug with
showsEndOnlyWithDuration, new code suggestion posted in other topic
i will open an issue and add this to the fix list (and two testcases)
-
Will follow up in the “Cant use showEnd icloud cal” topic then.
-