Skip to content

Commit

Permalink
Version update
Browse files Browse the repository at this point in the history
  • Loading branch information
0xMartin committed Aug 12, 2024
1 parent 3feb6f8 commit c02749a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions natt-vscode-extension/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.2.6",
"version": "1.2.7",
"engines": {
"vscode": "^1.91.1"
},
Expand Down Expand Up @@ -90,7 +90,7 @@
"properties": {
"yourExtension.nattJarUrl": {
"type": "string",
"default": "https://github.com/0xMartin/NetworkAppTestingTool/releases/download/1.6.5/NATT.jar",
"default": "https://github.com/0xMartin/NetworkAppTestingTool/releases/download/1.6.6/NATT.jar",
"description": "URL for the NATT JAR file"
}
}
Expand Down
2 changes: 1 addition & 1 deletion natt-vscode-extension/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,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.6.5/NATT.jar');
const jarUrl = config.get<string>('nattJarUrl', 'https://github.com/0xMartin/NetworkAppTestingTool/releases/download/1.6.6/NATT.jar');
const destJarPath = path.join(projectPath, 'NATT.jar');

// Function to download the file
Expand Down
2 changes: 1 addition & 1 deletion natt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@ task writeVersionProperties {

processResources.dependsOn writeVersionProperties

version = '1.6.5'
version = '1.6.6'
group = 'utb.fai.natt'

0 comments on commit c02749a

Please sign in to comment.