From 139e1859ea914944b4b0025845aa8c6fc17dfcb6 Mon Sep 17 00:00:00 2001 From: KrazyKerbalnaut Date: Tue, 9 Nov 2021 19:41:38 -0700 Subject: [PATCH 1/5] Add additional information about setting up python for 'meshtastic CLI' --- website/docs/software/python/installation.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/website/docs/software/python/installation.md b/website/docs/software/python/installation.md index 1ea0d716..603459e1 100644 --- a/website/docs/software/python/installation.md +++ b/website/docs/software/python/installation.md @@ -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. +::: + +:::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. +::: \ No newline at end of file From 97468051229136b88bcd5d6a802bceb9bf8333a1 Mon Sep 17 00:00:00 2001 From: Sacha Weatherstone Date: Fri, 12 Nov 2021 09:27:21 +1100 Subject: [PATCH 2/5] Add link to Vercel --- website/docusaurus.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 66c39399..4f79ef0f 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -119,7 +119,7 @@ const config = { ], }, ], - copyright: `Powered by ▲ Vercel | Meshtastic® trademark is a registered trademark belonging to Geeksville Industries LLC`, + copyright: `Powered by ▲ Vercel | Meshtastic® trademark is a registered trademark belonging to Geeksville Industries LLC`, }, algolia: { apiKey: "01ad7e13d3fe392d2ad26da3c69dbc21", From 35736100f5a075d114d073ab05a164d451fc42d2 Mon Sep 17 00:00:00 2001 From: robbiedv Date: Fri, 12 Nov 2021 15:25:49 -0600 Subject: [PATCH 3/5] Imports Head component, adds meta tags for socail preview cards --- website/src/pages/index.tsx | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/website/src/pages/index.tsx b/website/src/pages/index.tsx index c62dbd27..a9ac69be 100644 --- a/website/src/pages/index.tsx +++ b/website/src/pages/index.tsx @@ -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 ( - + + + + + + + +

From 604b70e38bdc8eed76b6c551251aacc4b3ba6930 Mon Sep 17 00:00:00 2001 From: Sacha Weatherstone Date: Sun, 14 Nov 2021 16:05:52 +1100 Subject: [PATCH 4/5] Update submodules --- website/static/img/meshtastic-design | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/static/img/meshtastic-design b/website/static/img/meshtastic-design index d0339f02..b75f60a9 160000 --- a/website/static/img/meshtastic-design +++ b/website/static/img/meshtastic-design @@ -1 +1 @@ -Subproject commit d0339f0297c629f1bd6873b4abccfecb98443538 +Subproject commit b75f60a91abc22367ec017ab0c9eea828784a6ac From 7828394fe0dee2cc84915b95430da2ff3d6d7f60 Mon Sep 17 00:00:00 2001 From: Sacha Weatherstone Date: Sun, 14 Nov 2021 20:15:46 +1100 Subject: [PATCH 5/5] Attempt CI fix --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51e467ed..5a675795 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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