wiredash 1.0.0-beta.4 wiredash: ^1.0.0-beta.4 copied to clipboard
Wiredash is an interactive user feedback tool for Flutter apps.
Changelog #
1.0.0-beta.4 #
- #211 Fix
SyncEngine
not triggering initial 'appStart' event - #212 Remove Wiredash branding from appHandle
- #214 Repect user choice when removing their email address
- #216 Undeprecate
Wiredash.of(context).setUserProperties()
andWiredash.of(context).setBuildProperties()
as alternative tomodifyMetaData
. The newWiredash.of(context).metaData
getter might also be handy for you - #217 You can now adjust the pen colors in
WiredashThemeData
1.0.0-beta.2 #
- #207 Multi language support. Currently, Wiredash support English 🇬🇧 and German 🇩🇪. We'd happily accept any other languages!
- e8de7b5 Fix
Confidential
widget hiding content when Wiredash was closed. - Updated
README.md
for upcoming 1.0.0 release.
Is this release stable? Yes. And once the documentation is update we feel ready to call it 1.0.0
1.0.0-beta.1 #
- #205 Improve theming capabilities. Better automatic colors, more customizations. New
WiredashThemeData
properties:primaryContainerColor
textOnPrimaryContainerColor
secondaryContainerColor
textOnSecondaryContainerColor
appBackgroundColor
appHandleBackgroundColor
- Removal of
primaryTextColor
andsecondaryTextColor
, those are not completely automatic
1.0.0-alpha.7 #
Android back button support & resizing
- #195 Support for the Android back button
- #194 Resize Wiredashs content area to match the size of the content
- #201 Fix state restoration error when reopening Wiredash
- #194 Add a "Back to app" app header on desktop
- #198 Added a netflix and whatsapp clone example demonstrating Wiredashs automatic theming capabilities when using
Wiredash.of(context).show(inheritMaterialTheme: true)
- #199 Show error when taking a screenshot fails. This may happen for some widgets on web (canvaskit)
- #202 Fix "Warning: Missing asset in fonts for Inter"
- #194 Small color adjustments
1.0.0-alpha.6 #
- #188 Fix upload of multiple screenshots for non-web platforms. May have caused double submission of feedback
1.0.0-alpha.5 #
Multiple screenshots
- #183 Allow multiple screenshots to be attached to a feedback
- #179 Improve performance of your app by limiting the number of widgets Wiredash injects. Noticable on low-end devices such as the iPhone SE
- #179 Fix: Keep your app state when opening Wiredash. Won't happen again 🤞
- #184 Documentation: Fix deprecation message of
setUserProperties
to referencemodifyMetaData
1.0.0-alpha.4 #
Desktop in focus
- #177 Improved Desktop UI
- #176 Draw
appBackgroundColor
behind app on screenshot - Discard feedback button
- Color selection and drawing undo
- Allow retake of screenshot
- #172 Scale drawing to match the screenshot size (based on screen ppi)
- Scaling the window after capturing a screenshot doesn't change the drawing position anymore
- Hide feedback details on Summary page behind button
- Make status bar text readable on iOS
- #175 Raise min Flutter SDK to 2.8, (2.9 is required for macOS)
1.0.0-alpha.3 #
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 #
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 🎉