From 600d38e8b5064ad5aee2e07887201e1fe9c7b07a Mon Sep 17 00:00:00 2001 From: Natizyskunk Date: Wed, 2 Nov 2022 22:06:10 +0100 Subject: [PATCH] Bumped version to v1.16.1. --- CHANGELOG.md | 3 +++ README.md | 8 +++++++- package-lock.json | 18 +++++++++--------- package.json | 4 ++-- 4 files changed, 21 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afdddbce..0c59330a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.16.1 - 2022-11-02 +* [#251] Add multiple select + Update `Download File` & `Downalod Folder` commands to the remote view + Add `Upload File` & `Upload Folder` commands to the remote view (Pull request [#221](https://github.com/Natizyskunk/vscode-sftp/pull/221) from @NyaPPuu vscode-sftp:add_multiple_select). + ## 1.16.0 - 2022-10-29 * [#242] Add order option and fix typos in docs (Pull request [#157](https://github.com/Natizyskunk/vscode-sftp/pull/157) from @NyaPPuu vscode-sftp:add_order_option). * [#243] Fix refresh when creating/deleting file/folder + Fix 'Reveal in Remote Explorer' and Refresh Button in Remote Explorer. (Pull request [#159](https://github.com/Natizyskunk/vscode-sftp/pull/159) from @NyaPPuu vscode-sftp:fix_refresh). diff --git a/README.md b/README.md index fd48359c..3dcd370a 100644 --- a/README.md +++ b/README.md @@ -102,6 +102,8 @@ You can see the full list of configuration options [here](https://github.com/Nat - [Multiple Hop](#multiple-hop) - [Configuration in User Setting](#configuration-in-user-setting) - [Remote Explorer](#remote-explorer) + - [Multiple Select](#multiple-select) + - [Order](#order) - [Debug](#debug) - [FAQ](#faq) - [Donation](#donation) @@ -270,8 +272,12 @@ Remote Explorer lets you explore files in remote. You can open Remote Explorer b You can only view a files content with Remote Explorer. Run command `SFTP: Edit in Local` to edit it in local. -_Note:_ You need to manually refresh the parent folder after you **delete** a file to make the explorer updated. +### Multiple Select +You are able to select multiple files/folders at once on the remote server to download and upload. You can do it simply by holding down Ctrl or Shift while selecting all desired files, just like on the regular explorer view. +_Note:_ You need to manually refresh the parent folder after you **delete** a file if the explorer isn't correctly updated. + +### Order You can order the remote Explorer by adding the `remoteExplorer.order` parameter inside your `sftp.json` config file. In sftp.json: diff --git a/package-lock.json b/package-lock.json index 0cd4e879..09489467 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sftp", - "version": "1.16.0", + "version": "1.16.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sftp", - "version": "1.16.0", + "version": "1.16.1", "license": "MIT", "dependencies": { "async": "^3.2.4", @@ -27,7 +27,7 @@ "@types/jest": "^23.3.5", "@types/lru-cache": "^4.1.1", "@types/node": "^8.10.51", - "@types/vscode": "1.30", + "@types/vscode": "1.40", "@types/webpack-env": "^1.13.6", "braces": ">=2.3.1", "glob-parent": ">=5.1.2", @@ -1191,9 +1191,9 @@ "dev": true }, "node_modules/@types/vscode": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.30.0.tgz", - "integrity": "sha512-xRas+PW/fM/MoonB+Pawg48bGTjCqJsFUFwZpH/q2oW80AMHGDAUTUqySBnqeQ18e/SNi7NOCf3ZkYOzKm3Pqw==", + "version": "1.40.0", + "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.40.0.tgz", + "integrity": "sha512-5kEIxL3qVRkwhlMerxO7XuMffa+0LBl+iG2TcRa0NsdoeSFLkt/9hJ02jsi/Kvc6y8OVF2N2P2IHP5S4lWf/5w==", "dev": true }, "node_modules/@types/webpack-env": { @@ -6165,9 +6165,9 @@ "dev": true }, "@types/vscode": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.30.0.tgz", - "integrity": "sha512-xRas+PW/fM/MoonB+Pawg48bGTjCqJsFUFwZpH/q2oW80AMHGDAUTUqySBnqeQ18e/SNi7NOCf3ZkYOzKm3Pqw==", + "version": "1.40.0", + "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.40.0.tgz", + "integrity": "sha512-5kEIxL3qVRkwhlMerxO7XuMffa+0LBl+iG2TcRa0NsdoeSFLkt/9hJ02jsi/Kvc6y8OVF2N2P2IHP5S4lWf/5w==", "dev": true }, "@types/webpack-env": { diff --git a/package.json b/package.json index c38ebc9a..77291e21 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "sftp", "displayName": "SFTP", "description": "SFTP/FTP sync", - "version": "1.16.0", + "version": "1.16.1", "publisher": "Natizyskunk", "author": "Natizyskunk (https://github.com/Natizyskunk)", "engines": { @@ -96,7 +96,7 @@ }, { "command": "sftp.upload.file", - "title": "Upload", + "title": "Upload File", "category": "SFTP" }, {