Skip to content

Commit 7346e81

Browse files
Add activation dependency checks for Linux and Windows (#205)
1 parent aa978e3 commit 7346e81

File tree

5 files changed

+816
-0
lines changed

5 files changed

+816
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
1818

1919
## [1.4.2]
2020

21+
### Added
22+
- Added activation dependency check for Linux and Windows
2123

2224
## [1.4.1]
2325

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,12 @@
359359
"60 Hz"
360360
],
361361
"description": "The power-line frequency of the outlet your instruments are plugged into."
362+
},
363+
"tsp.ignoreMissingVisa": {
364+
"type": "boolean",
365+
"default": false,
366+
"scope": "application",
367+
"description": "Ignore the VISA installation check notification. VISA is optional and only required for VISA protocol instrument communication."
362368
}
363369
}
364370
},

src/connection.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,7 @@ export class Connection extends vscode.TreeItem implements vscode.Disposable {
638638
const LOGLOC = { file: "instruments.ts", func: "Connection.connect()" }
639639
const orig_status = this.status
640640
this.status = ConnectionStatus.Connected
641+
641642
if (!this._terminal) {
642643
Log.debug("Creating terminal", LOGLOC)
643644
const result = await vscode.window.withProgress(

0 commit comments

Comments
 (0)