Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

fix(deps): update dependency com.github.thellmund.android-week-view:core to v5 #1572

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 24, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.github.thellmund.Android-Week-View:core 4.1.6 -> 5.3.2 age adoption passing confidence

Release Notes

thellmund/Android-Week-View (com.github.thellmund.Android-Week-View:core)

v5.3.2

Compare Source

(2021-06-14)

  • Fixed: WeekView crashed when zooming in and out when very short events were displayed.

v5.3.1

Compare Source

(2021-06-13)

  • Updated: WeekView now shortens events that are outside custom time ranges.
  • Fixed: WeekView didn’t properly remove deleted events when using a PagingAdapter.
  • Fixed: WeekView crashed when using a windowBackground that wasn’t a color.
  • Fixed: WeekView crashed when dealing with certain time ranges.
  • Fixed: WeekView completely omitted the subtitle when it didn’t fit.

v5.3.0

Compare Source

(2021-03-03)

  • Breaking: The deprecation level of several properties has been increased from warning to error.
  • Fixed: WeekView no longer ignores uses day background colors set in code or XML.

v5.2.4

Compare Source

(2021-02-14)

  • Changed: The jsr310 module now uses core library desugaring, which allows it to be used starting at API 21 instead of API 26.

v5.2.3

Compare Source

(2021-02-06)

  • Changed: The emoji module now initializes automatically on start-up. Calling weekView.enableEmojiProcessing() is no longer necessary.
  • Fixed: WeekView no longer crashes when accessing firstVisibleDate and lastVisibleDate before the initial render.
  • Fixed: WeekView now calls adapter.onRangeChanged() reliably again on API 25 and below.

Thanks for contributing, RemiNV!

v5.2.2

Compare Source

(2020-12-30)

  • Changed: firstVisibleHour now returns the first partially visible hour as an Int and takes into account minHour. To retrieve the first fully visible hour, you can use firstFullyVisibleHour.
  • Fixed: WeekView now only calls onRangeChanged() when a scroll has finished. Previously, it would call it for every date that it scrolled past.
  • Fixed: WeekView now correctly preserves the first visible date when switching the number of visible days.
  • Fixed: WeekView now scrolls correctly when used in the Fragment of a ViewPager.

Thanks to everyone who reported issues!

v5.2.1

Compare Source

(2020-11-25)

This release fixes a build issue introduced in the last version.

v5.2.0

(2020-11-19)

  • New: WeekView can now display blocked times. To enable this, WeekViewEvent<T> was replaced by the sealed class WeekViewEntity, which can be of type Event<T> or BlockedTime. Refer to the wiki to get started.
  • Changed: WeekViewDisplayable<T> is now deprecated. Now, submit elements of type T directly to WeekView’s adapter by calling adapter.submitList(List<T>). Then, implement onCreateEntity() in your adapter to create a WeekViewEntity from your object.
  • Changed: The methods for scrolling to specific dates and times have been streamlined. You should now use scrollToDate(date: Calendar), scrollToTime(hour: Int, minute: Int), and scrollToDateTime(dateTime: Calendar).
  • Changed: WeekView no longer supports emojis by default. To add emoji support, you must add a dependency to com.github.thellmund.Android-Week-View:emoji:x.y.z and call weekView.enableEmojiProcessing() before submitting events.
  • Fixed: WeekView no longer forgets to call onEmptyViewLongClick() if an empty area in the calendar was long-clicked.

v5.0.3

Compare Source

(2020-11-10)

  • Fixed: WeekView no longer ignores goToCurrentTime() if it’s already scrolled to the current date, but not the current time.

Thanks for reporting this, FeFelten!

v5.0.2

Compare Source

(2020-11-10)

  • Changed: WeekView no longer throws an IllegalArgumentException if goToHour() is called with an hour outside the accepted time range. Instead, it coerces the provided argument into the range of minHour and maxHour.
  • Fixed: WeekView no longer renders very short events incorrectly.
  • Fixed: WeekView no longer scrolls to the wrong time when calling goToCurrentTime().

v5.0.1

Compare Source

(2020-11-03)

  • Fixed: WeekView no longer handles events incorrectly if their time zone is different from the device’s time zone.
  • Fixed: WeekView no longer renders the bottom border of multi-day events incorrectly.

v5.0.0

Compare Source

(2020-10-20)

