mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-03-05 21:00:08 -08:00
Merge branch 'meshtastic:master' into master
This commit is contained in:
commit
34a91df47a
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
@ -33,4 +33,5 @@ jobs:
|
||||||
vercel-args: "--prod"
|
vercel-args: "--prod"
|
||||||
vercel-org-id: ${{ secrets.ORG_ID}}
|
vercel-org-id: ${{ secrets.ORG_ID}}
|
||||||
vercel-project-id: ${{ secrets.PROJECT_ID}}
|
vercel-project-id: ${{ secrets.PROJECT_ID}}
|
||||||
|
scope: ${{ secrets.ORG_ID}}
|
||||||
working-directory: website
|
working-directory: website
|
||||||
|
|
|
@ -16,6 +16,9 @@ Installation is easily done through the [Python package installer pip](https://p
|
||||||
:::note
|
:::note
|
||||||
You must use pip version 20 or later. To upgrade to the latest pip, do: `pip install --upgrade pip`
|
You must use pip version 20 or later. To upgrade to the latest pip, do: `pip install --upgrade pip`
|
||||||
:::
|
:::
|
||||||
|
:::info
|
||||||
|
Make sure that the `PATH variable` also gets installed by checking the box while installing python. If you don't, python may not be available and you may not be able to call `meshtastic` from your CLI. If you do forget to check that box, you will need to install the path environment variable for python on your operating system.
|
||||||
|
:::
|
||||||
|
|
||||||
<Tabs
|
<Tabs
|
||||||
groupId="operating-system"
|
groupId="operating-system"
|
||||||
|
@ -158,3 +161,7 @@ Be aware that the Meshtastic CLI is not able to control the nodes over USB throu
|
||||||
:::
|
:::
|
||||||
</TabItem>
|
</TabItem>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
||||||
|
:::info
|
||||||
|
You may need to close and re-open the CLI. The path variables may or may not update for the current session when installing.
|
||||||
|
:::
|
|
@ -119,7 +119,7 @@ const config = {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
copyright: `Powered by ▲ Vercel | Meshtastic® trademark is a registered trademark belonging to Geeksville Industries LLC`,
|
copyright: `<a href="https://vercel.com/?utm_source=meshtastic&utm_campaign=oss" style="color: white">Powered by ▲ Vercel</a> | Meshtastic® trademark is a registered trademark belonging to Geeksville Industries LLC`,
|
||||||
},
|
},
|
||||||
algolia: {
|
algolia: {
|
||||||
apiKey: "01ad7e13d3fe392d2ad26da3c69dbc21",
|
apiKey: "01ad7e13d3fe392d2ad26da3c69dbc21",
|
||||||
|
|
|
@ -5,6 +5,7 @@ import clsx from 'clsx';
|
||||||
import useBaseUrl from '@docusaurus/useBaseUrl';
|
import useBaseUrl from '@docusaurus/useBaseUrl';
|
||||||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
||||||
import Layout from '@theme/Layout';
|
import Layout from '@theme/Layout';
|
||||||
|
import Head from '@docusaurus/Head';
|
||||||
|
|
||||||
import styles from './styles.module.css';
|
import styles from './styles.module.css';
|
||||||
|
|
||||||
|
@ -65,10 +66,20 @@ function Home() {
|
||||||
const context = useDocusaurusContext();
|
const context = useDocusaurusContext();
|
||||||
const { siteConfig } = context;
|
const { siteConfig } = context;
|
||||||
return (
|
return (
|
||||||
<Layout
|
<Layout>
|
||||||
title=""
|
<Head>
|
||||||
description="Description will go into a meta tag in <head />"
|
<meta property="og:title" content="Meshtastic" />
|
||||||
>
|
<meta
|
||||||
|
property="og:image"
|
||||||
|
content={useBaseUrl("img/meshtastic-design/web/social-preview-1200x630.png")}
|
||||||
|
/>
|
||||||
|
<meta
|
||||||
|
property="og:description"
|
||||||
|
content="Open Source hiking, pilot, skiing and secure GPS mesh communicator"
|
||||||
|
/>
|
||||||
|
<meta property="og:url" content="https://meshtastic.org/" />
|
||||||
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
|
</Head>
|
||||||
<header className={clsx("hero hero--primary", styles.heroBanner)}>
|
<header className={clsx("hero hero--primary", styles.heroBanner)}>
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<h1 className="hero__title">
|
<h1 className="hero__title">
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit d0339f0297c629f1bd6873b4abccfecb98443538
|
Subproject commit b75f60a91abc22367ec017ab0c9eea828784a6ac
|
Loading…
Reference in a new issue