Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed "h/w arch" to "target arch" as per Yegor #11298

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions src/_data/platforms.yml
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
- platform: 'Android SDK'
chipsets: 'x64, Arm32, Arm64'
target-arch: 'x64, Arm32, Arm64'
supported: '21 to 34'
ci-tested: '21 to 34'
unsupported: '20 and earlier'
- platform: 'iOS'
chipsets: 'Arm64'
target-arch: 'Arm64'
supported: '12 to 18'
ci-tested: '17'
unsupported: '11 and earlier'
- platform: 'macOS'
chipsets: 'x64, Arm64'
target-arch: 'x64, Arm64'
supported: 'Mojave (10.14) to Sequoia (15)'
ci-tested: 'Ventura (13), Sonoma (14)'
unsupported: 'High Sierra (10.13) and earlier'
- platform: 'Windows'
chipsets: 'x64, Arm64'
target-arch: 'x64, Arm64'
supported: '10, 11'
ci-tested: '10'
unsupported: '8 and earlier'
- platform: 'Debian (Linux)'
chipsets: 'x64, Arm64'
target-arch: 'x64, Arm64'
supported: '10, 11, 12'
ci-tested: '11, 12'
unsupported: '9 and earlier'
- platform: 'Ubuntu (Linux)'
chipsets: 'x64, Arm64'
target-arch: 'x64, Arm64'
supported: '20.04 LTS to 24.04 LTS'
ci-tested: '20.04 LTS, 22.04 LTS'
unsupported: '23.10 and earlier non-LTS'
- platform: 'Chrome (Web)'
chipsets: 'N/A'
target-arch: 'JavaScript, WebAssembly'
supported: '[Latest 2](https://chromereleases.googleblog.com/search/label/Stable%20updates)'
ci-tested: '119, 125'
unsupported: '95 and earlier'
- platform: 'Firefox (Web)'
chipsets: 'N/A'
target-arch: 'JavaScript'
supported: '106 and newer'
ci-tested: '106'
unsupported: '98 and earlier'
- platform: 'Safari (Web)'
chipsets: 'N/A'
target-arch: 'JavaScript'
supported: '15.6 and newer'
ci-tested: '15.6'
unsupported: '15.5 and earlier'
- platform: 'Edge (Web)'
chipsets: 'N/A'
target-arch: 'JavaScript, WebAssembly'
supported: '[Latest 2](https://learn.microsoft.com/en-us/deployedge/microsoft-edge-relnote-stable-channel)'
ci-tested: 119, 125
unsupported: '95 and earlier'
4 changes: 2 additions & 2 deletions src/content/reference/supported-platforms.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ Flutter supports deploying to the following platforms.

{% assign opsys = platforms %}

| Target platform | Hardware architectures | Supported versions | CI-tested versions | Unsupported versions |
| Target platform | Target architectures | Supported versions | CI-tested versions | Unsupported versions |
|---|:---:|:---:|:---:|:---:|
{%- for platform in opsys %}
| {{platform.platform}} | {{platform.chipsets}} | {{platform.supported}} | {{platform.ci-tested}} | {{platform.unsupported}} |
| {{platform.platform}} | {{platform.target-arch}} | {{platform.supported}} | {{platform.ci-tested}} | {{platform.unsupported}} |
{%- endfor %}

{:.table .table-striped}
Loading