Skip to content

Commit afe227e

Browse files
author
Tony Sansone
committed
Updated per @athomas review
1 parent ca4e6fe commit afe227e

File tree

6 files changed

+14
-192
lines changed

6 files changed

+14
-192
lines changed

src/_sass/_site.scss

-7
Original file line numberDiff line numberDiff line change
@@ -514,14 +514,11 @@ thead:has(th:empty) {
514514
color: $site-color-body;
515515
margin-top: 1rem;
516516
padding: 1.5rem;
517-
<<<<<<< HEAD
518-
=======
519517

520518
i.material-icons {
521519
font-size: 1.25em;
522520
user-select: none;
523521
}
524-
>>>>>>> a9d6c41c (Updated for 11ty)
525522

526523
.alert-header {
527524
display: flex;
@@ -883,8 +880,4 @@ div h4:first-child,
883880
div h5:first-child,
884881
div h6:first-child {
885882
margin-top: 0rem;
886-
<<<<<<< HEAD
887883
}
888-
=======
889-
}
890-
>>>>>>> a9d6c41c (Updated for 11ty)

src/content/get-dart/_linux.md

-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,12 @@
11

2-
<<<<<<< HEAD
32
### Install using package manager {:.no_toc}
4-
=======
5-
### Install using package manager
6-
{: .no_toc}
7-
>>>>>>> a9d6c41c (Updated for 11ty)
83

94
Choose to install either using [apt-get](#install-using-apt-get)
105
or downloading a [`.deb`](#install-a-debian-package) package.
116

127
Both methods trigger an SDK update whenever Dart releases a new version.
138

14-
<<<<<<< HEAD
159
#### Install using `apt-get` {:.no_toc}
16-
=======
17-
#### Install using `apt-get`
18-
{: .no_toc}
19-
>>>>>>> a9d6c41c (Updated for 11ty)
2010

2111
Perform the following steps for the first install only.
2212

@@ -54,19 +44,10 @@ To install the Dart SDK as a Debian package (`*.deb`).
5444

5545
* From a GUI, double-click the `.deb` file.
5646

57-
<<<<<<< HEAD
5847
* From a terminal, run the following command:
59-
=======
60-
* From a console, run the following command:
61-
>>>>>>> a9d6c41c (Updated for 11ty)
6248

6349
```console
6450
$ sudo dpkg -i dart_3.2.6-1_amd64.deb
6551
```
6652

6753
[sudo]: https://www.sudo.ws/
68-
<<<<<<< HEAD
69-
=======
70-
[Debian stable]: https://www.debian.org/releases
71-
[Ubuntu LTS]: https://wiki.ubuntu.com/Releases
72-
>>>>>>> a9d6c41c (Updated for 11ty)

src/content/get-dart/_mac.md

+9-67
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,6 @@
11

2-
<<<<<<< HEAD
3-
### Install using Homebrew {:.no_toc}
2+
### Install using Homebrew {:.no_toc}
43

5-
=======
6-
### System requirements
7-
{: .no_toc}
8-
9-
Dart supports the following hardware architectures and platform versions
10-
to develop and run Dart code on macOS.
11-
12-
#### Hardware architecture
13-
{: .no_toc}
14-
15-
Dart supports the following CPU architectures.
16-
17-
| Platform | x86 | x64 | ARM | ARM64 | RISC-V |
18-
|----------|-----|-----|-----|-------|--------|
19-
| macOS | No | Yes | No | Yes | No |
20-
{:.table .table-striped}
21-
22-
#### Operating system
23-
{: .no_toc}
24-
25-
Dart supports the latest three major versions of macOS.
26-
27-
| Platform | OS Versions |
28-
|----------|------------------------------------------|
29-
| macOS | {% for version in site.data.macos %}{% if version.eol != false %}{% break %}{%- else -%}{{version.cycle}} ({{version.codename}}){% endif %}, {% endfor %} |
30-
{:.table .table-striped}
31-
32-
### Install using Homebrew
33-
{: .no_toc}
34-
35-
>>>>>>> a9d6c41c (Updated for 11ty)
364
To install the Dart SDK, use [Homebrew][].
375

386
1. Install Homebrew if needed.
@@ -49,41 +17,22 @@ To install the Dart SDK, use [Homebrew][].
4917
$ brew install dart
5018
```
5119

52-
<<<<<<< HEAD
53-
### Verify PATH includes Homebrew {:.no_toc}
54-
55-
Verify that your `PATH` includes the **Homebrew `bin`**.
56-
=======
57-
58-
### Verify PATH includes Homebrew
59-
{: .no_toc}
20+
### Verify PATH includes Homebrew {:.no_toc}
6021

61-
Verify that your `PATH` includes the **Homebrew `bin`.
62-
>>>>>>> a9d6c41c (Updated for 11ty)
63-
Setting up the path correctly makes it easier to use Dart SDK commands
22+
Verify that your `PATH` includes the **Homebrew `bin` directory**.
23+
Setting up the correct path simplifies using Dart SDK commands
6424
such as `dart run` and `dart format`.
65-
For help configuring your path,
66-
consult the [Homebrew FAQ.](https://docs.brew.sh/FAQ)
25+
To get help configuring your `PATH`, consult the [Homebrew FAQ][].
6726

68-
<<<<<<< HEAD
69-
### Upgrade using Homebrew {:.no_toc}
70-
=======
71-
### Upgrade using Homebrew
72-
{: .no_toc}
73-
>>>>>>> a9d6c41c (Updated for 11ty)
27+
### Upgrade using Homebrew {:.no_toc}
7428

7529
To upgrade when a new release of Dart is available:
7630

7731
```console
7832
$ brew upgrade dart
7933
```
8034

81-
<<<<<<< HEAD
82-
### Switch Dart versions {:.no_toc}
83-
=======
84-
### Switch Dart versions
85-
{: .no_toc}
86-
>>>>>>> a9d6c41c (Updated for 11ty)
35+
### Switch Dart versions {:.no_toc}
8736

8837
To switch between locally installed Dart releases:
8938

@@ -102,12 +51,7 @@ To switch between locally installed Dart releases:
10251
$ brew unlink dart@<old> && brew unlink dart@<new> && brew link dart@<new>
10352
```
10453

105-
<<<<<<< HEAD
106-
### List installed Dart versions {:.no_toc}
107-
=======
108-
### List installed Dart versions
109-
{: .no_toc}
110-
>>>>>>> a9d6c41c (Updated for 11ty)
54+
### List installed Dart versions {:.no_toc}
11155

11256
To see which versions of Dart you've installed:
11357

@@ -116,7 +60,5 @@ $ brew info dart
11660
```
11761

11862
[Homebrew]: https://brew.sh
119-
<<<<<<< HEAD
12063
[tap]: {{site.gh-dart.org}}/homebrew-dart
121-
=======
122-
>>>>>>> a9d6c41c (Updated for 11ty)
64+
[Homebrew FAQ]: https://docs.brew.sh/FAQ#my-mac-apps-dont-find-homebrew-utilities

src/content/get-dart/_windows.md

-24
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,22 @@
1-
<<<<<<< HEAD
21

32
### Install using Chocolatey {:.no_toc}
43

54
To install the Dart SDK, use [Chocolatey][Chocolatey].
65
Chocolatey requires [elevated permissions].
76

8-
=======
9-
### Install using Chocolatey
10-
{: .no_toc}
11-
12-
To install the Dart SDK, use [Chocolatey][Chocolatey].
13-
Chocolatey requires [elevated permissions].
14-
15-
>>>>>>> a9d6c41c (Updated for 11ty)
167
Install Chocolatey, then run a [command prompt] with elevated permissions.
178

189
```ps
1910
C:\> choco install dart-sdk
2011
```
2112

22-
<<<<<<< HEAD
2313
### Change default install path {:.no_toc}
24-
=======
25-
### Change default install path
26-
{: .no_toc}
27-
>>>>>>> a9d6c41c (Updated for 11ty)
2814

2915
By default, Chocolatey installs the SDK at `C:\tools\dart-sdk`.
3016
To change that location, set the [`ChocolateyToolsLocation`][]
3117
environment variable to your desired installation directory.
3218

33-
<<<<<<< HEAD
3419
### Verify your PATH includes Dart {:.no_toc}
35-
=======
36-
### Verify your PATH includes Dart
37-
{: .no_toc}
38-
>>>>>>> a9d6c41c (Updated for 11ty)
3920

4021
Verify you can run Dart.
4122

@@ -55,12 +36,7 @@ add the SDK location to your PATH:
5536
6. In each window that you just opened,
5637
click **Apply** or **OK** to dismiss it and apply the path change.
5738

58-
<<<<<<< HEAD
5939
### Upgrade using Chocolatey {:.no_toc}
60-
=======
61-
### Upgrade using Chocolatey
62-
{: .no_toc}
63-
>>>>>>> a9d6c41c (Updated for 11ty)
6440

6541
To upgrade the Dart SDK:
6642

src/content/get-dart/index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ js: [{url: '/assets/js/get-dart/install.js', defer: true}]
88
This page describes how to download the Dart SDK.
99
The Dart SDK includes the libraries and command-line tools that you need to develop Dart command-line, server, and non-Flutter web apps.
1010

11-
To learn more about the Dart SDK, see the [Dart SDK overview](/tools/sdk).
11+
To learn more about the Dart SDK, consult the [Dart SDK overview](/tools/sdk).
1212

1313
## System requirements
1414

1515
Dart supports the following hardware architectures and platform versions
16-
to develop and run Dart code.
16+
to develop and run Dart code.q
1717

1818
{% assign yes = '<span class="material-symbols" style="color: #158477;">verified</span>' %}
1919
{% assign no = '<span class="material-symbols" style="color: #D43324">dangerous</span>' %}
2020
{% assign beta = '<span class="material-symbols" style="color: #13C2AD">gpp_maybe</span>' %}
2121
{% assign na = '<span class="material-symbols" style="color: #DADCE0">do_not_disturb_on</span>' %}
22-
{% assign macversions = '' %}
22+
{% assign macversions = 'Latest three versions of macOS:<br>' %}
2323
{% for version in macos limit:3 %}
2424
{%- if version.eol == false -%}
2525
{% capture maclinkversion -%}
26-
[{{version.cycle}}]({{version.link}}) ({{version.codename}})
26+
[{{version.codename}}]({{version.link}}) ({{version.cycle}})
2727
{%- endcapture -%}
2828
{% assign macversions = macversions | append: maclinkversion %}
2929
{%- unless forloop.last -%}{% assign macversions = macversions | append: ', ' %}{% endunless -%}
@@ -139,4 +139,4 @@ follow the [instructions on this page](#install)
139139
[10]: https://www.microsoft.com/en-us/software-download/windows10%20
140140
[11]: https://www.microsoft.com/en-us/software-download/windows11
141141
[Debian stable]: https://www.debian.org/releases
142-
[Ubuntu LTS]: https://wiki.ubuntu.com/Releases
142+
[Ubuntu LTS]: https://wiki.ubuntu.com/Releases

src/get-dart/_mac.md

-70
This file was deleted.

0 commit comments

Comments
 (0)