You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version checks are re-enabled whenever the version of vscode changes.
This is because the user would have needed to manually update their
vscode version in order to get this new version. And another failing
version check would mean there is a newer version that needs to be
downloaded.
@@ -1331,7 +1349,10 @@ function assertVSCodeVersionGreaterThan(minVersion: string) {
1331
1349
1332
1350
if(semver.lt(parsedVersion,parsedMinVersion)){
1333
1351
constmessage=`The CodeQL extension requires VS Code version ${minVersion} or later. Current version is ${vscodeVersion}. Please update VS Code to get the latest features of CodeQL.`;
1334
-
voidshowAndLogWarningMessage(message);
1352
+
constresult=awaitshowBinaryChoiceDialog(message,false,'OK','Don\'t show again');
0 commit comments