docs: mark P15/P16 as unsupported and P17 as done; store original iCal event in rem

This commit is contained in:
2026-05-20 16:17:24 +02:00
parent 922fd9a97e
commit ae6144fa7c
2 changed files with 6 additions and 4 deletions

View File

@@ -31,6 +31,7 @@ type simple_monthly = {
type rem = {
source : string; (** Source file or identifier for the reminder *)
original_uuid : string; (** Original UID from the iCalendar event *)
original_event : Icalendar.event option; (** The original iCalendar event *)
summary : string; (** Summary or title of the reminder *)
location : string option; (** Optional location of the event *)
description : string option; (** Optional description of the event *)
@@ -56,6 +57,7 @@ let empty =
{
source = "";
original_uuid = "";
original_event = None;
summary = "";
location = None;
description = None;