Skip to content

Commit

Permalink
prerel
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldoakes committed Sep 6, 2023
1 parent 7ee2780 commit b3ca35d
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## [3.0.0](https://github.com/ply-ct/vscode-ply/tree/3.0.0) (2023-09-05)

- Enhancement: Conditional activation [\#26](https://github.com/ply-ct/vscode-ply/issues/26)
- Enhancement: Custom flow/request editor icons [\#27](https://github.com/ply-ct/vscode-ply/issues/27)
- Enhancement: Embedded Ply Explorer custom view [\#95](https://github.com/ply-ct/vscode-ply/issues/95)
- Enhancement: Test run output visualization [\#128](https://github.com/ply-ct/vscode-ply/issues/128)
- Enhancement: Improved user experience for selecting and entering Values [\#132](https://github.com/ply-ct/vscode-ply/issues/132)


## [2.2.4](https://github.com/ply-ct/vscode-ply/tree/2.2.4) (2023-01-07)

- Bug: Missing templates for flow custom steps [\#155](https://github.com/ply-ct/vscode-ply/issues/155)
Expand Down
4 changes: 3 additions & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Ply Extension Installation

## Install from VS Code marketplace

- Launch VS Code and click the Extensions activity bar icon
- Search for 'Ply'
- Click the Install button

## Install vscode-ply preview release
Find the latest preview release on GitHub:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
"displayName": "Ply",
"description": "Automated Testing for REST and GraphQL APIs",
"icon": "icons/ply.png",
"version": "3.0.0-beta64",
"version": "3.0.0",
"license": "MIT",
"author": {
"name": "Donald Oakes",
"email": "donald.h.oakes@gmail.com"
},
"publisher": "ply-ct",
"private": "true",
"homepage": "https://ply-ct.org/",
"repository": {
"type": "git",
Expand Down
4 changes: 3 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ export async function activate(context: vscode.ExtensionContext) {
}
if (uri.path.endsWith('.ply')) {
// honor preview if possible
vscode.commands.executeCommand('vscode.open', uri, { preview: args[0]?.preview });
vscode.commands.executeCommand('vscode.open', uri.with({ scheme: 'file' }), {
preview: args[0]?.preview
});
} else {
if (uri.fragment) {
// eg: my-requests.ply.yaml#Request1 -- cannot honor preview
Expand Down

0 comments on commit b3ca35d

Please sign in to comment.