0.4.1
Note: This release introduced a regression which is fixed in version 0.4.2, please use 0.4.2 instead.
-
New methods and properties:
-
setMonthMargins()
andsetMonthPadding()
for setting the month margins and padding all at once to minimize data regeneration. -
updateMonthConfiguration()
andupdateMonthConfigurationAsync()
for seting theinDateStyle
,outDateStyle
,maxRowCount
andhasBoundaries
all at once to minimize data regeneration. -
setupAsync()
for the asynchronous setup of the calendar with an optional completion callback. This supplements the already availablesetup()
method. -
updateMonthRangeAsync()
for the asynchronous update of start and/or end month. This supplements the already availableupdateMonthRange()
method. -
daySize
for setting the size, in pixels for each day cell view. Replaces the deprecateddayWidth
anddayHeight
properties.
-
-
Deprecated methods and properties:
-
dayWidth
anddayHeight
properties are deprecated,daySize
should be used instead. -
updateStartMonth()
andupdateEndMonth()
methods are deprecated as they are just helper methods that only made the code more obscure especially with the introduction of a lot of similarly-named methods for async operations. UseupdateMonthRange()
instead. -
Property setters for
monthMarginStart
,monthMarginEnd
,monthMarginTop
,monthMarginBottom
,monthPaddingStart
,monthPaddingEnd
,monthPaddingTop
,monthPaddingBottom
are deprecated, please use the equivalent setter methodssetMonthMargins()
andsetMonthPadding()
.
-
-
Some internal placeholder views and view groups previously used by the calendar to keep things in place have been removed. This means your calendar should now look really nice in the layout inspector (thanks @luis-cortes)
-
A lot of other internal optimizations.
Many thanks to @luis-cortes for a lot of ideas and code contributions that went into this release.