Skip to content

Releases: PatilShreyas/MaterialDialog-Android

Material Dialog v2.2.3

08 Jan 05:49
e3338c6
Compare
Choose a tag to compare

🔮 What's new?

  • Added library compatibility with Java 1.8
  • Added library compatibility with Android 11 (API 31)

✅Fixes

  • [#51] Set button alignments to center in dialog

✨ New Contributors

Many thanks🙏 to superstar contributors for improving and helping to make this library better 🚀.

Full Changelog: v2.2.2...v2.2.3

Material Dialog v2.2.2

25 Apr 06:12
1d907bd
Compare
Choose a tag to compare

This is a patch release including improvements.

🔮 What's new?

[#49] Generic Message support: Support for separate plain text and Spanned text

Added support for plain text (i.e. String) as well as Spanned text for dialog's message.

Earlier, in v2.2.1, there was only support for spanned formatted text for the message which was not generic. This fix now provides both the available configuration as per the need of the developer and the use case.

For example,

  • To set plain text message for dialog:
    .setMessage("Lorem Ipsum") 
  • To Spanned text message for dialog:
    .setMessage(Html.fromText("<b>Lorem <i>Ipsum</i></b>")) 

Many thanks 🙏 to @Awsom3D for suggesting this improvement and helping to make this library better 🚀.

Material Dialog v2.2.1

24 Apr 09:48
bff1b81
Compare
Choose a tag to compare

🔮 What's new?

  • [#42] Added alignment configuration for title and message. These texts can be aligned at LEFT, CENTER, RIGHT.
  • [#35] Added support for HTML spanned text for dialog message.

✅ Fixes

  • [#44] Added scrolling support for a dialog content (If the message text is too long then for small screen devices, dialog was not sufficient to show details and actions).

Many thanks 🙏 to @Awsom3D @fmeneuhe @yustapps for filing issues and suggesting these improvement features and making this library more usable.

Material Dialog v2.1.1

13 Feb 04:59
005fe20
Compare
Choose a tag to compare

Major changes

  • Changes in Package: com.shreyaspatil.* to dev.shreyaspatil.*.
  • Library is available on MavenCentral

How to use the library from maven central? See below snippet

repositories {
    mavenCentral()
}

dependencies {

    // Material Dialog Library
    implementation 'dev.shreyaspatil.MaterialDialog:MaterialDialog:2.1.1'
}

Material Dialog v2.1

01 Feb 16:22
Compare
Choose a tag to compare

This release fixes error/warning while using AbstractDialog class in setting buttons on Dialog.

Material Dialog v2.0

10 Dec 06:12
a745265
Compare
Choose a tag to compare

This version is stable and with a lot of improvements.

  • BottomSheetMaterialDialog can be instantiated in Fragment. (#18)
  • Provided Custom Styling for dialog. (#17) - Override custom styles for dialog.
  • Fixes Orientation View. (#9) - The animation will not be shown when device orientation is Landscape.

Material Dialog v1.0.0

10 Jun 14:19
Compare
Choose a tag to compare

This is the first release of Material Dialog