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

Commit

Permalink
3.0.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed May 19, 2019
1 parent bb30d46 commit 66426b7
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 27 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ core and normal-use functionality.
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:core:3.0.0-alpha4'
implementation 'com.afollestad.material-dialogs:core:3.0.0-beta1'
}
```

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

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

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

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

Expand All @@ -116,7 +116,7 @@ too!
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-alpha4'
implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-beta1'
}
```

Expand All @@ -131,6 +131,6 @@ The `lifecycle` module contains extensions to make dialogs work with AndroidX li
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-alpha4'
implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-beta1'
}
```
17 changes: 7 additions & 10 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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`
as parameters. Instead, it works like this:
Expand All @@ -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
of its content. See the updated Bottom Sheets documentation.
* 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.
6 changes: 3 additions & 3 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ ext.versions = [
minSdk : 16,
compileSdk : 28,
buildTools : '28.0.3',
publishVersion : '3.0.0-alpha4',
publishVersionCode : 246,
publishVersion : '3.0.0-beta1',
publishVersionCode : 247,

// Plugins
gradlePlugin : '3.4.0',
gradlePlugin : '3.4.1',
spotlessPlugin : '3.22.0',
versionPlugin : '0.21.0',
bintrayPlugin : '0.9.1',
Expand Down
2 changes: 1 addition & 1 deletion documentation/BOTTOMSHEETS.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ other functionality like showing a grid of items.
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-alpha4'
implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-beta1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/COLOR.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:3.0.0-alpha4'
implementation 'com.afollestad.material-dialogs:color:3.0.0-beta1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/CORE.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ core and normal-use functionality.
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:core:3.0.0-alpha4'
implementation 'com.afollestad.material-dialogs:core:3.0.0-beta1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/DATETIME.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:3.0.0-alpha4'
implementation 'com.afollestad.material-dialogs:datetime:3.0.0-beta1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/FILES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:3.0.0-alpha4'
implementation 'com.afollestad.material-dialogs:files:3.0.0-beta1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/INPUT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:3.0.0-alpha4'
implementation 'com.afollestad.material-dialogs:input:3.0.0-beta1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/LIFECYCLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The `lifecycle` module contains extensions to make dialogs work with AndroidX li
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-alpha4'
implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-beta1'
}
```

Expand Down
Binary file modified sample/sample.apk
Binary file not shown.

0 comments on commit 66426b7

Please sign in to comment.