Skip to content

Commit

Permalink
Removing Beta label
Browse files Browse the repository at this point in the history
Updating Known issues
Correctimg spelling for connection text
  • Loading branch information
jharajeev55 committed Oct 23, 2024
1 parent 7c273b0 commit 6ed450b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 36 deletions.
39 changes: 5 additions & 34 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,51 +133,20 @@ The extension is currently only available in English.

## Known Issues

As a beta product, we expect there to be some issues with this software and some features
may not be completed. Below is a list of known issues. If you come across new issues,
Below is a list of known issues. If you come across new issues,
please let us know! See the [next section](#questions-issues-feature-requests-and-contributions)
for more information.

- Saved instruments do not persist across VSCode sessions
- Incomplete, incorrect, or missing command-sets, these items may be shown as errors in
the editor, but will run on any instrument on which they exist. These commands may not
be shown in completion suggestions or the completions may be incorrect.
- All instruments
- `acal.*`
- `beeper.*`
- `dataqueue.*`
- `display.*`
- `eventlog.*`
- `file.*`
- `fs.*`
- `lan.*`
- `status.*`
- `tsplink.*`
- `tspnet.*`
- `upgrade.*`
- `userstring.*`
- 2600-series instruments
- `bit.*`
- `errorqueue.*`
- `io.*`
- `serial.*`
- Discovery feature updates the settings.json and discovery pane too frequently. This
causes tooltips to be closed too quickly and can also cause flickering.
- Attempting to connect to an instrument multiple times with the different names, the
second connection will fail, but the name will change.
- Due to limitations in instrument firmware, script names longer than 27 characters will
be truncated to 27 characters. If multiple scripts have names that are the same up to
the 27th character, the second script will overwrite the first.
- If a terminal is closed using the trashcan icon, the instrument connection is not
closed correctly. In order to close the terminal so that the instrument connection
_is_ closed, type `.exit` into the terminal. It will close by itself after it cleans
up the connection.
- The list of instruments that support language features is limited to the following:
- 2450
- 2460
- 2461
- 2470
- 2601B
- 2601B-PULSE
- 2602B
- 2604B
- 2611B
Expand All @@ -186,8 +155,10 @@ for more information.
- 2634B
- 2635B
- 2636B
- 2651A
- 2657A
- DMM7510
- Flashing firmware to the 3706A, 707B, 708B, and 2600-series instruments is not
- Flashing firmware to the 707B and 708B instruments is not
successful. This will NOT render the instrument inoperable, but will not complete
successfully.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tsp-toolkit",
"publisher": "Tektronix",
"displayName": "[Beta] Keithley TSP Toolkit",
"displayName": "Keithley TSP Toolkit",
"description": "VSCode extension for Keithley Instruments' Test Script Processor",
"version": "1.0.0",
"icon": "./resources/TSP_Toolkit_128x128.png",
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ async function pickConnection(connection_info?: string): Promise<void> {
quickPick.placeholder = "Enter instrument IP in <insName>@<IP> format"
if (options.length > 0) {
quickPick.placeholder =
"Select connection from existing list or Enter instrument IP in <insName>@<IP> format"
"Select connection from existing list or enter instrument IP in <insName>@<IP> format"
}

quickPick.onDidChangeValue((value) => {
Expand Down

0 comments on commit 6ed450b

Please sign in to comment.