Skip to content

Releases: wiredashio/wiredash-sdk

v1.7.4

04 Sep 19:51
Compare
Choose a tag to compare
  • Localize discard confirm button in Promoter Score survey feedbackDiscardConfirmButton #299
  • Localize button screenshot text on mobile feedbackStep3ScreenshotBottomBarTitle (new) #299
  • Remove hit testing warnings in tests #300

v1.7.3

17 Aug 14:52
Compare
Choose a tag to compare
  • Update to Flutter 3.13 #292
  • Update cirruslabs Flutter containers to always test against the latest Flutter versions

v1.7.2

17 Aug 14:52
Compare
Choose a tag to compare
  • #285 Add Support danish (da) and arabic (ar)

v1.7.1

29 Jun 10:16
Compare
Choose a tag to compare
  • Widen dependency constraints of http and file

v1.7.0

11 May 15:56
Compare
Choose a tag to compare
  • #278 Add Support for Flutter 3.10
  • #274 Raise min Flutter SDK to Flutter 3.0.0 / Dart 2.17
  • #268 Add czech locale cs πŸ‡¨πŸ‡Ώ @lukas-h
  • #275 Add german promoter score localizations πŸ‡©πŸ‡ͺ @Dev-dfm
  • #272 Fix: Prefill email field from collectMetadata if available, when screenshot step is skipped
  • #276 Fix top padding on Android phones with notch @danielmolnar

v1.6.0

09 Mar 00:29
Compare
Choose a tag to compare
  • #266 Support for Flutter 3.7. Required for go_router users
  • #255 Add french locale fr πŸ‡«πŸ‡·
  • #251 Add hungarian locale hu πŸ‡­πŸ‡Ί

0.7.2

06 Sep 15:15
Compare
Choose a tag to compare

Mark old SDK as deprecated.

Please upgrade to wiredash: ^1.5.0. The old wiredash: 0.7.0 SDK will stop working on 1st Jan 2023

v1.5.0

25 Aug 17:40
Compare
Choose a tag to compare
  • 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.

    // Trigger this at significant point in your application to probably show
    // the Promoter Score survey.
    // Use [options] to adjust how often the survey is shown.
    Wiredash.of(context).showPromoterSurvey(
      options: PsOptions(
        // 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 promoter score survey to appear
      force: true,
    );

v1.2.0

25 Aug 12:26
Compare
Choose a tag to compare
  • 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
  • Renamed Wiredash.of(context).show(feedbackOptions: ) to Wiredash.of(context).show(options: )

v1.1.0

04 Aug 12:06
Compare
Choose a tag to compare
  • #231 Improve opening animation performance
  • #232 Email step is now enabled by default (as stated in documentation)
  • #235 Fix l10n initialization crash on slow devices