kizitonwose/Calendar
 Watch   
 Star   
 Fork   
17 days ago
Calendar

2.5.1

Compose:

  • Fix - Changing the values passed to rememberCalendarState() function does not refresh the calendar.
2024-02-12 00:07:41
Calendar

2.5.0

Compose:

  • Add support for Compose UI 1.6.1
2023-12-14 02:20:39
Calendar

2.5.0-beta01

All the changes in 2.4.1 and Compose UI 1.6.0-beta02

2023-12-14 02:13:56
Calendar

2.4.1

Compose:

  • Fix - Changing firstDayOfWeek does not refresh the current month #514

View:

  • Bring back the previous (somewhat better) snap helper for the horizontal calendar.
2023-11-04 20:36:17
Calendar

2.5.0-alpha01

Compose:

  • Add support for Compose UI 1.6.0 alpha.
2023-10-03 14:39:01
Calendar

2.4.0

Compose:

  • Upgrade Compose UI to 1.5.2
  • Upgrade Compose compiler to 1.5.3

General Dependencies:

Update Kotlin to 1.9.10 Update Android Gradle plugin to 8.1.0

2023-06-04 19:46:35
Calendar

2.4.0-beta01

Compose:

  • Add support for Compose UI 1.5.0 beta.

General Dependencies:

Update Desugar JDK library to 2.0.3 Update Kotlin to 1.8.21 Update Android Gradle plugin to 8.0.2

2023-04-02 16:10:55
Calendar

2.3.0

Compose:

  • Update compose UI version to 1.4.0
  • Update compose compiler version to 1.4.4

View:

  • Update RecyclerView to 1.3.0
2023-03-05 00:52:46
Calendar

2.2.0

Compose:

  • #445 Explicitly set single page snapping to avoid using the default decayed page snapping in compose 1.4
  • Update Compose compiler to 1.4.3
  • Update Compose UI to 1.3.3

View:

  • #442 Allow reloading all available day positions for a date.

Example:

val date = LocalDate.now() // your desired date
calendarView.notifyDateChanged(date, *DayPosition.values())
// OR
calendarView.notifyDateChanged(date, DayPosition.InDate, DayPosition.MonthDate, DayPosition.OutDate)

// This also means that you can do any kind of partial reload 
// For example, you can reload only the in-date and out-date
calendarView.notifyDateChanged(date, DayPosition.InDate, DayPosition.OutDate)
  • #451 Fix: Page snapping does not work as expected when the item size is smaller than the calendar.

General Dependencies:

  • Update Desugar JDK library to 2.0.2
  • Update Kotlin to 1.8.10
  • Update Android Gradle plugin to 7.4.2
2022-12-26 22:22:28
Calendar

2.1.1

Compose:

  • Fix: Some state properties do not update the UI.

View:

  • Fix: WeekCalendarView applies the wrong attribute.