Skip to content

Commit 6d5cb85

Browse files
[various] Clarify endorsement in READMEs (flutter#3404)
[various] Clarify endorsement in READMEs
1 parent a4d3d16 commit 6d5cb85

File tree

135 files changed

+368
-140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+368
-140
lines changed

packages/camera/camera_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.10.4+3
2+
3+
* Clarifies explanation of endorsement in README.
4+
15
## 0.10.4+2
26

37
* Aligns Dart and Flutter SDK constraints.

packages/camera/camera_android/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ The Android implementation of [`camera`][1].
55
## Usage
66

77
This package is [endorsed][2], which means you can simply use `camera`
8-
normally. This package will be automatically included in your app when you do.
8+
normally. This package will be automatically included in your app when you do,
9+
so you do not need to add it to your `pubspec.yaml`.
10+
11+
However, if you `import` this package to use any of its APIs directly, you
12+
should add it to your `pubspec.yaml` as usual.
913

1014
[1]: https://pub.dev/packages/camera
1115
[2]: https://flutter.dev/docs/development/packages-and-plugins/developing-packages#endorsed-federated-plugin

packages/camera/camera_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: camera_android
22
description: Android implementation of the camera plugin.
33
repository: https://github.com/flutter/packages/tree/main/packages/camera/camera_android
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
5-
version: 0.10.4+2
5+
version: 0.10.4+3
66

77
environment:
88
sdk: ">=2.17.0 <3.0.0"

packages/camera/camera_avfoundation/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.9.13+1
2+
3+
* Clarifies explanation of endorsement in README.
4+
15
## 0.9.13
26

37
* Allows camera to be switched while video recording.

packages/camera/camera_avfoundation/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ The iOS implementation of [`camera`][1].
55
## Usage
66

77
This package is [endorsed][2], which means you can simply use `camera`
8-
normally. This package will be automatically included in your app when you do.
8+
normally. This package will be automatically included in your app when you do,
9+
so you do not need to add it to your `pubspec.yaml`.
10+
11+
However, if you `import` this package to use any of its APIs directly, you
12+
should add it to your `pubspec.yaml` as usual.
913

1014
[1]: https://pub.dev/packages/camera
1115
[2]: https://flutter.dev/docs/development/packages-and-plugins/developing-packages#endorsed-federated-plugin

packages/camera/camera_avfoundation/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: camera_avfoundation
22
description: iOS implementation of the camera plugin.
33
repository: https://github.com/flutter/packages/tree/main/packages/camera/camera_avfoundation
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
5-
version: 0.9.13
5+
version: 0.9.13+1
66

77
environment:
88
sdk: '>=2.18.0 <3.0.0'

packages/camera/camera_web/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
## NEXT
1+
## 0.3.1+3
22

3+
* Clarifies explanation of endorsement in README.
34
* Aligns Dart and Flutter SDK constraints.
45

56
## 0.3.1+2

packages/camera/camera_web/README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ The web implementation of [`camera`][camera].
1010

1111
This package is [endorsed](https://flutter.dev/docs/development/packages-and-plugins/developing-packages#endorsed-federated-plugin),
1212
which means you can simply use `camera`
13-
normally. This package will be automatically included in your app when you do.
13+
normally. This package will be automatically included in your app when you do,
14+
so you do not need to add it to your `pubspec.yaml`.
15+
16+
However, if you `import` this package to use any of its APIs directly, you
17+
should add it to your `pubspec.yaml` as usual.
1418

1519
## Example
1620

@@ -84,13 +88,13 @@ if (kIsWeb) {
8488
}
8589
```
8690

87-
### Video recording
91+
### Video recording
8892

8993
The video recording implementation is backed by [MediaRecorder Web API](https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorder) with the following [browser support](https://caniuse.com/mdn-api_mediarecorder):
9094

9195
![Data on support for the MediaRecorder feature across the major browsers from caniuse.com](https://caniuse.bitsofco.de/image/mediarecorder.png).
9296

93-
A video is recorded in one of the following video MIME types:
97+
A video is recorded in one of the following video MIME types:
9498
- video/webm (e.g. on Chrome or Firefox)
9599
- video/mp4 (e.g. on Safari)
96100

packages/camera/camera_web/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: camera_web
22
description: A Flutter plugin for getting information about and controlling the camera on Web.
33
repository: https://github.com/flutter/packages/tree/main/packages/camera/camera_web
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
5-
version: 0.3.1+2
5+
version: 0.3.1+3
66

77
environment:
88
sdk: ">=2.17.0 <3.0.0"

packages/file_selector/file_selector_ios/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
## NEXT
1+
## 0.5.1+1
22

3+
* Clarifies explanation of endorsement in README.
34
* Aligns Dart and Flutter SDK constraints.
45

56
## 0.5.1

0 commit comments

Comments
 (0)