Skip to content

Commit

Permalink
change more links to the new repo location https://github.com/vlang/v…
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Jan 8, 2024
1 parent 4356f2f commit e74de24
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions editors/code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
"description": "V language support (syntax highlighting, formatter, language server) for Visual Studio Code.",
"publisher": "VOSCA",
"icon": "icons/icon.png",
"version": "0.0.3",
"version": "0.0.4",
"engines": {
"vscode": "^1.66.0"
},
"homepage": "https://vosca.dev/",
"homepage": "https://github.com/vlang/v-analyzer",
"license": "MIT",
"bugs": {
"url": "https://github.com/v-analyzer/v-analyzer/issues"
"url": "https://github.com/vlang/v-analyzer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/v-analyzer/v-analyzer"
"url": "https://github.com/vlang/v-analyzer"
},
"keywords": [
"V",
Expand Down
4 changes: 2 additions & 2 deletions editors/code/src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export function uploadToPlayground(_: ContextInit): Command {
const form = new FormData();
form.append("code", code);

const response = await axios.post("https://play.vosca.dev/share", form);
const response = await axios.post("https://play.vlang.io/share", form);

const json = await response.data;
const hash = json["hash"];
Expand All @@ -197,7 +197,7 @@ export function uploadToPlayground(_: ContextInit): Command {
return;
}

const url = `https://vosca.dev/p/${hash}`;
const url = `https://play.vlang.io/p/${hash}`;

const open = await vscode.window.showInformationMessage(
"Successfully uploaded to V playground. Open in browser?",
Expand Down

0 comments on commit e74de24

Please sign in to comment.