Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
passsy committed Dec 6, 2020
1 parent ad461b2 commit 314fc63
Showing 1 changed file with 36 additions and 4 deletions.
40 changes: 36 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,43 @@
## [0.3.0] - Hello offline support, bye-bye FloatingEntryPoint!
## 0.4.0 - Web support πŸ•Έ & Customizations 🎨
* Wiredash is now available for Flutter Web. No screenshots yet but sending feedback generally works [#98](https://github.com/wiredashio/wiredash-sdk/pull/98) [#106](https://github.com/wiredashio/wiredash-sdk/pull/106)
* You can now customize the BottomSheet to match your apps style. Custom fonts & colors [#100](https://github.com/wiredashio/wiredash-sdk/pull/100) as well as disabled individually buttons [#90](https://github.com/wiredashio/wiredash-sdk/pull/90)
```dart
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,
);
);
```
* Accessibility labels for all UI components [#91](https://github.com/wiredashio/wiredash-sdk/pull/91)
* Relax email validation [#85](https://github.com/wiredashio/wiredash-sdk/pull/85)
* Don't allow empty messages [#83](https://github.com/wiredashio/wiredash-sdk/pull/83)
* Don't allow opening Wiredash when navigating the app during capture [#81](https://github.com/wiredashio/wiredash-sdk/pull/81) [#103](https://github.com/wiredashio/wiredash-sdk/pull/103)
* Widen dependency ranges where possible
* Simplified sample [#102](https://github.com/wiredashio/wiredash-sdk/pull/102)
* Improve error handling of offline submissions [#104](https://github.com/wiredashio/wiredash-sdk/pull/104) [#105](https://github.com/wiredashio/wiredash-sdk/pull/105)


## 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 hid `PaintItBlack` in the `Confidential` widget.
* Fixed translation overflow exceptions for some languages.

## [0.2.0] - Internationalization Support πŸ‡¬πŸ‡§πŸ‡©πŸ‡ͺπŸ‡΅πŸ‡±
## 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)!

Expand All @@ -16,7 +48,7 @@ We added initial internationalization support for several languages. Feel free t
* Deprecated method `setIdentifiers` in favor of `setUserProperties` and `setBuildProperties`
* Minor bug fixes

## [0.1.0] - Floating Entry πŸ“², Confidential πŸ‘€ & Provider πŸ—
## 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.

Expand All @@ -28,6 +60,6 @@ also using Provider in your app, please make sure to at least use version 3.0.0.
* Improved performance
* Minor bug fixes

## [0.0.1] - Public Release
## 0.0.1 - Public Release

* Wiredash gets released to the public πŸŽ‰

0 comments on commit 314fc63

Please sign in to comment.