Skip to content

Commit bf34dca

Browse files
committed
AG-29373 Add support for multi-root workspaces
Squashed commit of the following: commit c6bf2dd Author: scripthunter7 <d.tota@adguard.com> Date: Thu Sep 25 19:17:33 2025 +0200 replace commands with direct code actions to avoid conflicts commit 01844f7 Merge: 911229b 258e64f Author: scripthunter7 <d.tota@adguard.com> Date: Thu Sep 25 18:13:49 2025 +0200 Merge branch 'master' into fix/AG-29373 commit 911229b Author: scripthunter7 <d.tota@adguard.com> Date: Fri Aug 15 17:44:26 2025 +0200 move some logic to functions commit 3832667 Author: scripthunter7 <d.tota@adguard.com> Date: Fri Aug 15 17:40:28 2025 +0200 add try catch commit 8b476e8 Author: scripthunter7 <d.tota@adguard.com> Date: Fri Aug 15 17:35:58 2025 +0200 add uri utils commit b24d824 Author: scripthunter7 <d.tota@adguard.com> Date: Fri Aug 15 17:23:55 2025 +0200 move status bar priority to a const and add jsdoc commit 946b82e Author: scripthunter7 <d.tota@adguard.com> Date: Fri Aug 15 17:12:53 2025 +0200 improve description commit 2f19a67 Author: scripthunter7 <d.tota@adguard.com> Date: Fri Aug 15 17:11:16 2025 +0200 fix formatting commit d423936 Author: Slava Leleka <v.leleka@adguard.com> Date: Fri Aug 15 12:15:24 2025 +0300 Applied suggestion commit 4fcc991 Author: scripthunter7 <d.tota@adguard.com> Date: Thu Aug 14 20:03:19 2025 +0200 improve folder tracking, fix quick fix commands temporarily commit 7257665 Author: scripthunter7 <d.tota@adguard.com> Date: Thu Aug 14 17:43:46 2025 +0200 change to readonly set commit b14192b Author: scripthunter7 <d.tota@adguard.com> Date: Thu Aug 14 17:40:46 2025 +0200 move to consts commit d8c9999 Author: scripthunter7 <d.tota@adguard.com> Date: Thu Aug 14 17:08:10 2025 +0200 add support for multi-root workspaces
1 parent 258e64f commit bf34dca

File tree

20 files changed

+883
-399
lines changed

20 files changed

+883
-399
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic
77
[Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
88
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
99

10+
## Unreleased
11+
12+
### Added
13+
14+
- Support for multi-root workspaces [#112].
15+
16+
[#112]: https://github.com/AdguardTeam/VscodeAdblockSyntax/issues/112
17+
1018
## 1.1.17 - 2024-05-05
1119

1220
### Added

client/package.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
{
2-
"name": "aglint-client",
3-
"version": "1.0.0",
4-
"license": "MIT",
5-
"author": "AdGuard Software Ltd.",
6-
"description": "Integrates AGLint into VSCode",
7-
"private": true,
8-
"dependencies": {
9-
"vscode-languageclient": "^8.0.2"
10-
},
11-
"devDependencies": {
12-
"@types/vscode": "^1.74.0"
13-
}
14-
}
1+
{
2+
"name": "aglint-client",
3+
"version": "1.0.0",
4+
"license": "MIT",
5+
"author": "AdGuard Software Ltd.",
6+
"description": "Integrates AGLint into VSCode",
7+
"private": true,
8+
"dependencies": {
9+
"valibot": "^1.1.0",
10+
"vscode-languageclient": "^8.0.2"
11+
},
12+
"devDependencies": {
13+
"@types/vscode": "^1.74.0"
14+
}
15+
}

0 commit comments

Comments
 (0)