Skip to content

Commit 2e2051a

Browse files
authored
Merge branch 'main' into aeisenberg/fix-log-path
2 parents 4ad3d96 + ec0e74b commit 2e2051a

File tree

21 files changed

+596
-117
lines changed

21 files changed

+596
-117
lines changed

extensions/ql-vscode/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- Sorted result set filenames now include a hash of the result set name instead of the full name. [#2955](https://github.com/github/vscode-codeql/pull/2955)
66
- The "Install Pack Dependencies" will now only list CodeQL packs located in the workspace. [#2960](https://github.com/github/vscode-codeql/pull/2960)
77
- Fix a bug where the "View Query Log" action for a query history item was not working. [#2984](https://github.com/github/vscode-codeql/pull/2984)
8+
- Add a command to sort items in the databases view by language. [#2993](https://github.com/github/vscode-codeql/pull/2993)
89

910
## 1.9.2 - 12 October 2023
1011

extensions/ql-vscode/package-lock.json

Lines changed: 96 additions & 74 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extensions/ql-vscode/package.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,6 +772,10 @@
772772
"command": "codeQLDatabases.sortByName",
773773
"title": "Sort by Name"
774774
},
775+
{
776+
"command": "codeQLDatabases.sortByLanguage",
777+
"title": "Sort by Language"
778+
},
775779
{
776780
"command": "codeQLDatabases.sortByDateAdded",
777781
"title": "Sort by Date Added"
@@ -998,10 +1002,15 @@
9981002
"group": "1_databases@0"
9991003
},
10001004
{
1001-
"command": "codeQLDatabases.sortByDateAdded",
1005+
"command": "codeQLDatabases.sortByLanguage",
10021006
"when": "view == codeQLDatabases",
10031007
"group": "1_databases@1"
10041008
},
1009+
{
1010+
"command": "codeQLDatabases.sortByDateAdded",
1011+
"when": "view == codeQLDatabases",
1012+
"group": "1_databases@2"
1013+
},
10051014
{
10061015
"command": "codeQLQueries.createQuery",
10071016
"when": "view == codeQLQueries",
@@ -1499,6 +1508,10 @@
14991508
"command": "codeQLDatabases.sortByName",
15001509
"when": "false"
15011510
},
1511+
{
1512+
"command": "codeQLDatabases.sortByLanguage",
1513+
"when": "false"
1514+
},
15021515
{
15031516
"command": "codeQLDatabases.sortByDateAdded",
15041517
"when": "false"

0 commit comments

Comments
 (0)