mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-10 15:44:18 -08:00
Merge branch 'master' of https://github.com/mc-hamster/Meshtastic
This commit is contained in:
commit
72e2b91b3b
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
@ -33,4 +33,5 @@ jobs:
|
|||
vercel-args: "--prod"
|
||||
vercel-org-id: ${{ secrets.ORG_ID}}
|
||||
vercel-project-id: ${{ secrets.PROJECT_ID}}
|
||||
scope: ${{ secrets.ORG_ID}}
|
||||
working-directory: website
|
||||
|
|
|
@ -16,6 +16,9 @@ Installation is easily done through the [Python package installer pip](https://p
|
|||
:::note
|
||||
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
|
||||
groupId="operating-system"
|
||||
|
@ -158,3 +161,7 @@ Be aware that the Meshtastic CLI is not able to control the nodes over USB throu
|
|||
:::
|
||||
</TabItem>
|
||||
</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: {
|
||||
apiKey: "01ad7e13d3fe392d2ad26da3c69dbc21",
|
||||
|
|
|
@ -5,6 +5,7 @@ import clsx from 'clsx';
|
|||
import useBaseUrl from '@docusaurus/useBaseUrl';
|
||||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
||||
import Layout from '@theme/Layout';
|
||||
import Head from '@docusaurus/Head';
|
||||
|
||||
import styles from './styles.module.css';
|
||||
|
||||
|
@ -65,10 +66,20 @@ function Home() {
|
|||
const context = useDocusaurusContext();
|
||||
const { siteConfig } = context;
|
||||
return (
|
||||
<Layout
|
||||
title=""
|
||||
description="Description will go into a meta tag in <head />"
|
||||
>
|
||||
<Layout>
|
||||
<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)}>
|
||||
<div className="container">
|
||||
<h1 className="hero__title">
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit d0339f0297c629f1bd6873b4abccfecb98443538
|
||||
Subproject commit b75f60a91abc22367ec017ab0c9eea828784a6ac
|
Loading…
Reference in a new issue