This release contains new functionality and includes breaking changes. To get started, take a look at the wiki.

  • New: WeekView now works in right-to-left mode.
  • New: You can now use SpannableString for event titles and locations to provide custom styling.
  • New: You can now choose to show the current week number in the header.
  • New: You can now elevate the header by providing a header row bottom shadow.
  • New: You can now set the text color for weekend date labels via weekendTextColor.
  • Changed: WeekView now relies on WeekView.Adapter<T> for submitting events and providing callbacks. As a consequence, all listeners used for click and scroll callbacks have been removed.
  • Changed: WeekView now uses DateFormatter and TimeFormatter to format date and time labels. DateTimeInterpreter has been deprecated and will be removed soon.
  • Changed: WeekView now scrolls more naturally. In the process, multiple scrolling-related attributes have been deprecated.
  • Changed: WeekView now automatically handles newline characters in date labels. As a consequence, the singleLineHeader attributes has been removed.
  • Changed: WeekView now animates changes to the header height.
  • Changed: WeekView now shows all-day events in a vertical arrangement by default. To arrange them horizontally, set arrangeAllDayEventsVertically to false.
  • Changed: WeekView no longer uses a generic. As a consequence, you no longer need to use findViewById<WeekView<T>>.
  • Changed: WeekView no longer replaces events of months that have already been cached when using a paginated approach. To force-refresh the cache, call refresh() on an implementation of WeekView.PagingAdapter.
  • Fixed: WeekView no longer crashes with a ConcurrentModificationException when submitting new events in quick succession.
  • Fixed: WeekView no longer renders borders of multi-day events incorrectly.
  • Fixed: WeekView no longer draws the day background incorrectly when minHour is set.
  • Fixed: WeekView no longer keeps outdated events around if an empty list of events was submitted through WeekView.SimpleAdapter.
  • Fixed: WeekView no longer uses incorrect dates for minDate and maxDate.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/com.github.thellmund.android-week-view-core-5.x branch 2 times, most recently from f688ff9 to d1f0b95 Compare May 27, 2023 20:48
@renovate renovate bot force-pushed the renovate/com.github.thellmund.android-week-view-core-5.x branch from d1f0b95 to 4541a11 Compare June 11, 2023 21:56
@renovate renovate bot force-pushed the renovate/com.github.thellmund.android-week-view-core-5.x branch 4 times, most recently from f72bc8f to 4fabde6 Compare July 7, 2023 09:24
@renovate renovate bot force-pushed the renovate/com.github.thellmund.android-week-view-core-5.x branch from 4fabde6 to 634d5b9 Compare July 12, 2023 16:33
@renovate renovate bot force-pushed the renovate/com.github.thellmund.android-week-view-core-5.x branch from 634d5b9 to e4fbefe Compare July 22, 2023 13:18
@renovate renovate bot force-pushed the renovate/com.github.thellmund.android-week-view-core-5.x branch 2 times, most recently from e6d1699 to f5b6d40 Compare August 4, 2023 09:42
@renovate renovate bot force-pushed the renovate/com.github.thellmund.android-week-view-core-5.x branch 2 times, most recently from fbe3ec5 to 7c268e7 Compare August 29, 2023 12:35
@renovate renovate bot force-pushed the renovate/com.github.thellmund.android-week-view-core-5.x branch 3 times, most recently from 44f74c7 to 80ddeef Compare September 16, 2023 16:57
@renovate renovate bot changed the title Update dependency com.github.thellmund.Android-Week-View:core to v5 fix(deps): update dependency com.github.thellmund.android-week-view:core to v5 Sep 16, 2023
@renovate renovate bot force-pushed the renovate/com.github.thellmund.android-week-view-core-5.x branch 13 times, most recently from 069308f to 839c260 Compare September 19, 2023 23:27
@renovate renovate bot force-pushed the renovate/com.github.thellmund.android-week-view-core-5.x branch 5 times, most recently from 388b133 to 6b22b23 Compare September 20, 2023 21:08
@renovate renovate bot force-pushed the renovate/com.github.thellmund.android-week-view-core-5.x branch from 6b22b23 to d2468c1 Compare October 16, 2023 19:06
@renovate renovate bot force-pushed the renovate/com.github.thellmund.android-week-view-core-5.x branch from d2468c1 to 5afd2b3 Compare December 2, 2023 20:02
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants