From e6165a8fd785ec69882766927094104121b6c84e Mon Sep 17 00:00:00 2001 From: Rithesh <rithesh@dreamsoftin.com> Date: Tue, 27 Dec 2022 10:50:41 +0530 Subject: [PATCH] RC v1.3.0 --- .vscode/launch.json | 5 ++++- CHANGELOG.md | 2 ++ pubspec.lock | 49 +++++++++++++++++++-------------------------- pubspec.yaml | 2 +- 4 files changed, 28 insertions(+), 30 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 9f8693f..04146dc 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,10 @@ "name": "Flutter", "request": "launch", "type": "dart", - "program": "example/lib/main.dart" + "program": "example/lib/main.dart", + "args": [ + "--web-renderer canvaskit --dart-define=BROWSER_IMAGE_DECODING_ENABLED=false --release" + ] } ] } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ad25c8..450e751 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## [1.3.0] - 27/12/2022 +* Fix disposing widgets after capturing in widgetToUiImage function @Lan-tb ## [1.2.3] - 15/07/2021 * Support Inheriting Theme for Invisible Widget diff --git a/pubspec.lock b/pubspec.lock index 49a0ce6..e15edce 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -7,7 +7,7 @@ packages: name: async url: "https://pub.dartlang.org" source: hosted - version: "2.5.0" + version: "2.9.0" boolean_selector: dependency: transitive description: @@ -21,35 +21,28 @@ packages: name: characters url: "https://pub.dartlang.org" source: hosted - version: "1.1.0" - charcode: - dependency: transitive - description: - name: charcode - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.0" + version: "1.2.1" clock: dependency: transitive description: name: clock url: "https://pub.dartlang.org" source: hosted - version: "1.1.0" + version: "1.1.1" collection: dependency: transitive description: name: collection url: "https://pub.dartlang.org" source: hosted - version: "1.15.0" + version: "1.16.0" fake_async: dependency: transitive description: name: fake_async url: "https://pub.dartlang.org" source: hosted - version: "1.2.0" + version: "1.3.1" flutter: dependency: "direct main" description: flutter @@ -66,21 +59,28 @@ packages: name: matcher url: "https://pub.dartlang.org" source: hosted - version: "0.12.10" + version: "0.12.12" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + url: "https://pub.dartlang.org" + source: hosted + version: "0.1.5" meta: dependency: transitive description: name: meta url: "https://pub.dartlang.org" source: hosted - version: "1.3.0" + version: "1.8.0" path: dependency: transitive description: name: path url: "https://pub.dartlang.org" source: hosted - version: "1.8.0" + version: "1.8.2" sky_engine: dependency: transitive description: flutter @@ -92,7 +92,7 @@ packages: name: source_span url: "https://pub.dartlang.org" source: hosted - version: "1.8.0" + version: "1.9.0" stack_trace: dependency: transitive description: @@ -113,34 +113,27 @@ packages: name: string_scanner url: "https://pub.dartlang.org" source: hosted - version: "1.1.0" + version: "1.1.1" term_glyph: dependency: transitive description: name: term_glyph url: "https://pub.dartlang.org" source: hosted - version: "1.2.0" + version: "1.2.1" test_api: dependency: transitive description: name: test_api url: "https://pub.dartlang.org" source: hosted - version: "0.2.19" - typed_data: - dependency: transitive - description: - name: typed_data - url: "https://pub.dartlang.org" - source: hosted - version: "1.3.0" + version: "0.4.12" vector_math: dependency: transitive description: name: vector_math url: "https://pub.dartlang.org" source: hosted - version: "2.1.0" + version: "2.1.2" sdks: - dart: ">=2.12.0 <3.0.0" + dart: ">=2.17.0-0 <3.0.0" diff --git a/pubspec.yaml b/pubspec.yaml index dc8b2bb..e31d93e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: screenshot description: Flutter Screenshot Package (Runtime). Capture any Widget as an image. -version: 1.2.3 +version: 1.3.0 homepage: https://github.com/SachinGanesh/screenshot environment: -- 2.17.1