tabby-sftp-ui 0.2.4 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -6
- package/dist/index.js +673 -406
- package/dist/index.js.map +1 -1
- package/dist/sftp-manager-tab.component.d.ts +21 -3
- package/dist/sftp-recovery-provider.d.ts +8 -0
- package/dist/sftp.service.d.ts +7 -0
- package/package.json +44 -44
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ If you find this useful, please **star the repo**: [growingupfirst/tabby-sftp-ui
|
|
|
9
9
|
|
|
10
10
|
### Features
|
|
11
11
|
|
|
12
|
-
- **SFTP‑UI button in terminal toolbar** – opens the SFTP manager for the active SSH session.
|
|
12
|
+
- **SFTP‑UI button in terminal toolbar** – opens the SFTP manager for the active SSH session (SSH tabs only; hidden on local terminals).
|
|
13
13
|
- **Two panes** – local filesystem on the left, remote on the right.
|
|
14
14
|
- **Drag & drop**:
|
|
15
15
|
- Between local and remote for uploads/downloads.
|
|
@@ -47,15 +47,31 @@ If you find this useful, please **star the repo**: [growingupfirst/tabby-sftp-ui
|
|
|
47
47
|
|
|
48
48
|
### Install
|
|
49
49
|
|
|
50
|
-
#### From
|
|
50
|
+
#### From npm (recommended)
|
|
51
51
|
|
|
52
|
-
|
|
52
|
+
Install the published package into Tabby’s plugins directory:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
# Windows
|
|
56
|
+
cd "%APPDATA%\tabby\plugins"
|
|
57
|
+
npm install tabby-sftp-ui --legacy-peer-deps
|
|
58
|
+
|
|
59
|
+
# macOS / Linux
|
|
60
|
+
cd ~/.config/tabby/plugins
|
|
61
|
+
npm install tabby-sftp-ui --legacy-peer-deps
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Then **restart Tabby completely** (close all windows and start again).
|
|
65
|
+
|
|
66
|
+
#### From Tabby Plugin Manager
|
|
67
|
+
|
|
68
|
+
If your Tabby build supports the plugin manager:
|
|
53
69
|
|
|
54
70
|
1. Open **Settings → Plugins** in Tabby.
|
|
55
71
|
2. Search for **“tabby-sftp-ui”**.
|
|
56
72
|
3. Click **Install**, then restart Tabby.
|
|
57
73
|
|
|
58
|
-
#### Manual install
|
|
74
|
+
#### Manual install from source
|
|
59
75
|
|
|
60
76
|
1. Clone this repository:
|
|
61
77
|
|
|
@@ -126,6 +142,16 @@ Then restart Tabby.
|
|
|
126
142
|
|
|
127
143
|
### Changelog
|
|
128
144
|
|
|
145
|
+
- **0.2.6**
|
|
146
|
+
- Fix: Default remote path now detects Linux and Windows correctly (`/home/user`, `/root`, `/C:/Users/user`, etc.).
|
|
147
|
+
- Fix: Uploads work immediately after opening SFTP-UI (no need to change directories first).
|
|
148
|
+
- Fix: Remote path is resolved via SFTP canonicalize, shell CWD, and validated before upload.
|
|
149
|
+
|
|
150
|
+
- **0.2.5**
|
|
151
|
+
- Fix: SFTP UI tabs are not persisted across Tabby restarts (no more blank tabs when reopening Tabby).
|
|
152
|
+
- Fix: SFTP-UI button is shown only on SSH tabs with an active session (not on local PowerShell/CMD terminals).
|
|
153
|
+
- Fix: Default remote path for the `root` user is `/root` instead of `/home/root`.
|
|
154
|
+
|
|
129
155
|
- **0.2.4**
|
|
130
156
|
- Fix: OS drag-and-drop from Explorer
|
|
131
157
|
- Fix: Multiple files drag-and-drop between panes works again.
|
|
@@ -145,6 +171,6 @@ Then restart Tabby.
|
|
|
145
171
|
- **0.1.0**
|
|
146
172
|
- Initial release.
|
|
147
173
|
|
|
148
|
-
###
|
|
149
|
-
- When reopening Tabby, the SFTP UI tabs are blank. Please contact me in [Telegram](https://t.me/Gr0w1ngUp) if you know how to fix this.
|
|
174
|
+
### Feedback
|
|
150
175
|
|
|
176
|
+
Found a bug or have a feature idea? Open an issue on GitHub or reach out on [Telegram](https://t.me/Gr0w1ngUp).
|