diff --git a/packages/image_picker/image_picker/CHANGELOG.md b/packages/image_picker/image_picker/CHANGELOG.md index 35c40280e3c1..085ee0b6c632 100644 --- a/packages/image_picker/image_picker/CHANGELOG.md +++ b/packages/image_picker/image_picker/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.4 + +* Updates README to fix broken link. + ## 1.0.3 * Adds pub topics to package metadata. diff --git a/packages/image_picker/image_picker/README.md b/packages/image_picker/image_picker/README.md index 73b9622bb88e..37bd4ab3d945 100755 --- a/packages/image_picker/image_picker/README.md +++ b/packages/image_picker/image_picker/README.md @@ -8,7 +8,7 @@ and taking new pictures with the camera. | | Android | iOS | Linux | macOS | Web | Windows | |-------------|---------|---------|-------|--------|---------------------------------|-------------| -| **Support** | SDK 21+ | iOS 11+ | Any | 10.14+ | [See `image_picker_for_web`][1] | Windows 10+ | +| **Support** | SDK 21+ | iOS 11+ | Any | 10.14+ | [See `image_picker_for_web`](https://pub.dev/packages/image_picker_for_web#limitations-on-the-web-platform) | Windows 10+ | ## Installation @@ -104,7 +104,7 @@ functionality. Launching the image picker from an `Activity` with `launchMode: singleInstance` will always return `RESULT_CANCELED`. -In this launch mode, new activities are created in a separate [Task][2]. +In this launch mode, new activities are created in a separate [Task](https://developer.android.com/guide/components/activities/tasks-and-back-stack). As activities cannot communicate between tasks, the image picker activity cannot send back its eventual result to the calling activity. To work around this problem, consider using `launchMode: singleTask` instead. @@ -158,7 +158,7 @@ encourage the community to build packages that implement Since the macOS implementation uses `file_selector`, you will need to add a filesystem access -[entitlement][https://docs.flutter.dev/platform-integration/macos/building#entitlements-and-the-app-sandbox]: +[entitlement](https://docs.flutter.dev/platform-integration/macos/building#entitlements-and-the-app-sandbox): ```xml com.apple.security.files.user-selected.read-only @@ -202,6 +202,3 @@ plugin's own `PickedFile` instances. The previous methods were supported through | `List images = await _picker.getMultiImage(...)` | `List images = await _picker.pickMultiImage(...)` | | `PickedFile video = await _picker.getVideo(...)` | `XFile video = await _picker.pickVideo(...)` | | `LostData response = await _picker.getLostData()` | `LostDataResponse response = await _picker.retrieveLostData()` | - -[1]: https://pub.dev/packages/image_picker_for_web#limitations-on-the-web-platform -[2]: https://developer.android.com/guide/components/activities/tasks-and-back-stack diff --git a/packages/image_picker/image_picker/pubspec.yaml b/packages/image_picker/image_picker/pubspec.yaml index 059ab383d891..115fd9ac145b 100755 --- a/packages/image_picker/image_picker/pubspec.yaml +++ b/packages/image_picker/image_picker/pubspec.yaml @@ -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/packages/tree/main/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: 1.0.3 +version: 1.0.4 environment: sdk: ">=2.19.0 <4.0.0"