mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
[release]
This commit is contained in:
parent
b132ed9555
commit
aee815cb4b
3 changed files with 24 additions and 5 deletions
|
@ -15,11 +15,11 @@ import java.util.stream.Stream;
|
|||
|
||||
public interface ExternalTerminalType extends PrefsChoiceValue {
|
||||
|
||||
public static final ExternalTerminalType CMD = new SimpleType("cmd", "cmd", "cmd.exe") {
|
||||
public static final ExternalTerminalType CMD = new SimpleType("cmd", "cmd.exe", "cmd.exe") {
|
||||
|
||||
@Override
|
||||
protected String toCommand(String name, String file) {
|
||||
return "cmd.exe /C \"" + file + "\"";
|
||||
return "/C \"" + file + "\"";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -29,11 +29,11 @@ public interface ExternalTerminalType extends PrefsChoiceValue {
|
|||
};
|
||||
|
||||
public static final ExternalTerminalType POWERSHELL =
|
||||
new SimpleType("powershell", "powershell", "PowerShell") {
|
||||
new SimpleType("powershell", "powershell.exe", "PowerShell") {
|
||||
|
||||
@Override
|
||||
protected String toCommand(String name, String file) {
|
||||
return "powershell.exe -ExecutionPolicy Bypass -Command \"" + file + "\"";
|
||||
return "-ExecutionPolicy Bypass -Command \"" + file + "\"";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
19
dist/changelogs/0.5.34.md
vendored
Normal file
19
dist/changelogs/0.5.34.md
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
## Changes in 0.5.34
|
||||
- Fix drag and drop sometimes having the wrong target
|
||||
- Fix PowerShell execution policy errors in some cases
|
||||
- Fix terminal open not working when script file path contains spaces
|
||||
|
||||
## Changes in 0.5.33
|
||||
- Fix backward and forward buttons not working in file browser
|
||||
- Add F5 shortcut to refresh file browser
|
||||
- Add + shortcut to create a file/directory
|
||||
- Add automated VirusTotal analysis to download page
|
||||
|
||||
## Changes in 0.5.32
|
||||
- Add file type icons to file browser
|
||||
- Add shift-select ability to select range of files to file browser
|
||||
- Fix various file browser bugs
|
||||
- Improve memory footprint
|
||||
- Properly update last used time for connections
|
||||
- Show changelog when prompting for an update installation
|
||||
- Improve icon semantics in connection overview
|
2
version
2
version
|
@ -1 +1 @@
|
|||
0.5.33
|
||||
0.5.34
|
Loading…
Reference in a new issue