Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
07f3fad
Initial create vcshell
Den1552 Sep 23, 2025
145775b
Initial webview for creating cfg
Den1552 Sep 24, 2025
2286fc0
Initial webview
Den1552 Sep 24, 2025
547cfa0
CFG creation logic
Den1552 Sep 24, 2025
5eaa093
vcshell update
Den1552 Nov 17, 2025
15c4c26
Merge branch 'main' into vcshell_implementation
Den1552 Nov 17, 2025
22536e2
Fixed issue where vcshell is not created when the dir does not exist
Den1552 Nov 17, 2025
ec2e717
Adapted new project webview
Den1552 Nov 17, 2025
7c6ab84
Removed ability to create new vcshell
Den1552 Nov 21, 2025
f98f611
Removed ability to create new vcshell 2
Den1552 Nov 21, 2025
4888fa4
Updated new project ui
Den1552 Nov 27, 2025
e5712f7
Adapted vcshell logic
Den1552 Nov 27, 2025
01844fa
Merge branch 'main' into vcshell_implementation
Den1552 Nov 27, 2025
3f68883
Merge branch 'main' into create_new_cfg
Den1552 Nov 27, 2025
0d74c28
Merge create_new_cfg into vcshell_implementation
Den1552 Nov 27, 2025
a13c980
Updated vfg webview with vcdb toggle
Den1552 Dec 1, 2025
b35e494
Comments
Den1552 Dec 2, 2025
9b6241d
Adapting tests 1
Den1552 Dec 2, 2025
86dace9
Adapting tests 2
Den1552 Dec 2, 2025
7e22a92
Adapting tests 3
Den1552 Dec 2, 2025
a7d1594
Adapting tests 4
Den1552 Dec 2, 2025
6bb6310
Adapting tests 5
Den1552 Dec 2, 2025
47b79b8
Adapting tests 6
Den1552 Dec 2, 2025
78f20cc
Adapting tests 7
Den1552 Dec 2, 2025
013eaad
Adapting tests 8
Den1552 Dec 2, 2025
8e0e0b0
Adapting tests 9
Den1552 Dec 2, 2025
345eea6
Adapting tests 10
Den1552 Dec 2, 2025
bd59261
Sonar
Den1552 Dec 11, 2025
7e21996
Added test with positive flags
Den1552 Dec 15, 2025
0afb7b7
Spelling
Den1552 Dec 15, 2025
c5b175a
changed checks
Den1552 Dec 15, 2025
ec7f1a7
changed checks 2
Den1552 Dec 15, 2025
234c13c
Merge branch 'main' into vcshell_implementation
Den1552 Jan 13, 2026
8e91754
Added vcshell test
Den1552 Jan 14, 2026
a4dade9
Changed to workspace settings check
Den1552 Jan 14, 2026
ce00fad
Changed to workspace settings check 2
Den1552 Jan 14, 2026
53f472f
Changed to workspace settings check 3
Den1552 Jan 14, 2026
db28f79
Added ccast config to test
Den1552 Jan 15, 2026
247c049
Closing settings
Den1552 Jan 15, 2026
4d9cd42
Closing settings 2
Den1552 Jan 15, 2026
9ad945c
Adapting env deletion
Den1552 Jan 15, 2026
b668b8e
Deselecting tutorial folder
Den1552 Jan 15, 2026
721b23e
Removed unused code
Den1552 Jan 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
"command": "vectorcastTestExplorer.createNewProject",
"title": "VectorCAST: Create New Project"
},
{
"command": "vectorcastTestExplorer.createNewCFG",
"title": "VectorCAST: Create New CFG"
},
{
"command": "vectorcastTestExplorer.configure",
"category": "VectorCAST Test Explorer",
Expand Down Expand Up @@ -169,6 +173,11 @@
"category": "VectorCAST Test Explorer",
"title": "Create VectorCAST Environment"
},
{
"command": "vectorcastTestExplorer.defaultVCShell",
"category": "VectorCAST Test Explorer",
"title": "Set as default Database"
},
{
"command": "vectorcastTestExplorer.newEnviroInProjectVCAST",
"category": "VectorCAST Test Explorer",
Expand Down Expand Up @@ -381,6 +390,12 @@
"default": "",
"description": "The file path to an existing VectorCAST configuration that should be used when creating new environments. If a value is not specified, the configuration editor will be launched"
},
"vectorcastTestExplorer.databaseLocation": {
"type": "string",
"order": 4,
"default": "",
"description": "The file path to an existing VectorCAST database file that should be used when creating new environments."
},
"vectorcastTestExplorer.showReportOnExecute": {
"type": "boolean",
"order": 5,
Expand Down Expand Up @@ -624,7 +639,11 @@
"file/newFile": [
{
"command": "vectorcastTestExplorer.createNewProject",
"group": "1_createnew"
"group": "VectorCAST: New Ressources"
},
{
"command": "vectorcastTestExplorer.createNewCFG",
"group": "VectorCAST: New Ressources"
}
],
"commandPalette": [
Expand Down Expand Up @@ -719,6 +738,10 @@
"command": "vectorcastTestExplorer.newEnviroVCAST",
"when": "never"
},
{
"command": "vectorcastTestExplorer.defaultVCShell",
"when": "never"
},
{
"command": "vectorcastTestExplorer.newEnviroInProjectVCAST",
"when": "never"
Expand Down Expand Up @@ -870,6 +893,11 @@
"when": "resourceLangId == cpp || resourceLangId == c",
"group": "2_workspace"
},
{
"command": "vectorcastTestExplorer.defaultVCShell",
"when": "vectorcastTestExplorer.configured && resourceExtname==.db",
"group": "2_workspace"
},
{
"command": "vectorcastTestExplorer.newEnviroInProjectVCAST",
"when": "(resourceLangId == cpp || resourceLangId == c) && vectorcastTestExplorer.globalProjectIsOpenedChecker",
Expand Down
Loading
Loading