-
Hello, Since vscode "server" is 1.66.2 : Unable to install extension 'github.copilot' as it is not compatible with VS Code '1.66.2'. Do you guys know when a update will be available or a quick fix ? Thanks :) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
We're a little behind on the Code updates but keep an eye on the May milestone! |
Beta Was this translation helpful? Give feedback.
-
If you unpack the latest VSIX files from the VSC marketplace, You can fudge the package manifests into allowing the extension to run on 1.66.2. unzip copilot-original.vsix -d copilot.tmp
cd copilot.tmp
find . -type f -exec sed -i "s|\\^1\\.67\\.0|^1.66.0|g" {} \;
zip -r ../copilot.vsix *
cd ..
rm -rf copilot.tmp Then just install the resulting VSIX and authenticate as normal. |
Beta Was this translation helpful? Give feedback.
If you unpack the latest VSIX files from the VSC marketplace, You can fudge the package manifests into allowing the extension to run on 1.66.2.
On inspection there are three places that the version is specified:
Once in ./extension/dist/extension.js
Once in ./extension/package.json
Once in ./extension.vsixmanifest
Change all those occurances, then repackage it into a zip with the .vsix extension, And it should install and work without any issues.
On linux & the current latest build of copilot targetting 1.67.0, this looks somewhat like:
(untested, for reference only. execute at your own risk)