Skip to content

Releases: richardtop/CalendarKit

API Improvements: Editing & Styling

09 Jan 23:33
Compare
Choose a tag to compare
  1. Moved CalendarStyle to use structs instead of classes with NSCopying protocol support.
  2. It is possible to move an event to the day before or after the currently visible on a timeline by dragging past midnight, either all the way up or down.
  3. Fix fo issue #159

Pass date in the tap gesture recognizer delegate callbacks

08 Jan 21:57
Compare
Choose a tag to compare

Now CalendarKit passes the date which has been tapped on the timeline.
Breaking API change:

Before

func timelinePagerDidTap(timelinePager: TimelinePagerView)
func dayViewDidTapTimeline(dayView: DayView)

After

func timelinePagerDidTap(timelinePager: TimelinePagerView, date: Date)
func dayViewDidTapTimeline(dayView: DayView, date: Date)

Issue #224

Snapping behavior when editing events

09 Dec 22:45
Compare
Choose a tag to compare
  1. Add snapping behavior when editing events
  2. Create internal properties to expose snapping behavior as a public API later

Improve Dark Mode compatibility

19 Nov 21:31
Compare
Choose a tag to compare

Improve Dark Mode compatibility
Update example Dark style

Minor API updates

05 Nov 17:47
Compare
Choose a tag to compare
0.8.7

Release 0.8.7

Editing & Event Creation Support

10 Sep 13:22
Compare
Choose a tag to compare

CalendarKit has new API which now supports event editing and creation.

Fullscreen layout fix

10 Jun 20:36
Compare
Choose a tag to compare

Bugfixes

10 Jun 19:15
Compare
Choose a tag to compare

Fixed issues: #206, #207, #208.

Custom Calendar

15 May 00:35
Compare
Choose a tag to compare

Now CalendarKit supports custom calendar.

Introduce UIPageViewController

14 May 23:18
Compare
Choose a tag to compare

Introduce UIPageViewController to the CalendarKit