Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Setting to Dump Output Queue When Connecting #71

Merged
merged 5 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
Security -- in case of vulnerabilities.
-->

## [1.1.0]

### Added

esarver marked this conversation as resolved.
Show resolved Hide resolved
- Added `tsp.dumpQueueOnConnect` setting to dump the instrument output queue before
clearing it so it can be printed when opening the terminal
- Added progress indication to connection notification

## [1.0.0]

### Added
Expand Down Expand Up @@ -234,7 +242,8 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
- Feature to retrieve TSP-Link network details

<!-- Version Comparison Links -->
[Unreleased]: https://github.com/tektronix/tsp-toolkit/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/tektronix/tsp-toolkit/compare/v1.1.0...HEAD
[1.1.0]: https://github.com/tektronix/tsp-toolkit/releases/tag/v1.1.0
[1.0.0]: https://github.com/tektronix/tsp-toolkit/releases/tag/v1.0.0
[0.18.2]: https://github.com/tektronix/tsp-toolkit/releases/tag/v0.18.2
[0.18.1]: https://github.com/tektronix/tsp-toolkit/releases/tag/v0.18.1
Expand Down
134 changes: 67 additions & 67 deletions package-lock.json

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

20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publisher": "Tektronix",
"displayName": "Keithley TSP Toolkit",
"description": "VSCode extension for Keithley Instruments' Test Script Processor",
"version": "1.0.0",
"version": "1.1.0",
"icon": "./resources/TSP_Toolkit_128x128.png",
"galleryBanner": {
"color": "#EEEEEE",
Expand Down Expand Up @@ -248,17 +248,17 @@
],
"configuration": {
"type": "object",
"title": "TSP Configuration",
"title": "TSP Toolkit",
"properties": {
"tsp.errorLimit": {
"type": "number",
"default": 3,
"description": "Maximum number of consecutive errors to print in the terminal"
},
"tsp.savedInstruments": {
"type": "array",
"default": [],
"description": "A list of saved instrument serial numbers"
},
"tsp.dumpQueueOnConnect": {
"type": "boolean",
"default": false,
"description": "If `true`, collect the contents of the instrument output queue and print it to the terminal when connecting."
}
}
},
Expand Down Expand Up @@ -489,9 +489,9 @@
"xml-js": "1.6.11"
},
"optionalDependencies": {
"@tektronix/kic-cli-linux-x64": "0.18.4",
"@tektronix/kic-cli-win32-x64": "0.18.4",
"@tektronix/kic-cli-darwin-arm64": "0.18.4"
"@tektronix/kic-cli-linux-x64": "0.19.0-0",
"@tektronix/kic-cli-win32-x64": "0.19.0-0",
"@tektronix/kic-cli-darwin-arm64": "0.19.0-0"
},
"extensionDependencies": [
"sumneko.lua"
Expand Down
Loading
Loading