wiredash 1.0.0-alpha.2 wiredash: ^1.0.0-alpha.2 copied to clipboard
Wiredash is an interactive user feedback tool for Flutter apps.
1.0.0-alpha.2 - Desktop improvements #
- #164 Support for transparent apps macOS apps
- Hide backdrop content in screenshot mode
- #165 Validate email address
- #166 Make email address optional. Set
WiredashFeedbackOptions(askForUserEmail: true)
to enable it - #167 New
inheritMaterialTheme
andinheritCupertinoTheme
properties forWiredash.of(context).show()
to inherit the theme
1.0.0-alpha.1 - A Whole New World #
- Completely rewritten UI layer
- Custom metadata properties
- Custom labels
- Automatic theming
0.7.0+1 - Version Bump #
- Increment
sdkVersion
0.7.0 - Screenshot Web support for canvaskit #
- #140 Wiredash now supports screenshots in Flutter Web when the canvasakit renderer is used
- Flutter compatibility range:
1.26.0-17.5.pre
-2.3.0-13.0.pre.166
0.6.1 - Flutter 2.0 #
0.6.0 - Nullsafety #
- Migrate the sdk to nullsafety. No breaking changes except for raising the Dart SDK to 2.12.0-0.
0.5.0 - SingletonFlutterWindow #
- Breaking Replace references to
ui.Window
with the newSingletonFlutterWindow
flutter/pull/69617
- Raise minimum Flutter version to
1.24.0-8.0.pre.341
where the breaking change was introduced
0.4.2 - Prepare for nullsafety #
- Remove mockito dependency
- Add nullability hints
/*?*/
0.4.1 - Longer feedback & more languages #
- Feedback length has been increased from 512 to 2048 characters
- Support for new languages: [da] 🇩🇰, [hu] 🇭🇺, [ko] 🇰🇷, [ru] 🇷🇺 and [zh-cn] 🇨🇳. We are still missing some languages, please help us to translate Wiredash on POEditor
- Wiredash supports Android, iOS, macOS, Windows and Linux. We hope with this release pub.dev detects it correctly
0.4.0 - Web support 🕸 & Customizations 🎨 #
- Wiredash is now available for Flutter Web. No screenshots yet but sending feedback generally works #98 #106
- You can now customize the BottomSheet to match your apps style. Custom fonts & colors #100 as well as disabled individually buttons #90
Wiredash(
options: WiredashOptionsData(
bugReportButton: false,
featureRequestButton: false,
praiseButton: false,
),
theme: WiredashThemeData(
fontFamily: 'Monospace',
sheetBorderRadius: BorderRadius.zero,
brightness: Brightness.light,
primaryColor: Colors.red,
secondaryColor: Colors.blue,
firstPenColor: Colors.orange,
secondPenColor: Colors.green,
thirdPenColor: Colors.yellow,
fourthPenColor: Colors.deepPurpleAccent,
);
);
0.3.0 - Hello offline support, bye-bye FloatingEntryPoint! #
- Support sending feedback and screenshots when offline.
- Added translations for Arabic, Portuguese, and Turkish.
- Removed
FloatingEntryPoint
as it was a bit confusing to first-time users, and most would disable it anyway. - Added an
enabled
flag, docs, and hidPaintItBlack
in theConfidential
widget. - Fixed translation overflow exceptions for some languages.
0.2.0 - Internationalization Support 🇬🇧🇩🇪🇵🇱 #
We added initial internationalization support for several languages. Feel free to contribute your own translations (check out the docs for more info on that)!
- Added
WiredashLocalizations
- Added ability to provide custom
WiredashTranslations
- Added buildNumber, buildVersion and buildCommit properties that can be passed through dart-define
- Constrained the SDK to 2.8.0 or newer and Flutter to 1.17.0 or newer
- Deprecated method
setIdentifiers
in favor ofsetUserProperties
andsetBuildProperties
- Minor bug fixes
0.1.0 - Floating Entry 📲, Confidential 👀 & Provider 🏗 #
Wiredash now uses the Provider package for internal state management and supports version 3.0.0 and higher. If you are also using Provider in your app, please make sure to at least use version 3.0.0.
- Added a Floating Entry which is shown by default in debug to show Wiredash from any screen
- Added WiredashOptions to further customize the Wiredash widget (e.g. the Floating Entry)
- Added a Confidential widget to automatically hide sensitive widgets during screen capture
- Added a Wiredash.of(context).visible ValueListener to check if Wiredash is in screen capture mode (e.g. for hiding certain widgets being screen captured)
- Improved error handling when there is no valid root navigator key
- Improved performance
- Minor bug fixes
0.0.1 - Public Release #
- Wiredash gets released to the public 🎉