diff --git a/editors/code/package.json b/editors/code/package.json index 5a3d7d3e..4b52a36d 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -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", diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts index b02a740a..f859497c 100644 --- a/editors/code/src/commands.ts +++ b/editors/code/src/commands.ts @@ -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"]; @@ -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?",