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-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed May 20, 2019
1 parent ccd6521 commit 481c0b8
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 43 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-beta1'
implementation 'com.afollestad.material-dialogs:core:3.0.0-beta2'
}
```

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-beta1'
implementation 'com.afollestad.material-dialogs:input:3.0.0-beta2'
}
```

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-beta1'
implementation 'com.afollestad.material-dialogs:files:3.0.0-beta2'
}
```

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-beta1'
implementation 'com.afollestad.material-dialogs:color:3.0.0-beta2'
}
```

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-beta1'
implementation 'com.afollestad.material-dialogs:datetime:3.0.0-beta2'
}
```

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

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-beta1'
implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-beta2'
}
```
32 changes: 5 additions & 27 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,8 @@
3.0.0-beta1
3.0.0-beta2

* 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:
* Fixed bottom sheet content going under the system status bar.

```kotlin
MaterialDialog(this).show {
...
message(R.string.htmlContent) {
html() // or...
html { toast("Clicked link: $it") }

lineSpacing(1.4f)
messageTextView.doSomething() // you can act directly on the TextView
}
}
```
#### 3.0.0-beta1

### 3.0.0-alpha3

* The `BottomSheet()` dialog behavior now accepts an optional `LayoutMode` parameter, which you can use
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.
* Fixed status bar and navigation appearance for bottom sheet dialogs.
* We're nearing a "stable" release.
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ ext.versions = [
minSdk : 16,
compileSdk : 28,
buildTools : '28.0.3',
publishVersion : '3.0.0-beta1',
publishVersionCode : 247,
publishVersion : '3.0.0-beta2',
publishVersionCode : 248,

// Plugins
gradlePlugin : '3.4.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-beta1'
implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-beta2'
}
```

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-beta1'
implementation 'com.afollestad.material-dialogs:color:3.0.0-beta2'
}
```

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-beta1'
implementation 'com.afollestad.material-dialogs:core:3.0.0-beta2'
}
```

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-beta1'
implementation 'com.afollestad.material-dialogs:datetime:3.0.0-beta2'
}
```

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-beta1'
implementation 'com.afollestad.material-dialogs:files:3.0.0-beta2'
}
```

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-beta1'
implementation 'com.afollestad.material-dialogs:input:3.0.0-beta2'
}
```

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-beta1'
implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-beta2'
}
```

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

0 comments on commit 481c0b8

Please sign in to comment.