Changelog History
Page 1
-
v4.3.1
September 22, 2020 -
v4.3.0 Changes
August 04, 2020Just use the new
vertical
orhorizontal
modifier on your calendar view! -
v4.2.0 Changes
August 01, 2020- โก๏ธ Updated ElegantPages to fix bug where the delegate was being called at calendar creation
- ๐ Fixed bug where if the end date was the exact start of a given month, that month wouldnโt be shown
- Lowered the swift tools version. Now compatible with any Xcode 11 version!
- โก๏ธ Updated the examples
-
v4.1.0 Changes
July 17, 2020Just use
.frame(width:)
on yourMonthlyCalendarView
-
v4.0.2
July 15, 2020 -
v4.0.1 Changes
July 15, 2020๐ Hotfix for the previous release. Manually scrolling to a particular month should work fine now.
-
v4.0.0 Changes
July 15, 20208 new themes that look elegant in any app!
Major changes:
๐ง
CalendarConfiguration
now doesn't manage the calendar's theme or haptics settings anymore. This makes sense because a change in the configuration should result in a complete reset of the calendar. This means that whatever month or year the user is scrolled on currently is reset as well. In this line of thought, it doesn't make sense for a full reset to occur whenever the theme or haptic settings change. These changes should only result in a few minor adjustments in appearances and logic. State is preserved and user experience remains well now whenever the theme or haptics settings are changed now.The new syntax for this is:
0๏ธโฃ
ElegantCalendarView(...).theme(_yourTheme or one of the default ones)
ElegantCalendarView(...).allowsHaptics(_whether or not you want to enable haptics)
๐ See README.md customization for more info. The great thing about this is that you can now change the theme or haptics settings by passing in a binding variable, which is a great trend towards declarative code.
-
v3.0.1
July 14, 2020 -
v3.0.0 Changes
July 14, 2020๐ Calendar scrolls are quicker now in line with the new haptics and just feels better in general. The monthly header and day view text font size has been decreased just a tad bit in proportion to the view size. The scroll back to today icon has been replaced with a custom icon that looks much cleaner.
๐ Major change: Use of custom icons instead of SF Symbol icons. See
README.md
instructions on how to use the new icons. -
v2.0.0 Changes
July 13, 2020If you want, you can now just use the yearly or monthly view in your app. The models for these views have been made public and refined for greater flexibility. To use these views by themselves, use the correct
ObservableObject
:MonthlyCalendarManager
orYearlyCalendarManager
.Major change: The naming of a delegate function has also been changed:
func calendar(didSelectDate date: Date)
->func calendar(didSelectDay date: Date)
.