This repository has been archived by the owner on Sep 3, 2023. It is now read-only.
Releases: afollestad/material-dialogs
Releases · afollestad/material-dialogs
2.0.0-rc2
- File/folder chooser UI tweaks, more to come.
- File/folder chooser uses coroutines instead of threads to load contents.
- Color chooser grid selection invalidates ARGB input and vice versa.
- Color chooser color selection modifies action button colors for a nice effect.
2.0.0-rc1
- The fallback Maven repo definitely can be removed from your repositories - jCenter resolution is working well now.
- Consolidated internal code to reduce method count and library size.
- Removed framework attribute usages like
?selectableItemBackground
from XML styles since they are redundant (we override selectors programmatically anyways) and cause crashes on Android TV.
2.0.0-beta6
- Kotlin 1.3.10 and other internal dependency upgrades.
- Fix a title layout bug when an icon and a single-line title are used together.
- The hex input field for the color chooser's custom ARGB page is shown over the color preview to conserve space.
- Landscape layout support in the color chooser dialog.
- Most dialog types can be used together now, e.g.
message(...)
+listItems(...)
+checkboxPrompt(...)
, due to a redesign in how content views are managed.
2.0.0-beta5
- Add methods to clear action button listeners, see #1642.
- Tweak furthest action button end margin, see #1652.
- Disable overscroll when content is not scrollable, see #1653.
- Add optional
html
andlineSpacingMultiplier
params tomessage(...)
, see #1651. - Slightly increase icon/title margin, should resolve #1654.
2.0.0-beta4
- Tweaked the divider color in dark dialogs, see #1619.
- Fixed a crash in the color choosers when the pre-selected color is in the subcolors. See #1627.
- Added a parameter to allow multi-choice dialogs to not have a selection. See #1631.
- Color chooser dialogs can now display a second page which allows ARGB selection. See the README and sample project.
2.0.0-beta3
- File & folder choosers load contents on a separate thread - they should feel a bit faster. See #1615.
- Fix a bug which would pre-select the wrong sub-color in color choosers.
- Fix how we show a checkbox over a selected color in color choosers when the color is transparent.
2.0.0-beta2
- Minor fixes to bottom divider visibility logic in list dialogs.
- Changed how file chooser empty text is positioned. See #1614.
- Transparent is displayed differently in color chooser dialogs, rather than just being white. See #1604.
2.0.0-beta1
The library has been migrated from legacy Support Libraries to the new Jetpack AndroidX packages.
2.0.0-alpha12
- Fix dependency resolving issue on Windows machines related to Kotlin compiler flags. See #1611.
- Added an optional parameter to
.customView(...)
to not set default vertical content padding. See #1612.
2.0.0-alpha11
- Add theme attributes for title and content color in case you don't want dialogs to use
?android:textColorPrimary
and?android:textColorSecondary
. See #1603. - Add the ability to allow folder creation from file and folder choosers. See #1602.
- Updated Kotlin to 1.2.70.