diff --git a/README.md b/README.md index 16b2fb8f..cc207358 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,10 @@ authorization: token xxx ``` +## 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 making request command is the same as previous one. REST Client will automatically parse the request with specified parser. + ## Request History ![request-history](images/request-history.png) Each time we sent a http request, the request details(method, url, headers and body) would be persisted into file. By using shortcut `Ctrl+Alt+H`, or press `F1` and then select/type `Rest Client: Request History`, you can view the last __50__ request items in the time reversing order, you can select any request you wish to trigger again. After specified request history item is selected, the request details would be displayed in a temp file, you can view the request details or follow previous step to trigger the request again. @@ -78,6 +82,9 @@ Each time we sent a http request, the request details(method, url, headers and b [MIT License](LICENSE) ## Change Log +### 0.4.0 +* Add capability to directly run [curl request](https://curl.haxx.se/) + ### 0.3.1 * Add get and post code snippet diff --git a/images/curl-request.PNG b/images/curl-request.PNG new file mode 100644 index 00000000..c84e6617 Binary files /dev/null and b/images/curl-request.PNG differ diff --git a/package.json b/package.json index c7543be1..eeddac03 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.3.1", + "version": "0.4.0", "publisher": "humao", "author": { "name": "Huachao Mao",