Eskild Hustvedt
Eskild Hustvedt
I am currently rewriting the code handling creation of the edit and add event windows. After that rewrite this is certainly something I could look into adding. It won't make...
I've opened issue #9 for this. Could you provide a test iCalendar event for this specific RRULE, as well as any messages Day Planner outputs to the terminal when you...
Hi, this is a known issue as Day Planner currently ignores timezone settings and (stupidly) assumes that the timezone in the file is the same as on the system.
It's currently possible to force use of 24 hour time by setting the environment variable DP_FORCE_24H to 1. Forcing 12 hour time can be done by setting LC_TIME=C. A plugin...
I believe conduit will be able to do this once conduit integration is done. At the moment however, conduit is fairly young. Integration of conduit into Day Planner to replace...
It currently supports adding read-only web calendars, so that could be easily modified to read local calendars as well, but Day Planner currently treats all except one calendar as read-only....
So, I've also got this on my work box, which is Edge on Mac. It seems to be caused by this rule:  If I toggle `border-top-right-radius` off, the blur...
To me it seems like this Chromium/Blink bug: https://issues.chromium.org/issues/41321934 If I, instead of disabling that rule, add "`overflow:visible;`", the blurryness also goes away (but that does mess up the design:...
Workaround bookmarklet: ```js (() => { let e = document.createElement('style'); e.setAttribute('type','text/css'); e.innerText = '.timeline-item-carousel { overflow: visible !important; }'; document.querySelector('head').appendChild(e); })(); ``` Minified and ready to add as a bookmark...