Skip to content

Commit

Permalink
Release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SachinGanesh committed Jun 15, 2021
1 parent d82a94b commit b49a6b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [1.2.1] - 13/06/2021
* Removal of compilation warning @yanivshaked

## [1.2.0] - 13/06/2021
* Add support for invisible widget capture

Expand Down
2 changes: 1 addition & 1 deletion lib/src/platform_specific/file_manager/non_io.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class PlatformFileManagerWeb implements PlatformFileManager {
@override
Future<String> saveFile(Uint8List fileContent, String path,
{String? name}) async {
throw UnsupportedError("File cannot be saved in current platform");
throw UnsupportedError("File cannot be saved in current platform");
// name = name ?? "${DateTime.now().microsecondsSinceEpoch}.png";
// File file = await File("$path/$name").create(recursive: true);
// file.writeAsBytesSync(fileContent);
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: screenshot
description: Flutter Screenshot Package (Runtime). Capture any Widget as an image.
version: 1.2.0
version: 1.2.1
homepage: https://github.com/SachinGanesh/screenshot

environment:
Expand Down

0 comments on commit b49a6b9

Please sign in to comment.