Releases: PatilShreyas/MaterialDialog-Android
Material Dialog v2.2.3
🔮 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 🚀.
- @germainkevinbusiness made his first contribution in #59
- @jatsqi made their first contribution in #52.
Full Changelog: v2.2.2...v2.2.3
Material Dialog v2.2.2
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
🔮 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
Major changes
- Changes in Package:
com.shreyaspatil.*
todev.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
This release fixes error/warning while using AbstractDialog
class in setting buttons on Dialog.
Material Dialog v2.0
Material Dialog v1.0.0
This is the first release of Material Dialog