Update changelog [stage]

This commit is contained in:
crschnick 2023-05-06 21:31:35 +00:00
parent 2a828721db
commit 09f7ebbf45
4 changed files with 7 additions and 3 deletions

2
FAQ.md
View file

@ -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.

View file

@ -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
View 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

View file

@ -1 +1 @@
0.5.39
0.5.40