tabby-sftp-ui 0.2.5 → 0.2.7
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 +9 -0
- package/dist/index.js +408 -90
- package/dist/index.js.map +1 -1
- package/dist/sftp-manager-tab.component.d.ts +23 -2
- package/dist/sftp.service.d.ts +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -142,6 +142,15 @@ Then restart Tabby.
|
|
|
142
142
|
|
|
143
143
|
### Changelog
|
|
144
144
|
|
|
145
|
+
- **0.2.7**
|
|
146
|
+
- Fix: OS drag-and-drop from Explorer/Finder into the remote pane works reliably on Windows (Electron `webUtils.getPathForFile`, synchronous drop capture).
|
|
147
|
+
- Fix: Drop data is captured before async connection/path checks so `dataTransfer` is not cleared mid-upload.
|
|
148
|
+
|
|
149
|
+
- **0.2.6**
|
|
150
|
+
- Fix: Default remote path now detects Linux and Windows correctly (`/home/user`, `/root`, `/C:/Users/user`, etc.).
|
|
151
|
+
- Fix: Uploads work immediately after opening SFTP-UI (no need to change directories first).
|
|
152
|
+
- Fix: Remote path is resolved via SFTP canonicalize, shell CWD, and validated before upload.
|
|
153
|
+
|
|
145
154
|
- **0.2.5**
|
|
146
155
|
- Fix: SFTP UI tabs are not persisted across Tabby restarts (no more blank tabs when reopening Tabby).
|
|
147
156
|
- Fix: SFTP-UI button is shown only on SSH tabs with an active session (not on local PowerShell/CMD terminals).
|