diff --git a/package.json b/package.json index bfe53ea6..94bcccd0 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 a77599d7..9eb29f6e 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 72f1da18..d999721b 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 21bdc9ef..32744826 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 5cc76852..bf053fc8 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 {