All Versions
30
Latest Version
Avg Release Cycle
59 days
Latest Release
2057 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v2.0.1 Changes
January 23, 2019๐ Changes:
- โก๏ธ Update ThreeTenABP to 1.1.1
- โก๏ธ Update build tools / gradle version to latest
-
v2.0.0 Changes
September 07, 2018- ๐ New: Changed
java.util.Calendar
in favor ofjava.time.LocalDate
. - ๐ New: Api naming for setting the arrows drawable:
setLeftArrow
andsetRightArrow
- ๐ Fix: Range selection ordering & Issues
- ๐ Fix: Timezone Issues
- ๐ Fix: Now the Month is indexed from 1 to 12 (previously 0-11 due to
java.util
api) - ๐ Fix: RTL Support
- ๐ Fix: Remove Restored XML Parameters
- ๐ Code Style Reformat
- Replaced arrows pngs with vectors
- ๐ New: Changed
-
v2.0.0-RC2 Changes
August 15, 2018๐ Fixed
- ๐ Fixed RTL Support
- ๐ Fixed Remove Restored XML Parameters
๐ Changes:
- Replaced arrows pngs with vectors
- ๐ New Api naming for setting the arrows drawable:
setLeftArrow
andsetRightArrow
-
v2.0.0-RC1 Changes
July 27, 2018โ Removed
- โ Removed
java.util.Calendar
in favor ofjava.time.LocalDate
.
๐ Fixed
- ๐ Fixed Range selection ordering & Issues
- ๐ Fixed Timezone Issues
๐ Changes:
- ๐ Code Style Reformat to Prolific's latest.
- โ Removed
-
v1.6.1 Changes
July 23, 2018โ Added
- 0๏ธโฃ A new xml parameter for choosing selection mode
app:mcv_selectionMode="single"
with the possible values beingnone
,single
,multiple
andrange
. Default mode is still single.
โ Removed
- โ Removed any references to
java.util.Date
in preference tojava.util.Calendar
, wherever it was used.
๐ Fixed
- Issue with weekdays not being shown after rotation changes.
- 0๏ธโฃ A new xml parameter for choosing selection mode
-
v1.6.0 Changes
July 06, 2018- ๐ New: Added api for setting long click listener for cells using
void setOnDateLongClickListener(OnDateLongClickListener longClickListener)
. - ๐ New: Show and Hide WeekDays row in xml and Programmatically.
- ๐ New: Added api for setting content description formatter
void setDayFormatterContentDescription(DayFormatter formatter)
. - ๐ New: Apply custom fonts through text appearance styling.
- ๐ Fix: Talkback improvements.
- ๐ Fix: Range mode selection issues.
- ๐ New: Added api for setting long click listener for cells using
-
v1.5.0 Changes
May 16, 2018โก๏ธ Updated
- โก๏ธ Gradle and dependencies have now been updated to the latest.
โก๏ธ Host service updated
The library is now hosted on jitpack. Please refer to the installation section for more information.
maven { url 'https://jitpack.io' } ... dependencies { implementation 'com.github.prolificinteractive:material-calendarview:1.5.0' }
-
v1.4.3 Changes
February 27, 2017- ๐ New: Added set click listener method for title
- ๐ New: Added
setSaveCurrentPosition
builder method to use the current position when switching mode - ๐ Fix: Fixed title update when only year changed
- ๐ Fix: Fixed decorator rendering with custom tile dimensions on API Level 21
- ๐ Fix: Added missing
dynamicHeightEnabled
save inonSaveInstanceState()
- ๐ Fix: If we used
match_parent
for the MaterialCalendarView but the size available is not enough, the view was truncated
-
v1.4.2 Changes
October 10, 2016- ๐ New: match_parent is now supported by tileSize, tileWidth and tileHeight
- ๐ New: api for title animation orientation horizontal/vertical
setTitleAnimationOrientation
- ๐ Fix: Issue with custom arrow mask being overwritten when set in xml
- ๐ Fix: Issue when clicking date outside of current year would trigger the wrong goToNext or goToPrevious method
- ๐ Fix: WeekDayFormatter would overwritten first day of the week
-
v1.4.0 Changes
June 23, 2016- New: Add select range functionality. Use
setSelectionMode(MaterialCalendarView.SELECTION_MODE_RANGE)
andsetOnRangeSelectedListener
- ๐ Breaking Change:
setFirstDayOfWeek
,setMin/MaxDate
, andsetCalendarDisplayMode
are moved to aState
object. Callmcv.state().edit()
to edit them and commit the changes withcommit
. See [CUSTOMIZATION_BUILDER](docs/CUSTOMIZATION_BUILDER.md) for usage details. - ๐ Change: Updated documentation regarding 1.3.0 additions
- ๐ Fix: Current month and title pager updates correctly if minDate is set after the current month
- ๐ Fix: Week number difference calculation correctly accounts for DST offsets. Thanks Igor Levaja!
- ๐ Fix: Date formatter uses L instead of M for month (standalone instead of context sensitive)
- New: Add select range functionality. Use