Skip to content

Commit

Permalink
Add changelog for 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
passsy committed Aug 25, 2022
1 parent ad356fc commit 8970cf9
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Changelog

## 1.2.0
## 1.5.0

- New: Net Promoter Score Preview πŸŽ‰
- New: Promoter Score Surveys πŸŽ‰
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.
// the Promoter Score survey.
// Use [options] to adjust how often the survey is shown.
Wiredash.of(context).showNps(
options: NpsOptions(
Wiredash.of(context).showPromoterSurvey(
options: PsOptions(
// minimum time between two surveys
frequency: Duration(days: 90),
// delay before the first survey is available
Expand All @@ -19,10 +19,12 @@
minimumAppStarts: 3,
),
// for testing, add force the NPS survey to appear
// for testing, add force the promoter score survey to appear
force: true,
);
```

## 1.2.0

- 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)
Expand Down

0 comments on commit 8970cf9

Please sign in to comment.