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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ Alternatively, you can build the extension within VS Code via `Terminal > Run Bu
54
54
55
55
Before running any of the launch commands, be sure to have run the `build` command to ensure that the JavaScript is compiled and the resources are copied to the proper location.
56
56
57
-
We recommend that you keep `npm run watch` running in the backgound and you only need to re-run `npm run build` in the following situations:
57
+
We recommend that you keep `npm run watch` running in the background and you only need to re-run `npm run build` in the following situations:
58
58
59
59
1. on first checkout
60
60
2. whenever any of the non-TypeScript resources have changed
@@ -152,7 +152,7 @@ The CLI integration tests require the CodeQL standard libraries in order to run
152
152
153
153
#### Using a mock GitHub API server
154
154
155
-
Multi-Repo Variant Analyses (MRVA) rely on the GitHub API. In order to make development and testing easy, we have functionality that allows us to intercept requests to the GitHub API and provide mock responses.
155
+
Multi-Repo Variant Analyses (MRVA) rely on the GitHub API. In order to make development and testing easy, we have functionality that allows us to intercept requests to the GitHub API and provide mock responses.
Copy file name to clipboardExpand all lines: extensions/ql-vscode/CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
3
3
## [UNRELEASED]
4
4
5
+
- Warn users when their VS Code version is too old to support all features in the vscode-codeql extension. [#1674](https://github.com/github/vscode-codeql/pull/1674)
6
+
5
7
## 1.7.5 - 8 November 2022
6
8
7
9
- Fix a bug where the AST Viewer was not working unless the associated CodeQL library pack is in the workspace. [#1735](https://github.com/github/vscode-codeql/pull/1735)
Copy file name to clipboardExpand all lines: extensions/ql-vscode/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ When the results are ready, they're displayed in the CodeQL Query Results view.
99
99
100
100
If there are any problems running a query, a notification is displayed in the bottom right corner of the application. In addition to the error message, the notification includes details of how to fix the problem.
101
101
102
-
### Keyboad navigation
102
+
### Keyboard navigation
103
103
104
104
If you wish to navigate the query results from your keyboard, you can bind shortcuts to the **CodeQL: Navigate Up/Down/Left/Right in Result Viewer** commands.
`Could not do a version check of vscode because could not parse version number: actual vscode version ${vscodeVersion} or minimum supported vscode version ${minVersion}.`
1388
+
);
1389
+
return;
1390
+
}
1391
+
1392
+
if(semver.lt(parsedVersion,parsedMinVersion)){
1393
+
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.`;
1394
+
constresult=awaitshowBinaryChoiceDialog(message,false,'OK','Don\'t show again');
0 commit comments