Skip to content

Commit

Permalink
v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
lijy91 committed Jun 8, 2023
1 parent 6a3b653 commit 692f257
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.1.5

* Add `readImageFromClipboard` method to read image from clipboard.
* `capture` method supports copyToClipboard argument.

## 0.1.4

* bump flutter to 3.10.1
Expand Down
3 changes: 2 additions & 1 deletion README-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

```yaml
dependencies:
screen_capturer: ^0.1.4
screen_capturer: ^0.1.5
```
Expand Down Expand Up @@ -90,6 +90,7 @@ import 'package:screen_capturer/screen_capturer.dart';
CapturedData? capturedData = await screenCapturer.capture(
mode: CaptureMode.region, // screen, window
imagePath: '<path>',
copyToClipboard: true,
);
```

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Add this to your package's pubspec.yaml file:

```yaml
dependencies:
screen_capturer: ^0.1.4
screen_capturer: ^0.1.5
```
Or
Expand Down Expand Up @@ -90,6 +90,7 @@ import 'package:screen_capturer/screen_capturer.dart';
CapturedData? capturedData = await screenCapturer.capture(
mode: CaptureMode.region, // screen, window
imagePath: '<path>',
copyToClipboard: true,
);
```

Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.4"
version: "0.1.5"
shell_executor:
dependency: transitive
description:
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: screen_capturer
description: This plugin allows Flutter desktop apps to capture screenshots.
version: 0.1.4
version: 0.1.5
homepage: https://github.com/leanflutter/screen_capturer

platforms:
Expand Down

0 comments on commit 692f257

Please sign in to comment.