Skip to content

Commit fc98e4c

Browse files
committed
content: usage: installation: improve mac instructions
- Add native arm build link - Remove warning about unsigned application
1 parent 14a0235 commit fc98e4c

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

content/usage/installation.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,15 @@ Download the latest version for your operating system here:
4040
| Operating System | x86_64 | arm64 |
4141
| --- | --- | --- |
4242
| Windows | <a id="win-x64">Cockpit.exe</a> | Not available |
43-
| macOS[¹](#1) | <a id="mac-x86_64">Cockpit-Intel.dmg</a> | Not yet available, use x86_64 version |
43+
| macOS | <a id="mac-x64">Cockpit-Intel.dmg</a> | <a id="mac-arm64">Cockpit-M-series.dmg</a> |
4444
| iOS / iPadOS | N/A | use the BlueOS Extension in a browser |
45-
| Linux[²](#2) | <a id="linux-x86_64-AppImage">Cockpit-x86_64.AppImage</a><br><a id="linux-x86_64-flatpak">Cockpit-x86_64.flatpak</a> | <a id="linux-arm64-AppImage">Cockpit-arm64.AppImage</a><br><a id="linux-arm64-flatpak">Cockpit-arm64.flatpak</a> |
45+
| Linux[¹](#1) | <a id="linux-x86_64-AppImage">Cockpit-x86_64.AppImage</a><br><a id="linux-x86_64-flatpak">Cockpit-x86_64.flatpak</a> | <a id="linux-arm64-AppImage">Cockpit-arm64.AppImage</a><br><a id="linux-arm64-flatpak">Cockpit-arm64.flatpak</a> |
4646
| Android | N/A | use the BlueOS Extension in a browser |
4747
{% end %}
4848

4949
or check the [releases](https://github.com/bluerobotics/cockpit/releases), for a list of all available versions, and the main changes between them.
5050

51-
[^1]: Cockpit is not yet registered with Apple, so may get flagged as a potential security threat. For now, the first open on macOS may require
52-
right-clicking Cockpit in your Applications folder, selecting "Open", then choosing to "Open anyway" if prompted, or opening the security
53-
preferences and scrolling down to "Allow" opening if there is no prompt.
54-
55-
[^2]: Steam Deck users are recommended to use at least `v.16.0-beta.13`, as versions before this were [incapable of recording vidoes](https://github.com/bluerobotics/cockpit/pull/1974), and had performance issues.
51+
[^1]: Steam Deck users are recommended to use at least `v.16.0`, as versions before this were [incapable of recording vidoes](https://github.com/bluerobotics/cockpit/pull/1974), and had performance issues.
5652

5753
### Application Updates
5854

@@ -92,7 +88,11 @@ async function setDownloadURLs() {
9288
setLinkURL("win-x64", artifact);
9389
break;
9490
case ".dmg": // macOS
95-
setLinkURL("mac-x86_64", artifact);
91+
if (name.includes("x64")) {
92+
setLinkURL("mac-x64", artifact);
93+
} else if (name.includes("arm64")) {
94+
setLinkURL("mac-arm64", artifact);
95+
}
9696
break;
9797
case ".AppImage": // Linux (AppImage)
9898
if (name.includes("x86_64")) {

0 commit comments

Comments
 (0)