Skip to content
This repository has been archived by the owner on Sep 3, 2023. It is now read-only.

Releases: afollestad/material-dialogs

3.3.0

18 Feb 04:02
Compare
Choose a tag to compare
  • 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.

3.2.1

08 Feb 03:42
Compare
Choose a tag to compare
  • 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.

3.2.0

08 Feb 01:30
Compare
Choose a tag to compare
  • 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.

3.1.1

04 Sep 00:42
Compare
Choose a tag to compare
  • Kotlin, Gradle, etc. upgrades.
  • Resolved #1867.
  • Resolved #1835.
  • Resolved #1847.
  • Resolved #1837.

3.1.0

02 Jul 18:23
Compare
Choose a tag to compare
  • 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.

3.0.2

29 Jun 20:46
Compare
Choose a tag to compare

3.0.1

27 Jun 00:10
Compare
Choose a tag to compare
  • 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.

3.0.0

25 Jun 01:56
Compare
Choose a tag to compare
  • 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.

3.0.0-rc4

15 Jun 18:13
Compare
Choose a tag to compare
  • Resolve #1815
  • Resolve #1817
  • Resolve #1818

3.0.0-rc3

08 Jun 01:20
Compare
Choose a tag to compare
  • Fixed the reusability of bottom sheet dialogs. You can call show() on a dialog that has been hidden and it will animate in as intended.