mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-04-22 15:40:31 -04:00
Small fixes [stage]
This commit is contained in:
@@ -7,6 +7,7 @@ import io.xpipe.app.util.DesktopHelper;
|
||||
import io.xpipe.app.util.ShellTemp;
|
||||
import io.xpipe.app.util.ThreadHelper;
|
||||
|
||||
import io.xpipe.core.process.OsType;
|
||||
import javafx.beans.binding.Bindings;
|
||||
import javafx.beans.property.BooleanProperty;
|
||||
import javafx.beans.property.Property;
|
||||
@@ -105,7 +106,8 @@ public class BrowserTransferModel {
|
||||
return;
|
||||
}
|
||||
|
||||
Path file = TEMP.resolve(name);
|
||||
var fixedFile = entry.getRawFileEntry().getPath().fileSystemCompatible(OsType.getLocal());
|
||||
Path file = TEMP.resolve(fixedFile.getFileName());
|
||||
var item = new Item(model, name, entry, file);
|
||||
items.add(item);
|
||||
});
|
||||
|
||||
@@ -105,6 +105,10 @@ public class PasswordManagerCommand implements PasswordManager {
|
||||
|
||||
@Override
|
||||
public String retrievePassword(String key) {
|
||||
if (script == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
var cmd = ExternalApplicationHelper.replaceVariableArgument(script.getValue(), "KEY", key);
|
||||
return retrieveWithCommand(cmd);
|
||||
}
|
||||
|
||||
5
dist/changelogs/16.2_incremental.md
vendored
5
dist/changelogs/16.2_incremental.md
vendored
@@ -4,10 +4,11 @@ Several docker management platforms like portainer restrict external control of
|
||||
|
||||
## Fixes
|
||||
|
||||
- Fix elevation check for Administrator not working in PowerShell environments
|
||||
- Fix HyperV VMs not having the port field filled out by default
|
||||
- Fix directory rename in file browser not working when pressing enter
|
||||
- Fix launched electron applications (e.g. vscode) not using the wayland platform if possible, resulting in worse performance
|
||||
- Fix elevation check for Administrator not working in PowerShell environments
|
||||
- Fix HyperV VMs not having the port field filled out by default
|
||||
- Fix file download causing issues with unsupported characters from another file system in file name
|
||||
- Fix RDP client files using wrong temp dir
|
||||
- Fix rare StackOverflow when normalizing files
|
||||
- Fix service types not updating in display when changed
|
||||
|
||||
Reference in New Issue
Block a user