Overwatch-Script-To-Workshop icon indicating copy to clipboard operation
Overwatch-Script-To-Workshop copied to clipboard

VSCodium Support [Meta Feature Request]

Open badcodecat opened this issue 6 months ago • 3 comments

Due to microsoft's restrictions, extensions from the Microsoft marketplace cannot be used in vscodium. Please consider supporting VSCodium by publishing to open-vsx.org as outlined here https://github.com/VSCodium/vscodium/blob/master/docs/index.md#extensions--marketplace.

Alternatively you could provide vsix files for direct installation, perhaps in the releases.

badcodecat avatar Jun 21 '25 18:06 badcodecat

You can download the vsix via API.

example with powershell:

$extensionId = "Deltin.overwatch-script-to-workshop"
$publisher, $name = $extensionId -split '\.'
$downloadUrl = "https://$publisher.gallery.vsassets.io/_apis/public/gallery/publisher/$publisher/extension/$name/latest/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage"
Invoke-WebRequest -Uri $downloadUrl -OutFile "$name.vsix" -UseBasicParsing

and run with powershell -ExecutionPolicy Bypass -File "Filename.ps1"

solution found on stackoverflow.com

Daivy03 avatar Nov 23 '25 11:11 Daivy03

@ItsDeltin could you close this issue since solution is provided.

Daivy03 avatar Nov 23 '25 11:11 Daivy03

Manual compilation was always an option, but I don't believe it's the solution to this issue.

Should remain open unless it's (not planned/out of scope)

badcodecat avatar Nov 23 '25 15:11 badcodecat