mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
[stage]
This commit is contained in:
parent
44bcdce14a
commit
c554482bb1
2 changed files with 10 additions and 0 deletions
|
@ -92,6 +92,10 @@ public class CommandBuilder {
|
|||
return String.join(" ", list);
|
||||
}
|
||||
|
||||
public CommandControl buildCommand(ShellControl sc) {
|
||||
return sc.command(this);
|
||||
}
|
||||
|
||||
public String buildSimple() {
|
||||
return String.join(" ", elements.stream().map(element -> ((Fixed) element).string).toList());
|
||||
}
|
||||
|
|
6
dist/changelogs/1.5.0.md
vendored
6
dist/changelogs/1.5.0.md
vendored
|
@ -14,6 +14,11 @@ XPipe will call the command, read the password, and supply it from there.
|
|||
|
||||
There's also support to specify an arbitrary command or to dynamically prompt the password on each login.
|
||||
|
||||
### SSH Configs
|
||||
|
||||
In 1.5, you're also now able to automatically import all hosts stored in your ssh config files.
|
||||
It is also then possible to refresh and update these detected connections at any time in case you make external changes to your config files.
|
||||
|
||||
### Fish
|
||||
|
||||
This update brings support for fish as another possible shell type.
|
||||
|
@ -64,6 +69,7 @@ This also comes with full support of the feature set for these environments
|
|||
- Rework os detection logic for passthrough environments like Cygwin and MSYS2
|
||||
- Fix desktop directory not being determined correctly on Windows when it was moved from the default location
|
||||
- Fix various checks in file browser not being applied properly and leading to wrong error messages
|
||||
- Add alternative ways of resolving path in case `realpath` was not available
|
||||
- Rework threading in navigation bar in browser to improve responsiveness
|
||||
- Recheck if prepared update is still the latest one prior to installing it
|
||||
- Properly use shell script file extension for external editor when creating shell environments
|
||||
|
|
Loading…
Reference in a new issue