Skip to content

Commit

Permalink
update the version code and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouteng0217 committed Apr 2, 2020
1 parent 5891d9d commit 6435b31
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.1.3
* add option subject for sharing multiple images

## 1.1.2
* rebuild the provider code on android platform
* update sample code
Expand Down
4 changes: 2 additions & 2 deletions README-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ First, add `share_extend` as a dependency in your pubspec.yaml file.

```
dependencies:
share_extend: "^1.1.2"
share_extend: "^1.1.3"
```

### iOS
Expand Down Expand Up @@ -77,7 +77,7 @@ _shareMultipleImages() async {
await _writeByteToImageFile(await asset.getByteData(quality: 30));
imageList.add(path);
}
ShareExtend.shareMultiple(imageList, "image");
ShareExtend.shareMultiple(imageList, "image",subject: "share muti image");
}

Future<String> _writeByteToImageFile(ByteData byteData) async {
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Language: [English](https://github.com/zhouteng0217/ShareExtend/blob/master/READ

```
dependencies:
share_extend: "^1.1.2"
share_extend: "^1.1.3"
```

### iOS
Expand Down Expand Up @@ -74,7 +74,7 @@ _shareMultipleImages() async {
await _writeByteToImageFile(await asset.getByteData(quality: 30));
imageList.add(path);
}
ShareExtend.shareMultiple(imageList, "image");
ShareExtend.shareMultiple(imageList, "image",subject: "share muti image");
}

Future<String> _writeByteToImageFile(ByteData byteData) async {
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: share_extend
description: A Flutter plugin for Android and iOS for sharing text, image, video and file with system ui.
version: 1.1.2
version: 1.1.3
author: zhouteng <qfszyq@gmail.com>
homepage: https://github.com/zhouteng0217/ShareExtend

Expand Down

0 comments on commit 6435b31

Please sign in to comment.