From 7a89120a149795d2d0fb6dd9937dcf289dac0fb1 Mon Sep 17 00:00:00 2001 From: Huachao Mao Date: Thu, 1 Dec 2016 11:23:20 +0800 Subject: [PATCH] Bump version to 0.11.0 --- CHANGELOG.md | 6 ++++++ README.md | 8 +++++++- package.json | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5445ad83..3dd4dcff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.11.0 (2016/12/1) +* __Bug Fix__: [Wrap long strings in preview panel](https://github.com/Huachao/vscode-restclient/issues/24) +* __Bug Fix__: [Cancel processing reqeust](https://github.com/Huachao/vscode-restclient/issues/48) +* __Bug Fix__: [Allow refresh from results view](https://github.com/Huachao/vscode-restclient/issues/50) +* __Bug Fix__: [Messy code in the response view when access the unicode website](https://github.com/Huachao/vscode-restclient/issues/51) + ## 0.10.6 (2016/11/28) * __Bug Fix__: Fix regression bug to respect proxy setting diff --git a/README.md b/README.md index ac874abe..005a1066 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ REST Client allows you to send HTTP request and view the response in Visual Studio Code directly. ## Main Features -* Send __HTTP request__ in editor and view response in a separate pane with syntax highlight +* Send/Cancel/Rerun __HTTP request__ in editor and view response in a separate pane with syntax highlight * Send __CURL command__ in editor * Auto save and view/clear request history * Support _MULTIPLE_ requests in the same file @@ -132,6 +132,12 @@ authorization: token xxx < ./demo.xml ``` +### Cancel Request +Once you want to cancel a processing request, use shortcut `Ctrl+Alt+Q`(`Cmd+Alt+Q` for macOS), or press `F1` and then select/type `Rest Client: Cancel Request`. + +### Rerun Last Request +Sometimes you may want to refresh the API response, now you could do it simply using shortcut `Ctrl+Alt+L`(`Cmd+Alt+L` for macOS), or press `F1` and then select/type `Rest Client: Rerun Last Request` to rerun last request. + ## Making CURL Request ![CURL Request](images/curl-request.png) We add the capability to directly run [curl request](https://curl.haxx.se/) in REST Client extension. The issuing request command is the same as raw HTTp one. REST Client will automatically parse the request with specified parser. diff --git a/package.json b/package.json index 2e9e9091..a2e28306 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "rest-client", "displayName": "REST Client", "description": "REST Client for Visual Studio Code", - "version": "0.10.6", + "version": "0.11.0", "publisher": "humao", "author": { "name": "Huachao Mao",