From ef248c36250e581f7f374ccaf6e7dea6d38c0d5e Mon Sep 17 00:00:00 2001 From: Peter Feerick Date: Tue, 21 Oct 2025 04:08:05 +0000 Subject: [PATCH 1/2] chore: switch from GitPod to GitHub CodeSpaces --- .devcontainer/devcontainer.json | 9 ++++++--- .gitpod.yml | 5 ----- README.md | 2 +- 3 files changed, 7 insertions(+), 9 deletions(-) delete mode 100644 .gitpod.yml diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 6712c324c2c..f512dd474a9 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,8 +3,9 @@ { "name": "edgetx-dev", "image": "ghcr.io/edgetx/edgetx-dev:latest", - "runArgs": [ "--ipc=host"], - + "runArgs": [ + "--ipc=host" + ], // Add the IDs of extensions you want installed when the container is created. "customizations": { "vscode": { @@ -12,5 +13,7 @@ "ms-vscode.cpptools" ] } - } + }, + // Post-create command to set up the environment + "postCreateCommand": "git submodule update --init --recursive && mkdir -p build && echo 'EdgeTX development environment ready!" } diff --git a/.gitpod.yml b/.gitpod.yml deleted file mode 100644 index ecb5b54cb9e..00000000000 --- a/.gitpod.yml +++ /dev/null @@ -1,5 +0,0 @@ -image: ghcr.io/edgetx/gitpod-workspace:latest - -tasks: - - name: Prep build folder - init: mkdir build && cd build diff --git a/README.md b/README.md index b25ee91c7ca..6d009dbdd13 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![GitHub all releases](https://img.shields.io/github/downloads/EdgeTX/edgetx/total)](https://github.com/EdgeTX/edgetx/releases) [![GitHub license](https://img.shields.io/github/license/Edgetx/edgetx)](https://github.com/EdgeTX/edgetx/blob/main/LICENSE) [![Commit Tests](https://github.com/EdgeTX/edgetx/actions/workflows/build_fw.yml/badge.svg)](https://github.com/EdgeTX/edgetx/actions/workflows/build_fw.yml) -[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/edgetx/edgetx/tree/main) +[![GitHub CodesSpaces ready-to-code](https://img.shields.io/badge/GitHub%20CodesSpaces-ready--to--code-blue?logo=github)](https://codespaces.new/EdgeTX/edgetx) [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=white)](https://conventionalcommits.org) [![Discord](https://img.shields.io/discord/839849772864503828.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/wF9wUKnZ6H) [![Support us on OpenCollective](https://img.shields.io/opencollective/all/edgetx)](https://opencollective.com/edgetx) From f9cc3e26f00c0c57088149a0030037061278123c Mon Sep 17 00:00:00 2001 From: Peter Feerick Date: Tue, 21 Oct 2025 08:26:57 +0000 Subject: [PATCH 2/2] fix: missing quote --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f512dd474a9..bbb784af45b 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -15,5 +15,5 @@ } }, // Post-create command to set up the environment - "postCreateCommand": "git submodule update --init --recursive && mkdir -p build && echo 'EdgeTX development environment ready!" + "postCreateCommand": "git submodule update --init --recursive && mkdir -p build && echo 'EdgeTX development environment ready!'" }