Skip to content

Commit

Permalink
Small fixes [release]
Browse files Browse the repository at this point in the history
  • Loading branch information
crschnick committed Feb 18, 2025
1 parent bb69e47 commit 2508fc9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ private void applyState(WindowState state) {
} else if (!AppProperties.get().isShowcase()) {
if (AppDistributionType.get() == AppDistributionType.WEBTOP) {
stage.setWidth(1000);
stage.setHeight(720);
stage.setHeight(600);
} else {
stage.setWidth(1280);
stage.setHeight(720);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ public static Optional<Rectangle2D> clampWindow(Stage stage) {
return Optional.empty();
}

if (allScreenBounds.getWidth() == 0 || allScreenBounds.getHeight() == 0) {
return Optional.empty();
}

// Alerts do not have a custom x/y set, but we are able to handle that

boolean changed = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public boolean supportsPasswordPassing() {
public void launch(LaunchConfiguration configuration) throws Exception {
var file = writeRdpConfigFile(configuration.getTitle(), configuration.getConfig());
var escapedPw = configuration.getPassword().getSecretValue().replaceAll("'", "\\\\'");
launch(configuration.getTitle(), CommandBuilder.of().addFile(file.toString()).add("/cert-ignore").add("/smart-sizing").add("/p:'" + escapedPw + "'"));
launch(configuration.getTitle(), CommandBuilder.of().addFile(file.toString()).add("/cert-ignore").add("/p:'" + escapedPw + "'"));
}

@Override
Expand Down
8 changes: 4 additions & 4 deletions dist/changelogs/15.1_incremental.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
- Improve webtop handling of terminals, editors, and rdp clients. There is also now more webtop documentation at [https://docs.xpipe.io/guide/webtop](https://docs.xpipe.io/guide/webtop)
- Improve webtop handling of terminals, editors, and rdp clients. This includes many new additions and fixes for preinstalled tools and the desktop environment. There is also now more webtop documentation at [https://docs.xpipe.io/guide/webtop](https://docs.xpipe.io/guide/webtop)
- Fix tailscale port being overwritten by local SSH config files
- Fix tailscale macOS app store version not getting recognized
- Fix gpg signing not working with git vault on Windows when the git bash gpg was used
- Fix file browser list not updating properly when setting login details for a connection
- Fix git sync for data files failing for large files
- Fix agent forwarding being available for git sync SSH identity
- Fix NullPointer when a referenced identity is not found
- Fix agent forwarding being selectable for git sync SSH identity
- Fix NullPointer when a referenced predefined identity is not found
- Fix category arrows being offset on Linux
- Add support to automatically fill passwords in remmina for simple RDP connections (one without custom rdp properties)
- Add support to automatically fill passwords in remmina for tunneled RDP connections
- Add support for xfreerdp on Linux
- Add support for uxterm, the unicode version of xterm
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
15.1-10
15.1

0 comments on commit 2508fc9

Please sign in to comment.