Skip to content

Commit 6d5cb85

Browse files
[various] Clarify endorsement in READMEs (#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

packages/file_selector/file_selector_ios/README.md

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

77
This package is [endorsed][2], which means you can simply use `file_selector`
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/file_selector
1115
[2]: https://flutter.dev/docs/development/packages-and-plugins/developing-packages#endorsed-federated-plugin

packages/file_selector/file_selector_ios/pubspec.yaml

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

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

packages/file_selector/file_selector_linux/CHANGELOG.md

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

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

56
## 0.9.1+1

packages/file_selector/file_selector_linux/README.md

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

77
This package is [endorsed][2], which means you can simply use `file_selector`
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/file_selector
1115
[2]: https://flutter.dev/docs/development/packages-and-plugins/developing-packages#endorsed-federated-plugin

packages/file_selector/file_selector_linux/pubspec.yaml

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

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

packages/file_selector/file_selector_macos/CHANGELOG.md

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

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

56
## 0.9.0+5

packages/file_selector/file_selector_macos/README.md

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

77
This package is [endorsed][2], which means you can simply use `file_selector`
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
### Entitlements
1115

packages/file_selector/file_selector_macos/pubspec.yaml

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

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

packages/file_selector/file_selector_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.9.0+4
22

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

56
## 0.9.0+3

packages/file_selector/file_selector_web/README.md

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

77
This package is [endorsed][2], which means you can simply use `file_selector`
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/file_selector
1115
[2]: https://flutter.dev/docs/development/packages-and-plugins/developing-packages#endorsed-federated-plugin

packages/file_selector/file_selector_web/pubspec.yaml

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

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

packages/file_selector/file_selector_windows/CHANGELOG.md

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

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

56
## 0.9.1+5

packages/file_selector/file_selector_windows/README.md

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

77
This package is [endorsed][2], which means you can simply use `file_selector`
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/file_selector
1115
[2]: https://flutter.dev/docs/development/packages-and-plugins/developing-packages#endorsed-federated-plugin

packages/file_selector/file_selector_windows/pubspec.yaml

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

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

packages/google_maps_flutter/google_maps_flutter_android/CHANGELOG.md

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

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

56
## 2.4.8

packages/google_maps_flutter/google_maps_flutter_android/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ The Android implementation of [`google_maps_flutter`][1].
88

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

1316
## Display Mode
1417

packages/google_maps_flutter/google_maps_flutter_android/pubspec.yaml

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

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

packages/google_maps_flutter/google_maps_flutter_ios/CHANGELOG.md

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

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

56
## 2.2.0

packages/google_maps_flutter/google_maps_flutter_ios/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ The iOS implementation of [`google_maps_flutter`][1].
66

77
This package is [endorsed][2], which means you can simply use
88
`google_maps_flutter` normally. This package will be automatically included in
9-
your app when you do.
9+
your app when you do, 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.
1013

1114
[1]: https://pub.dev/packages/google_maps_flutter
1215
[2]: https://flutter.dev/docs/development/packages-and-plugins/developing-packages#endorsed-federated-plugin

packages/google_maps_flutter/google_maps_flutter_ios/pubspec.yaml

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

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

packages/google_maps_flutter/google_maps_flutter_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.4.0+7
22

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

56
## 0.4.0+6

packages/google_maps_flutter/google_maps_flutter_web/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ This is an implementation of the [google_maps_flutter](https://pub.dev/packages/
66

77
### Depend on the package
88

9-
This package is not an endorsed implementation of the google_maps_flutter plugin yet, so you'll need to
9+
This package is not an endorsed implementation of the google_maps_flutter plugin yet, so you'll need to
1010
[add it explicitly](https://pub.dev/packages/google_maps_flutter_web/install).
1111

12+
Once you do, you can use the `google_maps_flutter` APIs as you normally would.
13+
1214
### Modify web/index.html
1315

1416
Get an API Key for Google Maps JavaScript API. Get started [here](https://developers.google.com/maps/documentation/javascript/get-api-key).

packages/google_maps_flutter/google_maps_flutter_web/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: google_maps_flutter_web
22
description: Web platform implementation of google_maps_flutter
33
repository: https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter_web
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
5-
version: 0.4.0+6
5+
version: 0.4.0+7
66

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

packages/google_sign_in/google_sign_in_android/CHANGELOG.md

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

3+
* Clarifies explanation of endorsement in README.
34
* Aligns Dart and Flutter SDK constraints.
45
* Updates compileSdkVersion to 33.
56

packages/google_sign_in/google_sign_in_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 [`google_sign_in`][1].
55
## Usage
66

77
This package is [endorsed][2], which means you can simply use `google_sign_in`
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/google_sign_in
1115
[2]: https://flutter.dev/docs/development/packages-and-plugins/developing-packages#endorsed-federated-plugin

packages/google_sign_in/google_sign_in_android/pubspec.yaml

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

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

packages/google_sign_in/google_sign_in_ios/CHANGELOG.md

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

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

56
## 5.6.0

packages/google_sign_in/google_sign_in_ios/README.md

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

77
This package is [endorsed][2], which means you can simply use `google_sign_in`
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/google_sign_in
1115
[2]: https://flutter.dev/docs/development/packages-and-plugins/developing-packages#endorsed-federated-plugin

0 commit comments

Comments
 (0)