mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 15:10:23 +00:00
[stage]
This commit is contained in:
parent
72785ade3e
commit
cc7cb430a2
4 changed files with 9 additions and 4 deletions
|
@ -11,6 +11,7 @@ import io.xpipe.app.util.Hyperlinks;
|
|||
import io.xpipe.app.util.LicenseProvider;
|
||||
import javafx.beans.property.Property;
|
||||
import javafx.beans.property.SimpleObjectProperty;
|
||||
import javafx.beans.property.SimpleStringProperty;
|
||||
import javafx.beans.value.ObservableValue;
|
||||
import javafx.scene.input.KeyCode;
|
||||
import javafx.scene.input.KeyCodeCombination;
|
||||
|
@ -131,7 +132,7 @@ public class AppLayoutModel {
|
|||
var phShow = now.isAfter(phStart) && now.isBefore(phEnd);
|
||||
if (phShow) {
|
||||
l.add(new Entry(
|
||||
AppI18n.observable("api"),
|
||||
new SimpleStringProperty("Product Hunt"),
|
||||
new LabelGraphic.ImageGraphic("app:producthunt-color.png", 24),
|
||||
null,
|
||||
() -> Hyperlinks.open(Hyperlinks.PRODUCT_HUNT),
|
||||
|
|
6
dist/changelogs/12.0.md
vendored
6
dist/changelogs/12.0.md
vendored
|
@ -7,6 +7,7 @@
|
|||
|
||||
## Changes
|
||||
|
||||
- Add functionality to automatically write file as sudo when permissions are denied
|
||||
- You can now restart any ended terminal session by pressing R in the terminal.
|
||||
- Add support for the windows credential manager as a password manager
|
||||
- Reuse existing shell session when adding new connection and searching for available connections
|
||||
|
@ -16,6 +17,8 @@
|
|||
- Improve connection hub styling
|
||||
- Replace deprecated wmic tool interaction on Windows
|
||||
- Rework Windows OS name detection to fix wmic issues
|
||||
- Add button to login as a different user for RDP tunnel connections
|
||||
- Properly terminate running tunnels when shutting down
|
||||
- Upgrade to GraalVM 22.0.2
|
||||
|
||||
## Fixes
|
||||
|
@ -24,7 +27,8 @@
|
|||
- Fix SSH bridge not launching on Linux with missing sshd
|
||||
- Fix browser transfer progress flickering
|
||||
- Fix VM start/stop actions only being visible when user credentials were supplied
|
||||
- Fix powershell tide not being able to be recognized in certain language modes
|
||||
- Fix tunnels failing to start when the remote login shell was fish
|
||||
- Fix powershell type not being able to be recognized in certain language modes
|
||||
- Fix Cygwin/Msys2/GitForWindows not showing up in connection search sometimes
|
||||
- Fix some startup checks not working
|
||||
- Fix scrollbar not resetting when changing application tabs
|
||||
|
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,6 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
|
2
version
2
version
|
@ -1 +1 @@
|
|||
12.0-1
|
||||
12.0-2
|
||||
|
|
Loading…
Reference in a new issue