Small fixes

This commit is contained in:
crschnick 2023-09-29 06:35:55 +00:00
parent b72ade3587
commit 8ffd1802a1
3 changed files with 5 additions and 8 deletions

View file

@ -18,7 +18,7 @@ It currently supports:
- Easily connect to and access all kinds of remote connections in one place
- Securely stores all information exclusively on your computer and encrypts all secret information. See the [security page](/SECURITY.md) for more information
- Allows you to create specific login environments on any system to instantly jump into proper environment for every use case of yours
- Allows you to create specific login environments on any system to instantly jump into a properly set up environment for every use case
- Can create desktop shortcuts that automatically open remote connections in your terminal
- Group all your connections into hierarchical categories
@ -31,8 +31,6 @@ It currently supports:
- Utilize your favourite local programs to open and edit remote files
- Dynamically elevate sessions with sudo when required
The feature set is the same for all supported connection types. It also supports browsing the file system on your local machine.
![browser](https://github.com/xpipe-io/xpipe/assets/72509152/5631fe50-58b4-4847-a5f4-ad3898a02a9f)
## Terminal Launcher

View file

@ -176,8 +176,8 @@ public class AppMainWindow {
} else {
stage.setX(310);
stage.setY(178);
stage.setWidth(1300);
stage.setHeight(730);
stage.setWidth(1296);
stage.setHeight(759);
}
}
@ -271,7 +271,7 @@ public class AppMainWindow {
}
if (AppProperties.get().isShowcase() && event.getCode().equals(KeyCode.F12)) {
var image = stage.getScene().getRoot().snapshot(null, null);
var image = stage.getScene().snapshot(null);
var awt = AppImages.toAwtImage(image);
var file = Path.of(System.getProperty("user.home"), "Desktop", "xpipe-screenshot.png");
try {

View file

@ -96,8 +96,7 @@ public class LaunchAction implements ActionProvider {
@Override
public ActionProvider.Action createAction(LaunchableStore store) {
return new Action(
DataStorage.get().getStoreEntryIfPresent(store).orElseThrow());
return new Action(DataStorage.get().getStoreEntryIfPresent(store).orElseThrow());
}
@Override