From 113dcabb086106b2b05ffa2d4bf1f26ee3b04f13 Mon Sep 17 00:00:00 2001 From: crschnick Date: Sat, 11 Nov 2023 16:45:31 +0000 Subject: [PATCH] [stage] --- .../io/xpipe/app/prefs/VaultCategory.java | 3 +- dist/changelogs/1.7.4.md | 37 +++++++++++++++++++ version | 2 +- 3 files changed, 39 insertions(+), 3 deletions(-) create mode 100644 dist/changelogs/1.7.4.md diff --git a/app/src/main/java/io/xpipe/app/prefs/VaultCategory.java b/app/src/main/java/io/xpipe/app/prefs/VaultCategory.java index b127ded61..5d5a948a7 100644 --- a/app/src/main/java/io/xpipe/app/prefs/VaultCategory.java +++ b/app/src/main/java/io/xpipe/app/prefs/VaultCategory.java @@ -9,7 +9,6 @@ import com.dlsc.preferencesfx.model.Group; import com.dlsc.preferencesfx.model.Setting; import io.xpipe.app.comp.base.ButtonComp; import io.xpipe.app.core.AppI18n; -import io.xpipe.app.util.LicenseProvider; import io.xpipe.app.util.LockChangeAlert; import io.xpipe.core.util.XPipeInstallation; import javafx.beans.binding.Bindings; @@ -58,7 +57,7 @@ public class VaultCategory extends AppPrefsCategory { @SneakyThrows public Category create() { - var pro = LicenseProvider.get().getFeature("gitVault").isSupported(); + var pro = true; BooleanField enable = BooleanField.ofBooleanType(prefs.enableGitStorage) .editable(pro) .render(() -> { diff --git a/dist/changelogs/1.7.4.md b/dist/changelogs/1.7.4.md new file mode 100644 index 000000000..16be65cce --- /dev/null +++ b/dist/changelogs/1.7.4.md @@ -0,0 +1,37 @@ +## Changes in 1.7.4 + +### VMware support for desktop hypervisors + +This update introduces an experimental implementation to support VMware virtual machines in VMware Player, Workstation, and Fusion installations. +The support includes actions like listing, starting, stopping, and pausing VMs plus opening a shell session or browser session via SSH. + +Note that the initial connection to a VM, which runs some setup, can take a long time. +It seems like the VMware CLI it is very slow in that regard, maybe I can find some improvements. + +If everything works out well with this, support can be expended to other hypervisors. + +### Git storage for everyone + +Up until now, the git storage functionality has always been available with a professional license. +However, due to the complex nature of git repositories, this feature had some inevitable rough edges +and did not live up to the quality of a professional product. + +As a result, I am moving this feature into the community edition. + +### Other changes + +- The left sidebars in the connection overview and browser can now be persistently resized +- Implement various performance improvements +- When dragging files straight out of the browser, they now can also resolve to text output. + You can therefore now drag files into a terminal to quickly paste their file names for example. +- Rework connection creation to automatically preselect most commonly used type +- Fix browser exit race conditions +- Fix application not starting up when settings file was corrupted +- Fix connection getting stuck when shell did not support stderr. It will now just quit after a few seconds +- Fix application not starting up on Windows systems older than Windows 10 + +## Previous changes in 1.7 + +- [1.7.3](https://github.com/xpipe-io/xpipe/releases/tag/1.7.3) +- [1.7.2](https://github.com/xpipe-io/xpipe/releases/tag/1.7.2) +- [1.7.1](https://github.com/xpipe-io/xpipe/releases/tag/1.7.1) diff --git a/version b/version index bbf649f61..3511591de 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.7.3 \ No newline at end of file +1.7.4 \ No newline at end of file