Skip to content

Commit 5291897

Browse files
author
Tim Sneath
authored
Replace flutter.io with flutter.dev (flutter#30562)
1 parent 2b7e989 commit 5291897

File tree

72 files changed

+139
-139
lines changed

Some content is hidden

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

72 files changed

+139
-139
lines changed

.github/ISSUE_TEMPLATE/ACTIVATION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ about: You have run into problems while downloading or installing Flutter, or th
1010
1111
If you are looking for support, please check out our documentation
1212
or consider asking a question on Stack Overflow:
13-
* https://flutter.io/
13+
* https://flutter.dev/
1414
* https://docs.flutter.io/
1515
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
1616
1717
If you have found a bug or if our documentation doesn't have an answer
1818
to what you're looking for, then fill our the template below. Please read
19-
our guide to filing a bug first: https://flutter.io/bug-reports/
19+
our guide to filing a bug first: https://flutter.dev/bug-reports/
2020
-->
2121

2222
## Steps to Reproduce

.github/ISSUE_TEMPLATE/BUG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ about: You are writing an application with Flutter but the application is crashi
99
1010
If you are looking for support, please check out our documentation
1111
or consider asking a question on Stack Overflow:
12-
* https://flutter.io/
12+
* https://flutter.dev/
1313
* https://docs.flutter.io/
1414
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
1515
1616
If you have found a bug or if our documentation doesn't have an answer
1717
to what you're looking for, then fill our the template below. Please read
18-
our guide to filing a bug first: https://flutter.io/bug-reports/
18+
our guide to filing a bug first: https://flutter.dev/bug-reports/
1919
-->
2020

2121
## Steps to Reproduce

.github/ISSUE_TEMPLATE/SUPPORT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ about: You have a question for how to achieve a particular effect, or you need h
88
<!-- Thank you for using Flutter!
99
1010
Please check out our documentation first:
11-
* https://flutter.io/
11+
* https://flutter.dev/
1212
* https://docs.flutter.io/
1313
1414
If you can't find the answer there, please consider asking a question on

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ our trust and demonstrated a commitment to Flutter.
2121
This document focuses on what is needed to contribute by writing code
2222
and submitting pull requests for the Flutter framework. For
2323
information on contributing in other ways, see [the community page
24-
on flutter.io](https://flutter.io/community).
24+
on flutter.dev](https://flutter.dev/community).
2525

2626
Developing for Flutter
2727
----------------------
@@ -50,17 +50,17 @@ presented.
5050
which describes the steps you need to configure your computer to
5151
work on Flutter's framework. Flutter's framework uses mainly Dart.
5252

53-
4. [Tree hygiene](https://github.com/flutter/flutter/wiki/Tree-hygiene),
53+
5. [Tree hygiene](https://github.com/flutter/flutter/wiki/Tree-hygiene),
5454
which covers how to land a PR, how to do code review, how to
5555
handle breaking changes, how to handle regressions, and how to
5656
handle post-commit test failures.
5757

58-
3. [Issue hygiene](https://github.com/flutter/flutter/wiki/Issue-hygiene),
58+
6. [Issue hygiene](https://github.com/flutter/flutter/wiki/Issue-hygiene),
5959
which covers our processes around triaging bugs, escalating high
6060
priority bugs, assigning bugs, and our GitHub labels and
6161
milestones.
6262

63-
5. [Our style guide](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo),
63+
7. [Our style guide](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo),
6464
which includes advice for designing APIs for Flutter, and how to
6565
format code in the framework.
6666

bin/internal/update_dart_sdk.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ $psMajorVersionRequired = 5
2828
$psMajorVersionLocal = $PSVersionTable.PSVersion.Major
2929
if ($psMajorVersionLocal -lt $psMajorVersionRequired) {
3030
Write-Host "Flutter requires PowerShell $psMajorVersionRequired.0 or newer."
31-
Write-Host "See https://flutter.io/docs/get-started/install/windows for more."
31+
Write-Host "See https://flutter.dev/docs/get-started/install/windows for more."
3232
return
3333
}
3434

bin/internal/update_dart_sdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ if [ ! -f "$ENGINE_STAMP" ] || [ "$ENGINE_VERSION" != `cat "$ENGINE_STAMP"` ]; t
7474
echo
7575
echo "Failed to retrieve the Dart SDK from: $DART_SDK_URL"
7676
echo "If you're located in China, please see this page:"
77-
echo " https://flutter.io/community/china"
77+
echo " https://flutter.dev/community/china"
7878
echo
7979
rm -f -- "$DART_SDK_ZIP"
8080
exit 1

dev/ci/docker_linux/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Flutter (https://flutter.io) Developement Environment for Linux
1+
# Flutter (https://flutter.dev) Developement Environment for Linux
22
# ===============================================================
33
#
44
# This environment passes all Linux Flutter Doctor checks and is sufficient

dev/devicelab/lib/tasks/perf_tests.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ class CompileTest {
274274
await flutter('build', options: options);
275275
watch.stop();
276276
final String appPath = '$cwd/build/ios/Release-iphoneos/Runner.app/';
277-
// IPAs are created manually, https://flutter.io/ios-release/
277+
// IPAs are created manually, https://flutter.dev/ios-release/
278278
await exec('tar', <String>['-zcf', 'build/app.ipa', appPath]);
279279
releaseSizeInBytes = await file('$cwd/build/app.ipa').length();
280280
if (reportPackageContentSizes)

dev/docs/dashing.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"package": "flutter",
44
"author": {
55
"name": "The Flutter Team",
6-
"link": "https://flutter.io"
6+
"link": "https://flutter.dev"
77
},
88
"index": "index.html",
99
"icon32x32": "flutter/static-assets/favicon.png",

dev/integration_tests/ios_add2app/Pods/Local Podspecs/Flutter.podspec.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)