Browse Source

3.0.0-beta1

Aidan Follestad 5 years ago
parent
commit
66426b7ab9

+ 7 - 7
README.md

@@ -29,7 +29,7 @@ core and normal-use functionality.
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:core:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:core:3.0.0-beta1'
 }
 }
 ```
 ```
 
 
@@ -46,7 +46,7 @@ The `input` module contains extensions to the core module, such as a text input
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:input:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:input:3.0.0-beta1'
 }
 }
 ```
 ```
  
  
@@ -63,7 +63,7 @@ The `files` module contains extensions to the core module, such as a file and fo
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:files:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:files:3.0.0-beta1'
 }
 }
 ```
 ```
 
 
@@ -80,7 +80,7 @@ The `color` module contains extensions to the core module, such as a color choos
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:color:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:color:3.0.0-beta1'
 }
 }
 ```
 ```
 
 
@@ -97,7 +97,7 @@ The `datetime` module contains extensions to make date, time, and date-time pick
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:datetime:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:datetime:3.0.0-beta1'
 }
 }
 ```
 ```
 
 
@@ -116,7 +116,7 @@ too!
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-beta1'
 }
 }
 ```
 ```
 
 
@@ -131,6 +131,6 @@ The `lifecycle` module contains extensions to make dialogs work with AndroidX li
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-beta1'
 }
 }
 ```
 ```

+ 7 - 10
RELEASE_NOTES.md

@@ -1,4 +1,9 @@
-3.0.0-alpha4
+3.0.0-beta1
+
+* Fixed status bar and navigation appearance for bottom sheet dialogs.
+* We're nearing a "stable" release.
+
+### 3.0.0-alpha4
 
 
 Minor API change: The `message(...)` function no longer provides `html` and `lineSpacingMultiplier` 
 Minor API change: The `message(...)` function no longer provides `html` and `lineSpacingMultiplier` 
 as parameters. Instead, it works like this:
 as parameters. Instead, it works like this:
@@ -22,12 +27,4 @@ MaterialDialog(this).show {
 to instruct the bottom sheet to be expandable to the screen height or limit itself to wrap the content 
 to instruct the bottom sheet to be expandable to the screen height or limit itself to wrap the content 
 of its content. See the updated Bottom Sheets documentation.
 of its content. See the updated Bottom Sheets documentation.
 * Added a `setPeekHeight(...)` extension method for `MaterialDialog` that you can use to set the 
 * Added a `setPeekHeight(...)` extension method for `MaterialDialog` that you can use to set the 
-default peek height and animate peek height changes.
-
-### 3.0.0-alpha2
-
-* You can now set corner radius dynamically with the `cornerRadius` method.
-* Some minor bug fixes and internal cleanup.
-
-### 3.0.0-alpha1:
-* Bottom sheets are here! Checkout the README and sample project for details.
+default peek height and animate peek height changes.

+ 3 - 3
dependencies.gradle

@@ -3,11 +3,11 @@ ext.versions = [
     minSdk              : 16,
     minSdk              : 16,
     compileSdk          : 28,
     compileSdk          : 28,
     buildTools          : '28.0.3',
     buildTools          : '28.0.3',
-    publishVersion      : '3.0.0-alpha4',
-    publishVersionCode  : 246,
+    publishVersion      : '3.0.0-beta1',
+    publishVersionCode  : 247,
 
 
     // Plugins
     // Plugins
-    gradlePlugin        : '3.4.0',
+    gradlePlugin        : '3.4.1',
     spotlessPlugin      : '3.22.0',
     spotlessPlugin      : '3.22.0',
     versionPlugin       : '0.21.0',
     versionPlugin       : '0.21.0',
     bintrayPlugin       : '0.9.1',
     bintrayPlugin       : '0.9.1',

+ 1 - 1
documentation/BOTTOMSHEETS.md

@@ -21,7 +21,7 @@ other functionality like showing a grid of items.
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-beta1'
 }
 }
 ```
 ```
 
 

+ 1 - 1
documentation/COLOR.md

@@ -16,7 +16,7 @@ The `color` module contains extensions to the core module, such as a color choos
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:color:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:color:3.0.0-beta1'
 }
 }
 ```
 ```
 
 

+ 1 - 1
documentation/CORE.md

@@ -36,7 +36,7 @@ core and normal-use functionality.
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:core:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:core:3.0.0-beta1'
 }
 }
 ```
 ```
 
 

+ 1 - 1
documentation/DATETIME.md

@@ -16,7 +16,7 @@ The `datetime` module contains extensions to make date, time, and date-time pick
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:datetime:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:datetime:3.0.0-beta1'
 }
 }
 ```
 ```
 
 

+ 1 - 1
documentation/FILES.md

@@ -23,7 +23,7 @@ The `files` module contains extensions to the core module, such as a file and fo
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:files:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:files:3.0.0-beta1'
 }
 }
 ```
 ```
 
 

+ 1 - 1
documentation/INPUT.md

@@ -19,7 +19,7 @@ The `input` module contains extensions to the core module, such as a text input
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:input:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:input:3.0.0-beta1'
 }
 }
 ```
 ```
 
 

+ 1 - 1
documentation/LIFECYCLE.md

@@ -15,7 +15,7 @@ The `lifecycle` module contains extensions to make dialogs work with AndroidX li
 ```gradle
 ```gradle
 dependencies {
 dependencies {
   ...
   ...
-  implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-alpha4'
+  implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-beta1'
 }
 }
 ```
 ```
 
 

BIN
sample/sample.apk