Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
changelog + version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubu committed Jun 24, 2021
1 parent 3ac7c26 commit 46adcfb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions packages/image_picker/image_picker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.8.1+1

* Fix using Camera as image source on Android 11+

## 0.8.1

* Add a new method `getMultiImage` to allow picking multiple images on iOS 14 or higher
Expand Down Expand Up @@ -36,6 +40,7 @@ will no longer be able to access images or videos captured unless they are moved
* Localize `UIAlertController` strings.

## 0.7.5+2

* Implement `UIAlertController` with a preferredStyle of `UIAlertControllerStyleAlert` since `UIAlertView` is deprecated.

## 0.7.5+1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ private void launchTakeVideoWithCameraIntent() {
try {
activity.startActivityForResult(intent, REQUEST_CODE_TAKE_VIDEO_WITH_CAMERA);
} catch (ActivityNotFoundException e) {
finishWithError("no_available_camera", "No cameras available for taking pictures.");
4 finishWithError("no_available_camera", "No cameras available for taking pictures.");
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/image_picker/image_picker/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Flutter plugin for selecting images from the Android and iOS image
library, and taking new pictures with the camera.
repository: https://github.com/flutter/plugins/tree/master/packages/image_picker/image_picker
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22
version: 0.8.1
version: 0.8.1+1

environment:
sdk: ">=2.12.0 <3.0.0"
Expand Down

0 comments on commit 46adcfb

Please sign in to comment.