schedules 1.0.0
schedules: ^1.0.0 copied to clipboard
A powerful and flexible Dart package for managing recurring events.
1.0.0 #
- Begin stable build versioning
- Add two new methods for generating lists of dates that occur on a given schedule (thank you @v.paragallo.ict)
0.0.5 #
- Fix bugs in the date comparisons by properly ignoring the time component
- Add a
daysApartFrom
extension to clean up thedifference
calculation
0.0.4 #
- Revise description for simplicity
0.0.3 #
- Add a release workflow file
- Add test and analyze workflow for CI
- Add an example
- Improve description
0.0.2 #
- Fix typos and grammar in README
0.0.1 - Initial Version (2023-10-08) #
- Schedule sealed base class with subclasses for different schedule types:
- Singular: A single occurrence
- Daily: Repeats every n days
- Weekly: Repeats every n weeks on the given weekdays (Su - Sa)
- Monthly: Repeats every n months on the given day(s) of the month
- Yearly: Repeats every n years on the specified date
- Optional
endDate
parameter to constrain the schedule