diff --git a/README.md b/README.md index ee4e90a5b..a465b6cdb 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ core and normal-use functionality. ```gradle dependencies { ... - implementation 'com.afollestad.material-dialogs:core:2.4.0' + implementation 'com.afollestad.material-dialogs:core:2.5.0' } ``` @@ -43,7 +43,7 @@ The `input` module contains extensions to the core module, such as a text input ```gradle dependencies { ... - implementation 'com.afollestad.material-dialogs:input:2.4.0' + implementation 'com.afollestad.material-dialogs:input:2.5.0' } ``` @@ -58,7 +58,7 @@ The `files` module contains extensions to the core module, such as a file and fo ```gradle dependencies { ... - implementation 'com.afollestad.material-dialogs:files:2.4.0' + implementation 'com.afollestad.material-dialogs:files:2.5.0' } ``` @@ -73,7 +73,7 @@ The `color` module contains extensions to the core module, such as a color choos ```gradle dependencies { ... - implementation 'com.afollestad.material-dialogs:color:2.4.0' + implementation 'com.afollestad.material-dialogs:color:2.5.0' } ``` @@ -88,7 +88,7 @@ The `datetime` module contains extensions to make date, time, and date-time pick ```gradle dependencies { ... - implementation 'com.afollestad.material-dialogs:datetime:2.4.0' + implementation 'com.afollestad.material-dialogs:datetime:2.5.0' } ``` @@ -103,6 +103,6 @@ The `lifecycle` module contains extensions to make dialogs work with AndroidX li ```gradle dependencies { ... - implementation 'com.afollestad.material-dialogs:lifecycle:2.4.0' + implementation 'com.afollestad.material-dialogs:lifecycle:2.5.0' } ``` diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index a5cdda73c..2bfef1eef 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,7 +1,4 @@ -2.4.0 +2.5.0 -1. Fix action button selectors being cut off on the bottom, see #1759. -2. Re-applied smaller dialog max width values to match the Material spec. -3. Fix vertical spacing on datetime dialogs when there is no dialog title, see #1757. -4. Fixed neutral button positioning, although you still should prefer to not use it. -5. Use semi-transparent primary theme color for the ripple of action buttons on API 21+. \ No newline at end of file +1. Added `md_color_widget` theme attribute to apply custom coloring to checkbox prompts and controls in single/multi-choice lists. +2. Fix the list selection callback in plain lists when `waitForPositiveButton=false`. See #1751. \ No newline at end of file diff --git a/dependencies.gradle b/dependencies.gradle index 852943b64..8137d899b 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -3,8 +3,8 @@ ext.versions = [ minSdk : 16, compileSdk : 28, buildTools : '28.0.3', - publishVersion : '2.4.0', - publishVersionCode : 237, + publishVersion : '2.5.0', + publishVersionCode : 238, // Plugins gradlePlugin : '3.3.2', diff --git a/documentation/COLOR.md b/documentation/COLOR.md index 4c9a9c713..cfea2968f 100644 --- a/documentation/COLOR.md +++ b/documentation/COLOR.md @@ -16,7 +16,7 @@ The `color` module contains extensions to the core module, such as a color choos ```gradle dependencies { ... - implementation 'com.afollestad.material-dialogs:color:2.4.0' + implementation 'com.afollestad.material-dialogs:color:2.5.0' } ``` diff --git a/documentation/CORE.md b/documentation/CORE.md index a12b673b5..e758a3012 100644 --- a/documentation/CORE.md +++ b/documentation/CORE.md @@ -35,7 +35,7 @@ core and normal-use functionality. ```gradle dependencies { ... - implementation 'com.afollestad.material-dialogs:core:2.4.0' + implementation 'com.afollestad.material-dialogs:core:2.5.0' } ``` diff --git a/documentation/DATETIME.md b/documentation/DATETIME.md index af7d010f1..a01cd0518 100644 --- a/documentation/DATETIME.md +++ b/documentation/DATETIME.md @@ -16,7 +16,7 @@ The `datetime` module contains extensions to make date, time, and date-time pick ```gradle dependencies { ... - implementation 'com.afollestad.material-dialogs:datetime:2.4.0' + implementation 'com.afollestad.material-dialogs:datetime:2.5.0' } ``` diff --git a/documentation/FILES.md b/documentation/FILES.md index 4cf990028..5c49593b2 100644 --- a/documentation/FILES.md +++ b/documentation/FILES.md @@ -23,7 +23,7 @@ The `files` module contains extensions to the core module, such as a file and fo ```gradle dependencies { ... - implementation 'com.afollestad.material-dialogs:files:2.4.0' + implementation 'com.afollestad.material-dialogs:files:2.5.0' } ``` diff --git a/documentation/INPUT.md b/documentation/INPUT.md index 624d2ae60..87d47724c 100644 --- a/documentation/INPUT.md +++ b/documentation/INPUT.md @@ -19,7 +19,7 @@ The `input` module contains extensions to the core module, such as a text input ```gradle dependencies { ... - implementation 'com.afollestad.material-dialogs:input:2.4.0' + implementation 'com.afollestad.material-dialogs:input:2.5.0' } ``` diff --git a/documentation/LIFECYCLE.md b/documentation/LIFECYCLE.md index 9ae7c20c3..fd586a8ad 100644 --- a/documentation/LIFECYCLE.md +++ b/documentation/LIFECYCLE.md @@ -15,7 +15,7 @@ The `lifecycle` module contains extensions to make dialogs work with AndroidX li ```gradle dependencies { ... - implementation 'com.afollestad.material-dialogs:lifecycle:2.4.0' + implementation 'com.afollestad.material-dialogs:lifecycle:2.5.0' } ```