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

Releases: afollestad/material-dialogs

0.9.5.0

25 Oct 19:10
Compare
Choose a tag to compare

0.9.4.7

17 Aug 15:56
Compare
Choose a tag to compare

Support libs 26.0.1, correct support for API 26.

0.9.4.6

13 Aug 16:01
Compare
Choose a tag to compare

Gradle, Gradle Plugin, Support lib updates.

0.9.4.3

12 Apr 03:44
Compare
Choose a tag to compare
  1. Support libs 25.3.1
  2. MaterialProgressBar 1.4.1

0.9.4.2

21 Mar 13:12
Compare
Choose a tag to compare

Support libs 25.3.0
Cleanup and formatting

0.9.4.1

08 Mar 20:07
Compare
Choose a tag to compare

This release has a quick hotfix for the previous 0.9.4.0 release.


To recap, here's what's new:

  1. Gradle and Gradle plugin updates.
  2. Support library 25.2.0.
  3. Fixed some bugs in the file/folder chooser dialogs.
  4. Removed some old deprecated methods.
  5. More components of different dialogs should be focusable for users that interact with them using keyboards.
  6. Internal private library resources should no longer show up in auto completion.
  7. Formatted and cleaned up the overall codebase.

0.9.3.0

06 Feb 01:59
Compare
Choose a tag to compare
  1. Fixed a rare crash in list dialogs.
  2. Fixed the goUpLabel not applying sometimes in the file/folder chooser dialogs.
  3. List dialogs are allowed to not have any items initially (0 size).
  4. The color chooser, file chooser, and folder chooser dialogs now have a dismiss listener in their callbacks.
  5. Builder.content() now only uses Html.fromHtml() if you pass true in the optional second parameter.
  6. Support library 25.1.1.

0.9.2.3

10 Jan 23:18
Compare
Choose a tag to compare

Officially fixed dialogs being too wide and/or too tall, on all devices. This is a vital upgrade if you used the past two updates!

0.9.2.1

04 Jan 01:05
Compare
Choose a tag to compare
  1. Fixed file/folder chooser dialog crash
  2. Build Tools 25.0.1, Google libs 25.1.0, Gradle and Gradle plugin updates
  3. Fixed "\n" passed in string to .content() not working, due to auto-HTML parsing.
  4. Extension filter in file chooser compares file names at the end, rather than as a whole (endsWith vs contains).
  5. Added .choiceWidgetColor(ColorStateList) method to the Builder, which allows you to specify a custom ColorStateList that is applied to theme check boxes and radio buttons in single/multi-choice dialogs. .widgetColor() is still used otherwise.
  6. Added .tag(Object) to the Builder and getTag() to MaterialDialog.
  7. Sample project uses Jack and Java 8, all sample code uses lambdas in callbacks.
  8. When applying a custom background color to dialogs, there will no longer be unthemed pixels on the rounded corners.
  9. Some other edge case bug fixes and logic tweaks.

0.9.1.0

04 Nov 22:41
Compare
Choose a tag to compare
  1. Google libs 25.0.0
  2. Target API 25
  3. Gradle 3.1 and Gradle plugin 2.2.2
  4. MaterialProgressBar 1.3.0
  5. The minimum API level is now 13 (Honeycomb). Time to stop using Froyo and Gingerbread.
  6. Fixed inputRangeRes not allowing max length to be disabled (-1). Issue #1184.
  7. When passing HTML string resources, they are correctly stored as HTML strings. No need to use Html.fromHtml() manually. Issue #1204.
  8. Fixed the initially selected index not being scrolled to correctly in single and multi-choice dialogs. Issue #1173.
  9. You are no longer limited to just LinearLayoutManager and GridLayoutManager. Issue #1186.