From 9fbe84a7c4cb637d1b1b94ac54e12c55a12eedb2 Mon Sep 17 00:00:00 2001 From: Pascal Welsch Date: Thu, 25 Aug 2022 14:25:03 +0200 Subject: [PATCH] Add 1.2.0 changelog --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5e9137a..f5a13393 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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