mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
Update changelog [stage]
This commit is contained in:
parent
2a828721db
commit
09f7ebbf45
4 changed files with 7 additions and 3 deletions
2
FAQ.md
2
FAQ.md
|
@ -42,7 +42,7 @@ and instead delegates this to your existing command-line tools.
|
|||
For this approach to work however, you need to have the required tools installed.
|
||||
|
||||
For example, if you want to connect to a remote system via SSH with X-Pipe,
|
||||
you need to have an `SSH` client installed and added to your PATH.
|
||||
you need to have an `ssh` client installed and added to your PATH.
|
||||
The exact vendor and version of this `ssh` command-line
|
||||
tool doesn't matter as long as the standard options are supported.
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ final class FileContextMenu extends ContextMenu {
|
|||
var clipboard = FileBrowserClipboard.retrieveCopy();
|
||||
if (clipboard != null) {
|
||||
var files = clipboard.getEntries();
|
||||
var target = model.getCurrentDirectory();
|
||||
var target = entry.isDirectory() ? entry : model.getCurrentDirectory();
|
||||
model.dropFilesIntoAsync(target, files, true);
|
||||
}
|
||||
event.consume();
|
||||
|
|
4
dist/changelogs/0.5.40.md
vendored
Normal file
4
dist/changelogs/0.5.40.md
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
## Changes in 0.5.40
|
||||
- Add status bar to file browser that shows selected entries and clipboard
|
||||
- Add native ARM builds for macOS
|
||||
- Improve Kubernetes support and configuration options
|
2
version
2
version
|
@ -1 +1 @@
|
|||
0.5.39
|
||||
0.5.40
|
Loading…
Reference in a new issue