Reputation: 41468
I'm using Visual Studio Code Insiders builds. I'd like to downgrade it, because the latest one has a major regression.
Unfortunately there are no links to older versions on insiders download page, only the most recent one is available. How to donwload old version of vscode insiders?
The links from relevant github issue no longer work.
Upvotes: 6
Views: 4057
Reputation: 21
You can download any build from the following link!
https://community.chocolatey.org/packages/vscode-insiders/1.71.0.20220831#versionhistory
Upvotes: 2
Reputation: 41468
You can download an appropriate version via direct URL
Downloads: Windows: User System ARM | Mac: Universal 64 bit Arm64 | Linux: deb rpm tarball ARM snap
- right click the appropriate link, and choose "Copy Link Address" from the menustable
at the end with insider
, and append -insider
after the version.For example, universal MacOS package:
// stable
https://update.code.visualstudio.com/1.61.0/darwin-universal/stable
// insiders
https://update.code.visualstudio.com/1.61.0-insider/darwin-universal/insider
Note: not all stable builds have an insiders equivalent, you may need to use 1.x.0
to find the insider build.
Upvotes: 14