Skip to content

Commit

Permalink
v1.13.0 (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
SwiftyAlex authored Nov 1, 2022
1 parent 837d067 commit a2b506c
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 3 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Change Log

## 1.13.0
### Changes
- Images will now display with a maximum height, ensuring that on smaller devices the experience is improved without compromising on larger devices.

### Added
- The close button can now be hidden provided there's some other way to close the screen.
- Support for the next/done button text to be changeable.
- You can provide your locale and language to Unflow in preparation for a future feature.

### Fixed
- Status bar padding will now be correctly applied.

## 1.12.1
### Changes
- The events for the user entering text will now only send when the page containing the text transitions, rather than perodically as they type.

### Added
- A new standalone free text entry that doesn't require an other option.

### Fixed
- The order of the events fired on screen dismiss will now be in the correct order.

## 1.12.0
### Changes
- We've bumped our versions up to use a newer stable compose, `1.2.1`. You may have to increase your Kotlin version and minimum compile sdk as a result of this change.
- The event for question selections will include the strings for each selection, not just the identifiers.
- The rating block will now not always close the screen. It will decide if it should progress the container or close depending on its location.

### Added
- Support for the new free text option in question blocks.

## 1.11.0
### Changes
- Lowered the amount of network usage.
Expand Down
2 changes: 1 addition & 1 deletion samples/unflow-compose/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ android {
}

dependencies {
implementation("com.unflow:unflow-ui:1.12.1")
implementation("com.unflow:unflow-ui:1.13.0")

implementation("androidx.compose.ui:ui:${rootProject.extra["compose_version"]}")
implementation("androidx.compose.material:material:${rootProject.extra["compose_version"]}")
Expand Down
2 changes: 1 addition & 1 deletion samples/unflow-java/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ android {
}

dependencies {
implementation 'com.unflow:unflow-ui:1.12.1'
implementation 'com.unflow:unflow-ui:1.13.0'

implementation 'com.github.bumptech.glide:glide:4.13.2'
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'
Expand Down
2 changes: 1 addition & 1 deletion samples/unflow-sample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ android {
}

dependencies {
implementation 'com.unflow:unflow-ui:1.12.1'
implementation 'com.unflow:unflow-ui:1.13.0'

implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
Expand Down

0 comments on commit a2b506c

Please sign in to comment.