Skip to content

Commit 5df370a

Browse files
committed
[release]
1 parent b69e48d commit 5df370a

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

app/src/main/java/io/xpipe/app/prefs/AppPrefsStorageHandler.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ public <T> T loadObject(String id, JavaType type, T defaultObject, boolean log)
109109
}
110110

111111
if (tree.isNull()) {
112-
return null;
112+
// TODO: Does that break something? Legacy compatibility-wise?
113+
// return null;
113114
}
114115

115116
if (PrefsChoiceValue.class.isAssignableFrom(type.getRawClass())) {

dist/changelog/19.3_incremental.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- Fix SSH failing with bad configuration error when a connection had custom SSH options configured
2+
- Fix file browser symlinks to directories not being treated as directories in some cases
3+
- Improve yes/no toggle for category configuration to be less confusing in its neutral state
4+
- Add automatic fallback to Remmina RDP integration to use FreeRDP for RemoteApps when FreeRDP is installed as well

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
19.2
1+
19.3

0 commit comments

Comments
 (0)