Skip to content

Commit

Permalink
VS Code extension update
Browse files Browse the repository at this point in the history
  • Loading branch information
0xMartin committed Aug 9, 2024
1 parent 1c42072 commit 56b5e26
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vscode-extension/natt-configuration-editor/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vscode-extension/natt-configuration-editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"publisher": "0xM4R71N",
"repository": "https://github.com/0xMartin/NetworkAppTestingTool",
"description": "Test scenario configuration editor for black box network application testing tool.",
"version": "1.1.0",
"version": "1.1.1",
"engines": {
"vscode": "^1.91.1"
},
Expand Down Expand Up @@ -86,7 +86,7 @@
"properties": {
"yourExtension.nattJarUrl": {
"type": "string",
"default": "https://github.com/0xMartin/NetworkAppTestingTool/releases/download/1.5.0/NATT.jar",
"default": "https://github.com/0xMartin/NetworkAppTestingTool/releases/download/1.5.1/NATT.jar",
"description": "URL for the NATT JAR file"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function activate(context: vscode.ExtensionContext) {

// Define the URL and destination path for the JAR file
const config = vscode.workspace.getConfiguration('natt-configuration-editor');
const jarUrl = config.get<string>('nattJarUrl', 'https://github.com/0xMartin/NetworkAppTestingTool/releases/download/1.5.0/NATT.jar');
const jarUrl = config.get<string>('nattJarUrl', 'https://github.com/0xMartin/NetworkAppTestingTool/releases/download/1.5.1/NATT.jar');
const destJarPath = path.join(projectPath, 'NATT.jar');

// Function to download the file
Expand Down

0 comments on commit 56b5e26

Please sign in to comment.