Skip to content

Commit

Permalink
Update to use new github repository
Browse files Browse the repository at this point in the history
  • Loading branch information
will-v-pi committed Mar 25, 2024
1 parent 51079b5 commit 0e71c11
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion scripts/pico_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
}}
'''
Expand Down
2 changes: 1 addition & 1 deletion src/utils/examplesUtil.mts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/toolchainUtil.mts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/versionBundles.mts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 0e71c11

Please sign in to comment.