Skip to content

Commit debfbec

Browse files
authored
Fix outdated links across a number of markdown files (flutter#3276)
1 parent b1ab21a commit debfbec

File tree

70 files changed

+165
-74
lines changed

Some content is hidden

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

70 files changed

+165
-74
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[![Build Status](https://api.cirrus-ci.com/github/flutter/plugins.svg)](https://cirrus-ci.com/github/flutter/plugins/master)
55

6-
_See also: [Flutter's code of conduct](https://flutter.io/design-principles/#code-of-conduct)_
6+
_See also: [Flutter's code of conduct](https://github.com/flutter/flutter/blob/master/CODE_OF_CONDUCT.md)_
77

88
## Things you will need
99

@@ -131,17 +131,16 @@ pub global run flutter_plugin_tools xctest --target RunnerUITests --skip <plugin
131131
We gladly accept contributions via GitHub pull requests.
132132

133133
Please peruse our
134-
[style guide](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo) and
135-
[design principles](https://flutter.io/design-principles/) before
136-
working on anything non-trivial. These guidelines are intended to
134+
[style guide](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo)
135+
before working on anything non-trivial. These guidelines are intended to
137136
keep the code consistent and avoid common pitfalls.
138137

139138
To start working on a patch:
140139

141140
* `git fetch upstream`
142141
* `git checkout upstream/master -b <name_of_your_branch>`
143142
* Hack away.
144-
* Verify changes with [flutter_plugin_tools](https://pub.dartlang.org/packages/flutter_plugin_tools)
143+
* Verify changes with [flutter_plugin_tools](https://pub.dev/packages/flutter_plugin_tools)
145144
```
146145
pub global activate flutter_plugin_tools
147146
pub global run flutter_plugin_tools format --plugins plugin_name

packages/android_alarm_manager/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.4.5+19
2+
3+
* Fix outdated links across a number of markdown files ([#3276](https://github.com/flutter/plugins/pull/3276))
4+
15
## 0.4.5+18
26

37
* Update Flutter SDK constraint.

packages/android_alarm_manager/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# android_alarm_manager
22

3-
[![pub package](https://img.shields.io/pub/v/android_alarm_manager.svg)](https://pub.dartlang.org/packages/android_alarm_manager)
3+
[![pub package](https://img.shields.io/pub/v/android_alarm_manager.svg)](https://pub.dev/packages/android_alarm_manager)
44

55
A Flutter plugin for accessing the Android AlarmManager service, and running
66
Dart code in the background when alarms fire.
@@ -121,6 +121,6 @@ register plugins. This can be resolved by running `flutter upgrade` to upgrade
121121
to the latest Flutter version.**
122122

123123
For help getting started with Flutter, view our online
124-
[documentation](http://flutter.io/).
124+
[documentation](https://flutter.dev/).
125125

126-
For help on editing plugin code, view the [documentation](https://flutter.io/platform-plugins/#edit-code).
126+
For help on editing plugin code, view the [documentation](https://flutter.dev/docs/development/packages-and-plugins/developing-packages#plugin).

packages/android_alarm_manager/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Flutter plugin for accessing the Android AlarmManager service, and
44
# 0.4.y+z is compatible with 1.0.0, if you land a breaking change bump
55
# the version to 2.0.0.
66
# See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
7-
version: 0.4.5+18
7+
version: 0.4.5+19
88
homepage: https://github.com/flutter/plugins/tree/master/packages/android_alarm_manager
99

1010
dependencies:

packages/android_intent/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.0-nullsafety.1
2+
3+
* Fix outdated links across a number of markdown files ([#3276](https://github.com/flutter/plugins/pull/3276))
4+
15
## 2.0.0-nullsafety
26

37
* Migrate to null safety.

packages/android_intent/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,20 +53,20 @@ if (platform.isAndroid) {
5353
Feel free to add support for additional Android intents.
5454

5555
The Dart values supported for the arguments parameter, and their corresponding
56-
Android values, are listed [here](https://flutter.io/platform-channels/#codec).
56+
Android values, are listed [here](https://flutter.dev/docs/development/platform-integration/platform-channels#codec).
5757
On the Android side, the arguments are used to populate an Android `Bundle`
5858
instance. This process currently restricts the use of lists to homogeneous lists
5959
of integers or strings.
6060

6161
> Note that a similar method does not currently exist for iOS. Instead, the
62-
[url_launcher](https://pub.dartlang.org/packages/url_launcher) plugin
62+
[url_launcher](https://pub.dev/packages/url_launcher) plugin
6363
can be used for deep linking. Url launcher can also be used for creating
6464
ACTION_VIEW intents for Android, however this intent plugin also allows
6565
clients to set extra parameters for the intent.
6666

6767
## Getting Started
6868

6969
For help getting started with Flutter, view our online
70-
[documentation](http://flutter.io/).
70+
[documentation](https://flutter.dev/).
7171

72-
For help on editing plugin code, view the [documentation](https://flutter.io/platform-plugins/#edit-code).
72+
For help on editing plugin code, view the [documentation](https://flutter.dev/docs/development/packages-and-plugins/developing-packages#plugin).

packages/android_intent/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: android_intent
22
description: Flutter plugin for launching Android Intents. Not supported on iOS.
33
homepage: https://github.com/flutter/plugins/tree/master/packages/android_intent
4-
version: 2.0.0-nullsafety
4+
version: 2.0.0-nullsafety.1
55

66
flutter:
77
plugin:

packages/battery/battery/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.10
2+
3+
* Fix outdated links across a number of markdown files ([#3276](https://github.com/flutter/plugins/pull/3276))
4+
15
## 1.0.9
26

37
* Update Flutter SDK constraint.

packages/battery/battery/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Battery
22

3-
[![pub package](https://img.shields.io/pub/v/battery.svg)](https://pub.dartlang.org/packages/battery)
3+
[![pub package](https://img.shields.io/pub/v/battery.svg)](https://pub.dev/packages/battery)
44

55
A Flutter plugin to access various information about the battery of the device the app is running on.
66

77
## Usage
8-
To use this plugin, add `battery` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/).
8+
To use this plugin, add `battery` as a [dependency in your pubspec.yaml file](https://flutter.dev/docs/development/platform-integration/platform-channels).
99

1010
### Example
1111

packages/battery/battery/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: battery
22
description: Flutter plugin for accessing information about the battery state
33
(full, charging, discharging) on Android and iOS.
44
homepage: https://github.com/flutter/plugins/tree/master/packages/battery/battery
5-
version: 1.0.9
5+
version: 1.0.10
66

77
flutter:
88
plugin:

packages/camera/camera/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.0+2
2+
3+
* Fix outdated links across a number of markdown files ([#3276](https://github.com/flutter/plugins/pull/3276))
4+
15
## 0.6.0+1
26

37
Updated README to inform users that iOS 10.0+ is needed for use

packages/camera/camera/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Camera Plugin
22

3-
[![pub package](https://img.shields.io/pub/v/camera.svg)](https://pub.dartlang.org/packages/camera)
3+
[![pub package](https://img.shields.io/pub/v/camera.svg)](https://pub.dev/packages/camera)
44

55
A Flutter plugin for iOS and Android allowing access to the device cameras.
66

@@ -15,7 +15,7 @@ A Flutter plugin for iOS and Android allowing access to the device cameras.
1515

1616
## Installation
1717

18-
First, add `camera` as a [dependency in your pubspec.yaml file](https://flutter.io/using-packages/).
18+
First, add `camera` as a [dependency in your pubspec.yaml file](https://flutter.dev/using-packages/).
1919

2020
### iOS
2121

packages/camera/camera/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: camera
22
description: A Flutter plugin for getting information about and controlling the
33
camera on Android and iOS. Supports previewing the camera feed, capturing images, capturing video,
44
and streaming image buffers to dart.
5-
version: 0.6.0+1
5+
version: 0.6.0+2
66
homepage: https://github.com/flutter/plugins/tree/master/packages/camera/camera
77

88
dependencies:

packages/connectivity/connectivity/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.0.0-nullsafety.3
2+
3+
* Fix outdated links across a number of markdown files ([#3276](https://github.com/flutter/plugins/pull/3276))
4+
15
## 3.0.0-nullsafety.2
26

37
* Android: Cleanup the NetworkCallback object when a connectivity stream is cancelled

packages/connectivity/connectivity/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ Note that connectivity changes are no longer communicated to Android apps in the
5555
## Getting Started
5656

5757
For help getting started with Flutter, view our online
58-
[documentation](http://flutter.io/).
58+
[documentation](https://flutter.dev/).
5959

60-
For help on editing plugin code, view the [documentation](https://flutter.io/platform-plugins/#edit-code).
60+
For help on editing plugin code, view the [documentation](https://flutter.dev/docs/development/packages-and-plugins/developing-packages#plugin).

packages/connectivity/connectivity/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: connectivity
22
description: Flutter plugin for discovering the state of the network (WiFi &
33
mobile/cellular) connectivity on Android and iOS.
44
homepage: https://github.com/flutter/plugins/tree/master/packages/connectivity/connectivity
5-
version: 3.0.0-nullsafety.2
5+
version: 3.0.0-nullsafety.3
66

77
flutter:
88
plugin:

packages/cross_file/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.0+2
2+
3+
* Fix outdated links across a number of markdown files ([#3276](https://github.com/flutter/plugins/pull/3276))
4+
15
## 0.1.0+1
26

37
- Update Flutter SDK constraint.

packages/cross_file/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ final fileContent = await file.readAsString();
2424
print('Content of the file: ${fileContent}'); // e.g. "Moto G (4)"
2525
```
2626

27-
You will find links to the API docs on the [pub page](https://pub.dartlang.org/packages/cross_file).
27+
You will find links to the API docs on the [pub page](https://pub.dev/packages/cross_file).
2828

2929
## Getting Started
3030

packages/cross_file/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: cross_file
22
description: An abstraction to allow working with files across multiple platforms.
33
homepage: https://github.com/flutter/plugins/tree/master/packages/cross_file
4-
version: 0.1.0+1
4+
version: 0.1.0+2
55

66
dependencies:
77
flutter:

packages/device_info/device_info/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.0-nullsafety.2
2+
3+
* Fix outdated links across a number of markdown files ([#3276](https://github.com/flutter/plugins/pull/3276))
4+
15
## 2.0.0-nullsafety.1
26

37
* Bump Dart SDK to support null safety.

packages/device_info/device_info/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ IosDeviceInfo iosInfo = await deviceInfo.iosInfo;
2121
print('Running on ${iosInfo.utsname.machine}'); // e.g. "iPod7,1"
2222
```
2323

24-
You will find links to the API docs on the [pub page](https://pub.dartlang.org/packages/device_info).
24+
You will find links to the API docs on the [pub page](https://pub.dev/packages/device_info).
2525

2626
## Getting Started
2727

2828
For help getting started with Flutter, view our online
29-
[documentation](http://flutter.io/).
29+
[documentation](https://flutter.dev/).
3030

31-
For help on editing plugin code, view the [documentation](https://flutter.io/platform-plugins/#edit-code).
31+
For help on editing plugin code, view the [documentation](https://flutter.dev/docs/development/packages-and-plugins/developing-packages#plugin).

packages/device_info/device_info/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ homepage: https://github.com/flutter/plugins/tree/master/packages/device_info
55
# 0.4.y+z is compatible with 1.0.0, if you land a breaking change bump
66
# the version to 2.0.0.
77
# See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
8-
version: 2.0.0-nullsafety.1
8+
version: 2.0.0-nullsafety.2
99

1010
flutter:
1111
plugin:

packages/flutter_plugin_android_lifecycle/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.0-nullsafety.2
2+
3+
* Fix outdated links across a number of markdown files ([#3276](https://github.com/flutter/plugins/pull/3276))
4+
15
## 2.0.0-nullsafety.1
26

37
* Fix example app SDK.

packages/flutter_plugin_android_lifecycle/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Flutter Android Lifecycle Plugin
22

3-
[![pub package](https://img.shields.io/pub/v/flutter_plugin_android_lifecycle.svg)](https://pub.dartlang.org/packages/flutter_plugin_android_lifecycle)
3+
[![pub package](https://img.shields.io/pub/v/flutter_plugin_android_lifecycle.svg)](https://pub.dev/packages/flutter_plugin_android_lifecycle)
44

55
A Flutter plugin for Android to allow other Flutter plugins to access Android `Lifecycle` objects
66
in the plugin's binding.
@@ -11,7 +11,7 @@ major version of the Android `Lifecycle` API they expect.
1111

1212
## Installation
1313

14-
Add `flutter_plugin_android_lifecycle` as a [dependency in your pubspec.yaml file](https://flutter.io/using-packages/).
14+
Add `flutter_plugin_android_lifecycle` as a [dependency in your pubspec.yaml file](https://flutter.dev/using-packages/).
1515

1616
## Example
1717

packages/flutter_plugin_android_lifecycle/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_plugin_android_lifecycle
22
description: Flutter plugin for accessing an Android Lifecycle within other plugins.
3-
version: 2.0.0-nullsafety.1
3+
version: 2.0.0-nullsafety.2
44
homepage: https://github.com/flutter/plugins/tree/master/packages/flutter_plugin_android_lifecycle
55

66
environment:

packages/google_maps_flutter/google_maps_flutter/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.9
2+
3+
* Fix outdated links across a number of markdown files ([#3276](https://github.com/flutter/plugins/pull/3276))
4+
15
## 1.0.8
26

37
* Update Flutter SDK constraint.

packages/google_maps_flutter/google_maps_flutter/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Google Maps for Flutter
22

3-
[![pub package](https://img.shields.io/pub/v/google_maps_flutter.svg)](https://pub.dartlang.org/packages/google_maps_flutter)
3+
[![pub package](https://img.shields.io/pub/v/google_maps_flutter.svg)](https://pub.dev/packages/google_maps_flutter)
44

55
A Flutter plugin that provides a [Google Maps](https://developers.google.com/maps/) widget.
66

77
## Usage
88

9-
To use this plugin, add `google_maps_flutter` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/).
9+
To use this plugin, add `google_maps_flutter` as a [dependency in your pubspec.yaml file](https://flutter.dev/docs/development/platform-integration/platform-channels).
1010

1111
## Getting Started
1212

packages/google_maps_flutter/google_maps_flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: google_maps_flutter
22
description: A Flutter plugin for integrating Google Maps in iOS and Android applications.
33
homepage: https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter/google_maps_flutter
4-
version: 1.0.8
4+
version: 1.0.9
55

66
dependencies:
77
flutter:

packages/google_sign_in/extension_google_sign_in_as_googleapis_auth/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.3
2+
3+
* Fix outdated links across a number of markdown files ([#3276](https://github.com/flutter/plugins/pull/3276))
4+
15
## 1.0.2
26

37
* Update Flutter SDK constraint.

packages/google_sign_in/extension_google_sign_in_as_googleapis_auth/example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Demonstrates how to use the google_sign_in plugin with the `googleapis` package.
55
## Getting Started
66

77
For help getting started with Flutter, view our online
8-
[documentation](http://flutter.io/).
8+
[documentation](https://flutter.dev/).

packages/google_sign_in/extension_google_sign_in_as_googleapis_auth/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
name: extension_google_sign_in_as_googleapis_auth
88
description: A bridge package between google_sign_in and googleapis_auth, to create Authenticated Clients from google_sign_in user credentials.
9-
version: 1.0.2
9+
version: 1.0.3
1010
homepage: https://github.com/flutter/plugins/google_sign_in/extension_google_sign_in_as_googleapis_auth
1111

1212
dependencies:

packages/google_sign_in/google_sign_in/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.5.8
2+
3+
* Fix outdated links across a number of markdown files ([#3276](https://github.com/flutter/plugins/pull/3276))
4+
15
## 4.5.7
26

37
* Update Flutter SDK constraint.

packages/google_sign_in/google_sign_in/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# google_sign_in
22

3-
[![pub package](https://img.shields.io/pub/v/google_sign_in.svg)](https://pub.dartlang.org/packages/google_sign_in)
3+
[![pub package](https://img.shields.io/pub/v/google_sign_in.svg)](https://pub.dev/packages/google_sign_in)
44

55
A Flutter plugin for [Google Sign In](https://developers.google.com/identity/).
66

@@ -63,7 +63,7 @@ plugin could be an option.
6363
## Usage
6464

6565
### Import the package
66-
To use this plugin, follow the [plugin installation instructions](https://pub.dartlang.org/packages/google_sign_in#pub-pkg-tab-installing).
66+
To use this plugin, follow the [plugin installation instructions](https://pub.dev/packages/google_sign_in#pub-pkg-tab-installing).
6767

6868
### Use the plugin
6969
Add the following import to your Dart code:

packages/google_sign_in/google_sign_in/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: google_sign_in
22
description: Flutter plugin for Google Sign-In, a secure authentication system
33
for signing in with a Google account on Android and iOS.
44
homepage: https://github.com/flutter/plugins/tree/master/packages/google_sign_in/google_sign_in
5-
version: 4.5.7
5+
version: 4.5.8
66

77
flutter:
88
plugin:

packages/image_picker/image_picker/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.7+18
2+
3+
* Fix outdated links across a number of markdown files ([#3276](https://github.com/flutter/plugins/pull/3276))
4+
15
## 0.6.7+17
26

37
* iOS: fix `User-facing text should use localized string macro` warning.

0 commit comments

Comments
 (0)