enough_icalendar 0.3.0
enough_icalendar: ^0.3.0 copied to clipboard
iCalendar library in pure Dart. Fully compliant with RFC 5545 (iCalendar) and RFC 5546 (iTIP).
0.3.0 #
- Render
VCalendar,VEventinstances, etc just by calling theirtoString()method - Set any properties
- Set any propery parameters
- Easily generate invites with
VCalendar.createEvent(...) - Support any
VEventspecific iTIP / RFC 5546 functions:- change participant status (accept, decline, delegated) with
VCalendar.replyWithParticipantStatus(...) - delegate to another attendee with
VCalendar.delegate(...) - create a counter proposal with
VCalendar.counter(...) - accept a counter proposal with
VCalendar.acceptCounter(...) - reject a counter proposal with
VCalendar.declineCounter(...) - cancel an event for all with
VCalendar.cancelEvent(...) - cancel an event for specific attendees with
VCalendar.cancelEventForAttendees(...)
- change participant status (accept, decline, delegated) with
- Improve documentation
0.2.0 #
- Improve documentation
- Renamed
ComponenttoVComponentfor clarity
0.1.0 #
- Initial release with full parsing and high level API support.