Skip to content

Commit

Permalink
Bump version to 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Huachao committed Oct 30, 2017
1 parent 167227a commit be8dda6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.16.0 (2017/10/30)
* __Feature__: [Support goto symbols(request or file level cusom variable) in http file](https://github.com/Huachao/vscode-restclient/issues/126)
* __Improvement__: [Info/Warning notifications blocking all tabs](https://github.com/Huachao/vscode-restclient/issues/99)
* __Improvement__: Adopt multi root workspace API
* __Improvement__: Update README.md to reflect installation and code lens update
* __Bug Fix__: Set the scheme to `https` if host is of port 443

## 0.15.3 (2017/9/26)
* __Bug Fix__: [Info/Warning notifications blocking all tabs](https://github.com/Huachao/vscode-restclient/issues/119)
* __Bug Fix__: [cURL -d option not working properly with @](https://github.com/Huachao/vscode-restclient/issues/120)
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ REST Client allows you to send HTTP request and view the response in Visual Stud
- Comments (line starts with `#` or `//`) support
- Support `json` and `xml` body indentation, comment shortcut and auto closing brackets
- Code snippets for operations like `GET` and `POST`
- Support navigate to symbol definitions(request and file level custom variable) in open `http` file
- CodeLens support to add an actionable link to send request

## Usage
In editor, type a HTTP request as simple as below:
Expand Down Expand Up @@ -291,6 +293,11 @@ Currently auto completion will be enabled for following seven categories:
6. MIME Types for `Accept` and `Content-Type` headers
7. Authentication scheme for `Basic` and `Digest`

### Navigate to Symbols in Request File
A single `http` file may define lots of requests and file level custom variables, it will be difficult to find the request/variable you want. We leverage from the _Goto Symbol Feature_ of _Visual Studio Code_ to support to navigate(goto) to request/variable with shortcut `Ctrl+Shift+O`(`Cmd+Shift+O` for macOS), or simpy press `F1`, type `@`.
![Goto Symbols](images/navigate.png)


## Environments
Environments give you the ability to customize requests using variables, and you can easily switch environment without changing requests in `http` file. A common usage is having different configurations for different product environments, like devbox, sandbox and production.

Expand Down
Binary file added images/navigate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "rest-client",
"displayName": "REST Client",
"description": "REST Client for Visual Studio Code",
"version": "0.15.3",
"version": "0.16.0",
"publisher": "humao",
"author": {
"name": "Huachao Mao",
Expand Down

0 comments on commit be8dda6

Please sign in to comment.