Releases: Enough-Software/enough_icalendar
Releases · Enough-Software/enough_icalendar
v0.16.0
v0.15.0
v0.14.0
- Ensure compatibility with Flutter 3.10 - with thanks to hurkanugur!
v0.13.0
- Again, thanks to martingeorgiu the support for parsing Apple-originating iCalendar invites has been improved.
v0.12.0
0.12.0
- Thanks to martingeorgiu for the following great changes:
- support Apple format by not requiring a standard and a daylight for every timezone
- remove Flutter dependency
v0.11.0
- support
X-MICROSOFT-SKYPETEAMSMEETINGURL
property directly.
v0.10.0
- Forward
customParser
argument correctly, in case you need to support further properties directly
v0.9.0
v0.8.0
- Support
X-MICROSOFT-CDO-ALLDAYEVENT
property, access it viaVEvent.isAllDayEvent
- Attendees are now optional when creating an event
v0.7.0
- Uses UTC date times when encountering UTC DateTime values. To get the local time, call
toLocal()
, e.g.final localStartTime = event.start!.toLocal();