Skip to content

Commit 56b5e26

Browse files
committed
VS Code extension update
1 parent 1c42072 commit 56b5e26

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

vscode-extension/natt-configuration-editor/out/extension.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vscode-extension/natt-configuration-editor/package-lock.json

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

vscode-extension/natt-configuration-editor/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"publisher": "0xM4R71N",
66
"repository": "https://github.com/0xMartin/NetworkAppTestingTool",
77
"description": "Test scenario configuration editor for black box network application testing tool.",
8-
"version": "1.1.0",
8+
"version": "1.1.1",
99
"engines": {
1010
"vscode": "^1.91.1"
1111
},
@@ -86,7 +86,7 @@
8686
"properties": {
8787
"yourExtension.nattJarUrl": {
8888
"type": "string",
89-
"default": "https://github.com/0xMartin/NetworkAppTestingTool/releases/download/1.5.0/NATT.jar",
89+
"default": "https://github.com/0xMartin/NetworkAppTestingTool/releases/download/1.5.1/NATT.jar",
9090
"description": "URL for the NATT JAR file"
9191
}
9292
}

vscode-extension/natt-configuration-editor/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export function activate(context: vscode.ExtensionContext) {
5959

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

6565
// Function to download the file

0 commit comments

Comments
 (0)