Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency com.afollestad.material-dialogs:core to v3 #730

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 15, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.afollestad.material-dialogs:core 0.9.6.0 -> 3.3.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

afollestad/material-dialogs (com.afollestad.material-dialogs:core)

v3.3.0

Compare Source

  • Added md_line_spacing_body global theme attribute, which sets a global default for message line
    spacing. See #​1903.
  • Added some assertions and sanity checks to avoid choice list adapter out of bounds crashes.
    See #​1906.
  • Corner radius should not apply to the bottom of bottom sheet dialogs. See #​1941.
  • Fix dialog titles being cut off with custom fonts. See #​1936.
  • If noVerticalPadding is set with customView(...), padding is not applied to the bottom of
    the content ScrollView if scrollable is enabled. Resolves #​1834.
  • Input dialog styling is not enforced by the dialog. The global default for TextInputLayout
    (textInputStyle) is used instead. See #​1857.

v3.2.1

Compare Source

  • Fixed the module-name given to the Kotlin compiler for each Gradle module, should fix
    extension function resolution issues.

3.2.0
  • Dependency upgrades.
  • Reduce single/multi choice list dialog margin between text and controls.
  • Fix updateTextColor(Int) on action buttons not always persisting. See #​1783.
  • Fix corner radius not working when views have a background. See #​1840.
  • All dialogs will have a default corner radius of 4dp. See #​1909.
  • Non-cancelable bottom sheet dialogs cannot be swiped to dismiss.
  • Other minor changes.

v3.1.1

Compare Source

v3.1.0

Compare Source

  • Upgraded afollestad/date-picker library to 0.6.1.
  • The updateListItems(...) method has been split into three variants so that a new listener can be
    passed for plain, single, and multi-choice list dialogs.
  • Add horizontalPadding boolean parameter to customView(...) - when true, 24dp padding is added
    to the left and right of your custom view.

v3.0.2

Compare Source

v3.0.1

Compare Source

  • Set module names for the Kotlin compiler, so that they don't clash with other third party libs.
  • The module name for the newer date-picker dependency is also being set now, so your app won't have to exclude its module file.

v3.0.0

Compare Source

  • Kotlin 1.3.40.
  • Added static DEFAULT_BEHAVIOR field to MaterialDialog, you can override the default behavior for all dialogs.
  • Integrated by new date-picker library to replace the stock date-picker. It will correctly fill the width of dialogs and bottom sheets.

v2.8.1

Compare Source

  1. Make some classes internal which don't need to be exposed to consumers.
  2. Allow plain date and time dialogs to require a future date/time, like the datetime dialog does.
  3. When the datetime dialogs require a future time, the action button is auto-invalidated when the system time changes.
In 2.8.0:
  1. Kotlin 1.3.30.
  2. Add an updateListItems(...) method to update plain/single/multi-choice items after dialog creation.
  3. Fix datetime dialog layouts looking uncentered by only applying dialog width wrap in landscape.
  4. Other bug fixes and tweaks.

v2.8.0

Compare Source

  1. Kotlin 1.3.30.
  2. Add an updateListItems(...) method to update plain/single/multi-choice items after dialog creation.
  3. Fix datetime dialog layouts looking uncentered by only applying dialog width wrap in landscape.
  4. Other bug fixes and tweaks.

v2.7.0

Compare Source

  1. Undid dialog max width changes again, to what they were before they looked small. Added maxWidth setter function that you can use to custom dialog max widths if you wish, although it's discouraged.
  2. Added a dialogWrapContent parameter to customView(...) which instructs the dialog to set its max width to the measured width of your custom view.
  3. The datetime dialogs use the dialogWrapContent parameter above, which fixes how they look in landscape etc.
  4. You can set a maxDate for date picker dialogs.
  5. Misc. bug fixes and code cleanup.

v2.6.0

Compare Source

  1. Added md_color_widget_unchecked attribute to compliment the previously added md_color_widget attribute.
  2. Fixed time and datetime pickers not handling default time correctly. See #​1766.
  3. Use JDK 8 version of the Kotlin plugin dependency.

v2.5.0

Compare Source

  1. Added md_color_widget theme attribute to apply custom coloring to checkbox prompts and controls in single/multi-choice lists.
  2. Fix the list selection callback in plain lists when waitForPositiveButton=false. See #​1751.

v2.4.0

Compare Source

  1. Fix action button selectors being cut off on the bottom, see #​1759.
  2. Re-applied smaller dialog max width values to match the Material spec.
  3. Fix vertical spacing on datetime dialogs when there is no dialog title, see #​1757.
  4. Fixed neutral button positioning, although you still should prefer to not use it.
  5. Use semi-transparent primary theme color for the ripple of action buttons on API 21+.

v2.3.0

Compare Source

datetime no longer has a dependency on ThreetenBP. Uses Java's Calendar instead. Sorry to those who are already using it with LocalDateTime.

v2.2.1

Compare Source

v2.2.0

Compare Source

  1. Added a datetime module which provides date, time, and date/time selector dialogs.
  2. Reverted dialog max-width values to the previous values.
  3. Action buttons should use the primary theme color by default per the newer specs.

v2.1.0

Compare Source

  1. Fix layout issues with action buttons and content views (to match Material Spec correctly, again). To visualize this, call debugMode(true) on your dialogs before opening them.
  2. Dependency upgrades.
  3. A new lifecycle module is available, which for now just adds an extension method to auto close dialogs when a lifecycle owner is destroyed. Check out the README for details. (will be available through jCenter shortly)
  4. Fixed background fill color on input field of input dialogs when using alpha versions of Material Components alongside this lib.

v2.0.3

Compare Source

Another very minor release.

Fixed list item text not being vertically centered in choice lists.

v2.0.2

Compare Source

Very minor release.

Fixes issues with stacked action button text gravity.

v2.0.1

Compare Source

  1. Fix input dialog button enabled invalidation logic when using max length and allowEmpty=false.
  2. Include ColorPalette class in the color module, which provides primary and accent colors to use in the color chooser dialogs.
  3. Added a theme attribute you can use in your app to not use all caps in action buttons.
  4. Fix an input dialog crash.

v2.0.0

Compare Source

Version 2 is no longer a release candidate, a stable release is here. Please continue to report any issues, of course.


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Auto approved automated PR

@github-actions github-actions bot added the dependencies Pull requests that update a dependency file label Sep 15, 2024
Copy link
Contributor

This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@renovate renovate bot enabled auto-merge (squash) November 7, 2024 16:52
@renovate renovate bot force-pushed the renovate/major-materialdialogs branch from 5e5e122 to eb44e31 Compare November 7, 2024 16:52
@renovate renovate bot force-pushed the renovate/major-materialdialogs branch 3 times, most recently from e6cbd02 to af9298e Compare November 16, 2024 03:12
@renovate renovate bot force-pushed the renovate/major-materialdialogs branch from af9298e to e4701db Compare November 23, 2024 04:31
@renovate renovate bot force-pushed the renovate/major-materialdialogs branch from e4701db to 5586207 Compare November 30, 2024 04:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants