From 2522f727ba572d99d88ea63d66fb6b702df1a898 Mon Sep 17 00:00:00 2001 From: Raphael Jacob Date: Mon, 13 Nov 2023 14:09:52 +0100 Subject: [PATCH] add more verbosity to ics root --- cmd/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/main.go b/cmd/main.go index 27a1589..5bc691f 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -171,6 +171,8 @@ func run(tz *time.Location, outputdir string, motdSummary *string, motdDescripti cal.SetTzid(tz.String()) cal.SetTimezoneId(tz.String()) cal.SetLastModified(now) + cal.SetProductId(fmt.Sprintf("Stundenplan für die Klasse %s der ASW gGmbH.", cn)) + cal.SetDescription("Weitere INformationen zum Stundenplan finden Sie unter https://github.com/ski7777/asw-stundenplan") for id, e := range ce { cal.AddVEvent(ical.ConvertEvent(e, id, tz)) }