Skip to content

Releases: thellmund/Android-Week-View

Release 3.2

15 Feb 09:05
Compare
Choose a tag to compare
  • New: Better interoperability with Kotlin by adding nullability information and lambda methods to WeekView
  • New: You can limit the date range of the calendar via weekView.setMinDate(date) and weekView.setMaxDate(date).
  • New: You can customize the interval of hours displayed in the time column.
  • New: You can choose to display the hour separators in the time column.
  • New: You can set a custom text color for individual events, via weekViewEvent.setTextColor(int textColor).
  • New: The text size of all-day events can now be set via allDayEventTextSize. The height of all-day event chips will adapt accordingly. In the same breath, this release deprecates allDayEventHeight.
  • Improved: Events that span multiple days no longer show a corner radius at the end of a day if they continue on the next day, or at the beginning of a day if they began on the previous day.
  • Improved: The paddings in the header have been tweaked to be more consistent.
  • Fixed: Events after the change to daylight saving time were displayed on the wrong date.
  • Fixed: Changing the number of days no longer scrolls the calendar back to the current date.
  • Fixed: When showFirstDayOfWeekFirst is set, WeekView now displays the correct day, depending on your setting of firstDayOfWeek.
  • Fixed: While scrolling, the header would sometimes shrink even if all-day events were visible. This is no longer the case.

Thanks @Bwaim and @cs8898 for contributing to this release!

Release 3.1.3

01 Dec 16:36
724cc91
Compare
Choose a tag to compare
Update README.md

Release 3.1.2

25 Nov 18:47
Compare
Choose a tag to compare
Fix issue where tapping multi-day events lead to a crash, minor other…

Release 3.1.1

14 Nov 22:17
ec4bfe4
Compare
Choose a tag to compare
Merge pull request #5 from SapuSeven/develop

Fixed some attributes

Release 3.1

13 Nov 22:48
c3b5ae9
Compare
Choose a tag to compare
Update README.md

Release 3.0

04 Nov 22:36
45a704c
Compare
Choose a tag to compare
Update README.md

Release 2.0.1

19 Sep 16:16
Compare
Choose a tag to compare

This release introduces the singleDayHorizontalMargin attribute, which adds a margin on the left and right side of all events in the single day view, stopping the events from sticking on the edge of the screen.

Release 2.0

08 Sep 19:22
Compare
Choose a tag to compare

This release introduces WeekViewDisplayable, an interface that can be implemented by any data class that should be displayed in WeekView. Instead of converting your data class to WeekViewEvent in onMonthChanged(), you can put the conversion code in your data class and thus declutter your code.

Release 1.3

08 Sep 17:53
Compare
Choose a tag to compare

This release brings compatibility with apps that rely on Support Library 28.