tabby-sftp-ui 0.2.4 → 0.2.5
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 +27 -6
- package/dist/index.js +455 -388
- package/dist/index.js.map +1 -1
- package/dist/sftp-manager-tab.component.d.ts +3 -1
- package/dist/sftp-recovery-provider.d.ts +8 -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,11 @@ Then restart Tabby.
|
|
|
126
142
|
|
|
127
143
|
### Changelog
|
|
128
144
|
|
|
145
|
+
- **0.2.5**
|
|
146
|
+
- Fix: SFTP UI tabs are not persisted across Tabby restarts (no more blank tabs when reopening Tabby).
|
|
147
|
+
- Fix: SFTP-UI button is shown only on SSH tabs with an active session (not on local PowerShell/CMD terminals).
|
|
148
|
+
- Fix: Default remote path for the `root` user is `/root` instead of `/home/root`.
|
|
149
|
+
|
|
129
150
|
- **0.2.4**
|
|
130
151
|
- Fix: OS drag-and-drop from Explorer
|
|
131
152
|
- Fix: Multiple files drag-and-drop between panes works again.
|
|
@@ -145,6 +166,6 @@ Then restart Tabby.
|
|
|
145
166
|
- **0.1.0**
|
|
146
167
|
- Initial release.
|
|
147
168
|
|
|
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.
|
|
169
|
+
### Feedback
|
|
150
170
|
|
|
171
|
+
Found a bug or have a feature idea? Open an issue on GitHub or reach out on [Telegram](https://t.me/Gr0w1ngUp).
|