From 0e71c11928efc5e14a5e9353cbfe78a29bbe1520 Mon Sep 17 00:00:00 2001 From: William Vinnicombe Date: Mon, 25 Mar 2024 12:25:41 +0000 Subject: [PATCH] Update to use new github repository --- package.json | 8 ++++---- scripts/pico_project.py | 2 +- src/utils/examplesUtil.mts | 2 +- src/utils/toolchainUtil.mts | 2 +- src/utils/versionBundles.mts | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index bfe53ea..94bcccd 100644 --- a/package.json +++ b/package.json @@ -4,16 +4,16 @@ "description": "The official VS Code extension for Raspberry Pi Pico development. It includeds serveral features to simplify project creation and deployment. (Single folder workspaces only)", "version": "0.12.0", "author": "paulober", - "publisher": "paulober", + "publisher": "raspberry-pi", "icon": "./images/extension-icon.png", "license": "MPL-2.0", - "homepage": "https://github.com/paulober/vscode-raspberry-pi-pico/blob/main/README.md", + "homepage": "https://github.com/raspberrypi/pico-vscode/blob/master/README.md", "bugs": { - "url": "https://github.com/paulober/vscode-raspberry-pi-pico/issues" + "url": "https://github.com/raspberrypi/pico-vscode/issues" }, "repository": { "type": "git", - "url": "https://github.com/paulober/vscode-raspberry-pi-pico" + "url": "https://github.com/raspberrypi/pico-vscode/" }, "engines": { "vscode": "^1.87.0", diff --git a/scripts/pico_project.py b/scripts/pico_project.py index a77599d..9eb29f6 100644 --- a/scripts/pico_project.py +++ b/scripts/pico_project.py @@ -897,7 +897,7 @@ def generateProjectFiles(projectPath, projectName, sdkPath, projects, debugger, "ms-vscode.cpptools", "ms-vscode.cpptools-extension-pack", "ms-vscode.vscode-serial-monitor", - "paulober.raspberry-pi-pico", + "raspberry-pi.raspberry-pi-pico", ] }} ''' diff --git a/src/utils/examplesUtil.mts b/src/utils/examplesUtil.mts index 72f1da1..d999721 100644 --- a/src/utils/examplesUtil.mts +++ b/src/utils/examplesUtil.mts @@ -14,7 +14,7 @@ import { isInternetConnected } from "./downloadHelpers.mjs"; export const CURRENT_DATA_VERSION = "0.10.0"; const EXAMPLES_JSON_URL = - "https://paulober.github.io/vscode-raspberry-pi-pico/" + + "https://raspberrypi.github.io/pico-vscode/" + `${CURRENT_DATA_VERSION}/examples.json`; export interface Example { diff --git a/src/utils/toolchainUtil.mts b/src/utils/toolchainUtil.mts index 21bdc9e..3274482 100644 --- a/src/utils/toolchainUtil.mts +++ b/src/utils/toolchainUtil.mts @@ -8,7 +8,7 @@ import { CURRENT_DATA_VERSION, getDataRoot } from "./examplesUtil.mjs"; import { isInternetConnected } from "./downloadHelpers.mjs"; const iniUrl = - "https://paulober.github.io/vscode-raspberry-pi-pico/" + + "https://raspberrypi.github.io/pico-vscode/" + `${CURRENT_DATA_VERSION}/supportedToolchains.ini`; const supportedDistros = [ "win32_x64", diff --git a/src/utils/versionBundles.mts b/src/utils/versionBundles.mts index 5cc7685..bf053fc 100644 --- a/src/utils/versionBundles.mts +++ b/src/utils/versionBundles.mts @@ -6,7 +6,7 @@ import Logger from "../logger.mjs"; const versionBundlesVersion = "0.10.0"; const versionBundlesUrl = - "https://paulober.github.io/vscode-raspberry-pi-pico/" + + "https://raspberrypi.github.io/pico-vscode/" + `${versionBundlesVersion}/versionBundles.json`; export interface VersionBundle {