Skip to content

Commit

Permalink
Add 1.2.0 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
passsy committed Aug 25, 2022
1 parent 01b867e commit 9fbe84a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## 1.2.0

- New: Net Promoter Score πŸŽ‰
Ask your users how likely they are to recommend your app to their friends on a scale from 0-10. You can see your stats in the console in the new NPS tab.

```dart
// Trigger this at significant point in your application to probably show
// the Net Promoter Score survey.
// Use [options] to adjust how often the survey is shown.
Wiredash.of(context).showNps(
options: NpsOptions(
// minimum time between two surveys
frequency: Duration(days: 90),
// delay before the first survey is available
initialDelay: Duration(days: 7),
// minimum number of app starts before the survey will be shown
minimumAppStarts: 3,
),
// for testing, add force the NPS survey to appear
force: true,
);
```

- New locales polish `pl` πŸ‡΅πŸ‡±, spanish `es` πŸ‡ͺπŸ‡ΈπŸ‡²πŸ‡½, portuguese `pt` πŸ‡΅πŸ‡ΉπŸ‡§πŸ‡· and turkish `tr` πŸ‡ΉπŸ‡· by our awesome contributors @orestesgaolin, @jamesblasco, @KyleKun and @AtaTrkgl. Thanks!
Want to contribute your language? Checkout the docs [Localization - Contribute to Wiredash](https://docs.wiredash.io/sdk/localization/#contribute-to-wiredash)
- Renamed `Wiredash.of(context).show(feedbackOptions: )` to `Wiredash.of(context).show(options: )`

## 1.1.0

- [#231](https://github.com/wiredashio/wiredash-sdk/pull/231) Improve opening animation performance
Expand Down

0 comments on commit 9fbe84a

Please sign in to comment.