Skip to content

Commit

Permalink
v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SwiftyAlex authored Aug 23, 2022
1 parent a30fe57 commit 41a09ba
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Change Log

## 1.11.0
### Changes
- Lowered the amount of network usage.
- Allowed for more than just `Map<String,String>` for user attributes.

### Added
- Added the question block to get detailed feedback, or ask any question you wish.
- Added an optional privacy mode to disable most events.
- Pause function to temporarily stop Unflow from presenting screens.

### Fixed
- Flows will no longer emit repeated values

## 1.10.0

### Changes
- References to `subscriptionId` have been renamed to `spaceKey` to avoid confusion.

### Added
- You can now fetch spaces from the SDK. See `UnflowSdk.spaces()` for more.
- There's a new `Spaces` composable that shows a stack of your spaces.
- Another `Spaces` composable has been added that simply provides you with a list of spaces.
- Tracking an event with a date inside the map will now successfully send the date to the server in miliseconds since 1970.

### Fixed
- Ensured that compose resolves to 1.1.1.

## 1.9.3
### Changes
- [Unflow] Reverted the following dependencies to latest stable versions to improve product stability and compatibility.
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.10.0")
implementation("com.unflow:unflow-ui:1.11.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 @@ -26,7 +26,7 @@ android {
}

dependencies {
implementation 'com.unflow:unflow-ui:1.10.0'
implementation 'com.unflow:unflow-ui:1.11.0'

implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
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.10.0'
implementation 'com.unflow:unflow-ui:1.11.0'

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

0 comments on commit 41a09ba

Please sign in to comment.