Read the statement by Michael Teeuw here.
Calendar shows late day events on next day but at correct time
-
@sdetweil For now I have done
if (hasByWeekdayRule && false)
(in order to change as little as possible) and my use cases work for now.
-
@natmash cool…
-
here is an updated test version of the fixes for all kinds of calendar date problems.
NOTE: the changed branch name
NOTE: this used the node-cal@0.19.0 library UNCHANGEDbest to make a new folder and git clone there
git clone https://github.com/sdetweil/MagicMirror
cd MagicMirror
git checkout fixcaldates2 // <------ note this is a changed branch name
npm run install-mm
copy your config.js and custom.css from the prior folder
and the non-default modules you have installed…this ONLY changes the default calendar
but DOES ship an updated node-ical library tooif you need to fall back, just rename the folders around again so that
your original is called MagicMirrorall the testcases for node-ical and MagicMirror execute successfully.
the ‘BIG’ change here is to get the local NON-TZ dates for the
rrule.between()all the checking and conversion code is commented out or not used
the node-ical fixes are for excluded dates (exdate) values being adjusted for DST/STD time… waiting to submit that PRone fix in calendar.js for checking if a past date was too far back,
but it never checked to see IF the event date was in the past… (before today) so it chopped off too manyand one change in calendarfetcher.js to put out a better diagnostic message of the parsed data… (exdate was excluded cause JSON stringify couldn’t convert the complex structure)
I added the tests you all have documented
please re-pull and checkout the new branch (I deleted the old branch)
and npm run install-mm again -
@sdetweil That looks correct to me now!
-
@natmash awesome, thanks for the feedback…
have one moved recurring event problem yet…
-
@natmash posted another update, moved event at end of day
really need to add another, moved to diff time, and duration(done)
also added testcases for moved( before and after original) AND deleted recurrences
-
@sdetweil Still looks good to me!
-
@natmash awesome. thanks for the testing and feedback