Skip to content

Commit

Permalink
Link to deb package downloads
Browse files Browse the repository at this point in the history
  • Loading branch information
liias committed Jun 17, 2023
1 parent 0bdcbc4 commit fbc9962
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 4 deletions.
14 changes: 10 additions & 4 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sort_by = "weight"
need [Open external links in a container](https://addons.mozilla.org/en-US/firefox/addon/open-url-in-container/)
extension installed until [#1726634](https://bugzilla.mozilla.org/show_bug.cgi?id=1726634) is resolved)
- Runs on Mac, Linux and Windows
- Supports opening following desktop applications directly (not supported in Windows at the moment):
- Supports opening following desktop applications directly:
- Figma
- Linear
- Notion
Expand All @@ -29,10 +29,16 @@ Download for your platform

- macOS - [**Browsers.dmg**](https://github.com/Browsers-software/browsers/releases/latest/download/Browsers.dmg) (Apple
Silicon and Intel based Macs)
- Linux - [**browsers_linux.tar.gz**](https://github.com/Browsers-software/browsers/releases/latest/download/browsers_linux.tar.gz) (arm64 and x86_64)
- Windows - [**Browsers_windows.zip**](https://github.com/Browsers-software/browsers/releases/latest/download/Browsers_windows.zip) (arm64 and x86_64)
- Linux
- DEB package
- [**browsers_amd64.deb**](https://github.com/Browsers-software/browsers/releases/latest/download/browsers_amd64.deb) (x86_64)
- [**browsers_arm64.deb**](https://github.com/Browsers-software/browsers/releases/latest/download/browsers_arm64.deb) (arm64)
- [**browsers_armhf.deb**](https://github.com/Browsers-software/browsers/releases/latest/download/browsers_armhf.deb) (armv7l)
- Universal - [**browsers_linux.tar.gz**](https://github.com/Browsers-software/browsers/releases/latest/download/browsers_linux.tar.gz) (x86_64, arm64 and armv7l)
- Windows - [**Browsers_windows.zip**](https://github.com/Browsers-software/browsers/releases/latest/download/Browsers_windows.zip) (x86_64 and arm64)

The app will prompt to set it as default browser on launch which you would need to allow.
On macOS the app will prompt to set it as default browser on launch which you would need to allow.
On Windows and Linux, just set Browsers as default browser through common system settings.

# How to Use

Expand Down
24 changes: 24 additions & 0 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,30 @@
`;
let alternativeInstructionsElement = convertStringToHTML(alternativeHtmlString);
containerElement.appendChild(alternativeInstructionsElement);
} else if (supportedDownload.platform === "linux") {
let alternativeHtmlString =
`
<div>
<div>If you use a debian-based distribution you can install via deb package:</div>
<a class="hero-download-btn" download target="_blank" rel="noopener"
href="https://github.com/Browsers-software/browsers/releases/latest/download/browsers_amd64.deb">
<i class="fa-brands fa-linux"></i>
.DEB (64-bit)
</a>
<a class="hero-download-btn" download target="_blank" rel="noopener"
href="https://github.com/Browsers-software/browsers/releases/latest/download/browsers_arm64.deb">
<i class="fa-brands fa-linux"></i>
.DEB (64-bit ARM)
</a>
<a class="hero-download-btn" download target="_blank" rel="noopener"
href="https://github.com/Browsers-software/browsers/releases/latest/download/browsers_armhf.deb">
<i class="fa-brands fa-linux"></i>
.DEB (32-bit ARM)
</a>
</div>
`;
let alternativeInstructionsElement = convertStringToHTML(alternativeHtmlString);
containerElement.appendChild(alternativeInstructionsElement);
}
return containerElement
} else {
Expand Down

0 comments on commit fbc9962

Please sign in to comment.