Small fixes [stage]

This commit is contained in:
crschnick
2025-05-01 06:21:27 +00:00
parent bb1957b865
commit c1ceb2ff31
4 changed files with 11 additions and 4 deletions

View File

@@ -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);
});

View File

@@ -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);
}

View File

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

View File

@@ -1 +1 @@
16.2-2
16.2-3