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:

0 commit comments

Comments
 (0)