From 3fd3722287f2f1849b8945b6990741ea5eaebbcb Mon Sep 17 00:00:00 2001 From: crschnick Date: Wed, 28 Jan 2026 12:37:57 +0000 Subject: [PATCH] Fixes --- .../xpipe/app/terminal/KonsoleTerminalType.java | 2 ++ dist/changelog/21.0.md | 16 ++++++++-------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/app/src/main/java/io/xpipe/app/terminal/KonsoleTerminalType.java b/app/src/main/java/io/xpipe/app/terminal/KonsoleTerminalType.java index 62dc9223d..430358254 100644 --- a/app/src/main/java/io/xpipe/app/terminal/KonsoleTerminalType.java +++ b/app/src/main/java/io/xpipe/app/terminal/KonsoleTerminalType.java @@ -39,6 +39,8 @@ public class KonsoleTerminalType implements ExternalTerminalType, ExternalApplic // IntelliJ/XPipe even though we try to detach it. // This is not the case for production where it works as expected var toExecute = CommandBuilder.of() + .add("-p") + .add("tabtitle='" + configuration.single().getTitle() + "'") .addIf(configuration.isPreferTabs(), "--new-tab") .add("-e") .addFile(configuration.single().getScriptFile()); diff --git a/dist/changelog/21.0.md b/dist/changelog/21.0.md index 938e56242..88a0ba424 100644 --- a/dist/changelog/21.0.md +++ b/dist/changelog/21.0.md @@ -12,6 +12,12 @@ Here is a Windows Terminal instance with 4 split tabs that were launched through A docked terminal is embedded into the XPipe window but can also be detached from it. This gives you full flexibility on how to handle terminal windows. If you want to disable the terminal docking, you can do so in the settings menu. +## Proxmox improvements + +- Add full support for Proxmox container networking. They now support services and tunnels in addition to normal VMs +- Add support to open VMs with virt-viewer via SPICE +- The dashboard service now automatically determines whether it actually needs to be tunneled to localhost or not. This improves handling with the HTTPS certificate. Refresh the Proxmox installation entry to apply + ## Scripting rework The scripting system has been completely reworked with the goal of becoming simpler and more powerful at the same time. @@ -27,16 +33,10 @@ The scripting system has been completely reworked with the goal of becoming simp ## Sync improvements - Add option to change the sync frequency for the git sync to once per session or fully manual. This can reduce the amount of pushed commits and gives more control on how and when changes are synced -- The git history will now show the actual names of deleted entries instead of just UUIDs +- The git history will now show the actual names of deleted entries instead of just IDs - Add support to sync to a plain external directory without a git repository - The git sync can now also work on read-only remote permissions as well -## Proxmox improvements - -- Add full support for Proxmox container networking. They now support services and tunnels in addition to normal VMs -- Add support to open VMs with virt-viewer via SPICE -- The dashboard service now automatically determines whether it actually needs to be tunneled to localhost or not. This improves handling with the HTTPS certificate. Refresh the Proxmox installation entry to apply - ## Other - The RAM usage has been improved a lot @@ -62,4 +62,4 @@ The scripting system has been completely reworked with the goal of becoming simp - Fix hibernation behavior setting not applying when locking the system - Fix hetzner cloud integration sometimes not stripping away subnet mask from determined IP address - Fix predefined categories being able to be moved -- +- Fix terminal sessions not applying for Konsole