mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-09-22 00:15:41 +00:00
Merge branch 'desktop-hosts' into 19-release
This commit is contained in:
@@ -293,6 +293,7 @@ public class OptionsBuilder {
|
||||
var prop = new SimpleStringProperty();
|
||||
s.subscribe(prop::set);
|
||||
var comp = new TextFieldComp(prop, false);
|
||||
BindingsHelper.preserve(comp, s);
|
||||
comp.apply(struc -> {
|
||||
struc.get().setEditable(false);
|
||||
struc.get().setOpacity(0.9);
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
package io.xpipe.ext.base.store;
|
||||
|
||||
import io.xpipe.app.ext.DataStore;
|
||||
import io.xpipe.app.ext.HostAddress;
|
||||
import io.xpipe.app.ext.NetworkTunnelStore;
|
||||
import io.xpipe.app.ext.ShellStore;
|
||||
import io.xpipe.ext.base.identity.IdentityValue;
|
||||
|
||||
public interface HostStore extends DataStore, ShellStore, NetworkTunnelStore {
|
||||
|
||||
HostAddress getHostAddress();
|
||||
|
||||
IdentityValue getIdentity();
|
||||
}
|
||||
Generated
+4
@@ -1111,6 +1111,8 @@ vncSystem=VNC target system
|
||||
vncSystemDescription=The actual system to interact with. This is usually the same as the tunnel host
|
||||
vncHost=Target VNC host
|
||||
vncHostDescription=The system on which the VNC server is running on
|
||||
vncDirectHost=Host
|
||||
vncDirectHostDescription=The address of the server on which the VNC server is running on
|
||||
gitVaultTitle=Git vault
|
||||
gitVaultForcePushContent=Do you want to force push to the remote repository? This will completely replace all remote repository contents with your local one, including the history.
|
||||
gitVaultOverwriteLocalContent=Do you want to override your local vault changes? This will apply all remote changes to your local repository.
|
||||
@@ -1647,3 +1649,5 @@ netbirdPublicKey=Public key
|
||||
netbirdPublicKeyDescription=The internal public key of the peer
|
||||
netbirdHostName=Host name
|
||||
netbirdHostNameDescription=The hostname of the peer in the network
|
||||
vncRefSystem=Associated system
|
||||
vncRefSystemDescription=The connection entry to associate this VNC connection with. Leave empty if there is none
|
||||
|
||||
Reference in New Issue
Block a user