2021-12-02 18:09:13 -08:00
|
|
|
import React from 'react';
|
|
|
|
|
2021-12-07 20:25:21 -08:00
|
|
|
import useSWR from 'swr';
|
|
|
|
|
|
|
|
// import { Endpoints } from '@octokit/types';
|
2021-12-02 18:09:13 -08:00
|
|
|
import Layout from '@theme/Layout';
|
|
|
|
|
2021-12-07 20:25:21 -08:00
|
|
|
import { Release } from '../../utils/github';
|
2021-12-22 06:42:57 -08:00
|
|
|
import { fetcher } from '../../utils/swr';
|
2022-03-08 23:10:41 -08:00
|
|
|
import { DownloadCard } from './_components/DownloadCard';
|
2021-12-28 01:46:50 -08:00
|
|
|
import {
|
|
|
|
FirmwareCard,
|
|
|
|
PlaceholderFirmwareCard,
|
|
|
|
} from './_components/FirmwareCard';
|
2022-03-08 23:10:41 -08:00
|
|
|
import { HeaderText } from './_components/HeaderText';
|
2021-12-07 03:47:01 -08:00
|
|
|
|
2021-12-02 18:09:13 -08:00
|
|
|
const Firmware = (): JSX.Element => {
|
2021-12-07 20:25:21 -08:00
|
|
|
const { data, error } = useSWR<Release[]>(
|
2022-10-31 00:45:47 -07:00
|
|
|
'https://api.github.com/repos/meshtastic/firmware/releases',
|
2022-04-01 06:34:49 -07:00
|
|
|
fetcher,
|
2021-12-07 20:25:21 -08:00
|
|
|
);
|
2021-12-07 03:47:01 -08:00
|
|
|
|
2021-12-07 20:25:21 -08:00
|
|
|
const beta = data?.filter((release) => release.prerelease === false);
|
2021-12-07 03:47:01 -08:00
|
|
|
|
2021-12-07 20:25:21 -08:00
|
|
|
const alpha = data?.filter((release) => release.prerelease === true);
|
2021-12-02 18:09:13 -08:00
|
|
|
return (
|
|
|
|
<Layout
|
2022-02-03 10:13:21 -08:00
|
|
|
title="Downloads"
|
|
|
|
description="Downloads for the Meshtastic project"
|
2021-12-02 18:09:13 -08:00
|
|
|
>
|
|
|
|
<main className="margin-vert--xl">
|
|
|
|
<div className="container">
|
2022-03-08 23:10:41 -08:00
|
|
|
<HeaderText type="h1" text="Downloads" />
|
2022-02-03 10:13:21 -08:00
|
|
|
</div>
|
|
|
|
<div className="container">
|
2022-02-03 10:31:46 -08:00
|
|
|
<HeaderText
|
|
|
|
type="h2"
|
|
|
|
text="Install Meshtastic"
|
2022-02-03 15:24:25 -08:00
|
|
|
link="install-meshtastic"
|
|
|
|
/>
|
|
|
|
<DownloadCard
|
|
|
|
client="Meshtastic Flasher"
|
|
|
|
buttonText="Download Meshtastic Flasher"
|
|
|
|
url="https://github.com/meshtastic/Meshtastic-gui-installer/releases/latest"
|
|
|
|
notes={[
|
2022-04-01 06:34:49 -07:00
|
|
|
'To download using ',
|
2022-03-08 23:10:41 -08:00
|
|
|
<code>pip</code>,
|
2022-04-01 06:34:49 -07:00
|
|
|
' follow ',
|
2022-10-31 10:27:04 -07:00
|
|
|
<a href="/docs/software/python/meshtastic-flasher#install-using-pip">
|
2022-03-08 23:10:41 -08:00
|
|
|
these instructions
|
|
|
|
</a>,
|
2022-04-01 06:34:49 -07:00
|
|
|
'.',
|
2022-02-03 15:24:25 -08:00
|
|
|
]}
|
2022-02-03 10:31:46 -08:00
|
|
|
/>
|
2022-02-03 10:13:21 -08:00
|
|
|
</div>
|
|
|
|
<div className="container">
|
2022-02-03 10:31:46 -08:00
|
|
|
<HeaderText
|
|
|
|
type="h2"
|
|
|
|
text="Mobile Downloads"
|
|
|
|
link="mobile-downloads"
|
|
|
|
/>
|
2022-02-03 15:24:25 -08:00
|
|
|
<ul
|
|
|
|
style={{
|
2022-04-01 06:34:49 -07:00
|
|
|
position: 'relative',
|
|
|
|
display: 'grid',
|
|
|
|
gap: '1.5rem',
|
|
|
|
gridTemplateColumns: 'repeat(auto-fill, minmax(280px, 1fr))',
|
|
|
|
paddingLeft: '0',
|
2022-02-03 15:24:25 -08:00
|
|
|
}}
|
|
|
|
>
|
|
|
|
<DownloadCard
|
|
|
|
client="Android"
|
2022-09-22 18:25:08 -07:00
|
|
|
imgUrl="https://f-droid.org/badge/get-it-on.png"
|
2022-10-31 16:23:55 -07:00
|
|
|
url="https://meshtastic.org/docs/software/android/#f-droid"
|
2022-09-22 18:25:08 -07:00
|
|
|
imgUrl2="https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png"
|
|
|
|
url2="https://play.google.com/store/apps/details?id=com.geeksville.mesh&referrer=utm_source=downloads-page"
|
2022-03-08 23:10:41 -08:00
|
|
|
notes={[
|
2022-04-01 06:34:49 -07:00
|
|
|
'To sideload, ',
|
2022-03-08 23:10:41 -08:00
|
|
|
<a
|
|
|
|
href="https://github.com/meshtastic/Meshtastic-Android/releases/latest"
|
|
|
|
rel="noreferrer"
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
download the latest .apk
|
|
|
|
</a>,
|
2022-04-01 06:34:49 -07:00
|
|
|
' from Github',
|
2022-03-08 23:10:41 -08:00
|
|
|
]}
|
2022-02-03 15:24:25 -08:00
|
|
|
/>
|
|
|
|
<DownloadCard
|
|
|
|
client="iOS"
|
|
|
|
url="https://testflight.apple.com/join/c8nNl8q1"
|
|
|
|
buttonText="Download on TestFlight"
|
|
|
|
notes="Currently only available in TestFlight"
|
|
|
|
/>
|
|
|
|
</ul>
|
2022-02-03 10:13:21 -08:00
|
|
|
</div>
|
|
|
|
<div className="container">
|
2022-02-03 10:31:46 -08:00
|
|
|
<HeaderText
|
|
|
|
type="h2"
|
|
|
|
text="Firmware Downloads"
|
|
|
|
link="firmware-downloads"
|
|
|
|
/>
|
2021-12-02 18:09:13 -08:00
|
|
|
<ul
|
|
|
|
style={{
|
2022-04-01 06:34:49 -07:00
|
|
|
position: 'relative',
|
|
|
|
display: 'grid',
|
|
|
|
gap: '1.5rem',
|
|
|
|
gridTemplateColumns: 'repeat(auto-fill, minmax(280px, 1fr))',
|
|
|
|
paddingLeft: '0',
|
2021-12-02 18:09:13 -08:00
|
|
|
}}
|
|
|
|
>
|
2021-12-28 01:46:50 -08:00
|
|
|
{data && !error ? (
|
|
|
|
<>
|
|
|
|
<FirmwareCard
|
|
|
|
variant="Beta"
|
|
|
|
description="Tested feature set. For those who want stability."
|
|
|
|
release={beta}
|
|
|
|
/>
|
|
|
|
<FirmwareCard
|
|
|
|
variant="Alpha"
|
2021-12-30 13:27:55 -08:00
|
|
|
description="Upcoming changes for testing. For those who want new features."
|
2021-12-28 01:46:50 -08:00
|
|
|
release={alpha}
|
|
|
|
/>
|
|
|
|
<div className="card">
|
|
|
|
<div className="card__header">
|
|
|
|
<h3>Bleeding</h3>
|
|
|
|
</div>
|
|
|
|
<div className="card__body">
|
|
|
|
<p>
|
|
|
|
Latest successful CI build. For those who want to break
|
|
|
|
things.
|
|
|
|
</p>
|
|
|
|
</div>
|
2022-04-01 06:34:49 -07:00
|
|
|
<div className="card__footer" style={{ marginTop: '1rem' }}>
|
2021-12-28 01:46:50 -08:00
|
|
|
<a
|
2022-10-31 00:45:47 -07:00
|
|
|
href="https://nightly.link/meshtastic/firmware/workflows/main/master/built.zip"
|
2021-12-28 01:46:50 -08:00
|
|
|
className="button button--secondary button--block"
|
|
|
|
>
|
|
|
|
Download
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<PlaceholderFirmwareCard />
|
|
|
|
<PlaceholderFirmwareCard />
|
|
|
|
<PlaceholderFirmwareCard />
|
|
|
|
</>
|
|
|
|
)}
|
2021-12-02 18:09:13 -08:00
|
|
|
</ul>
|
2022-04-01 06:34:49 -07:00
|
|
|
Once downloaded, follow the flashing instructions for{' '}
|
2022-03-08 23:10:41 -08:00
|
|
|
<a
|
2022-04-29 14:39:06 -07:00
|
|
|
href="/docs/getting-started/flashing-firmware/flashing-esp32"
|
2022-03-08 23:10:41 -08:00
|
|
|
rel="noreferrer"
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
ESP32 chipsets
|
|
|
|
</a>
|
2022-04-01 06:34:49 -07:00
|
|
|
,{' '}
|
2022-03-08 23:10:41 -08:00
|
|
|
<a
|
2022-04-29 14:39:06 -07:00
|
|
|
href="/docs/getting-started/flashing-firmware/flashing-nrf52"
|
2022-03-08 23:10:41 -08:00
|
|
|
rel="noreferrer"
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
NRF52 chipsets
|
|
|
|
</a>
|
2022-04-01 06:34:49 -07:00
|
|
|
, or the{' '}
|
2022-03-08 23:10:41 -08:00
|
|
|
<a
|
2022-10-31 10:27:04 -07:00
|
|
|
href="/docs/software/python/meshtastic-flasher"
|
2022-03-08 23:10:41 -08:00
|
|
|
rel="noreferrer"
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
GUI instructions for Meshtastic Flasher
|
|
|
|
</a>
|
|
|
|
.
|
2021-12-02 18:09:13 -08:00
|
|
|
</div>
|
2022-02-04 13:44:29 -08:00
|
|
|
<div className="container">
|
2022-03-08 23:10:41 -08:00
|
|
|
<i>
|
|
|
|
Google Play and the Google Play logo are trademarks of Google LLC.
|
|
|
|
</i>
|
2022-02-04 13:44:29 -08:00
|
|
|
</div>
|
2021-12-02 18:09:13 -08:00
|
|
|
</main>
|
|
|
|
</Layout>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Firmware;
|