Small fix [release] [noannounce]

This commit is contained in:
crschnick 2023-05-03 17:05:11 +00:00
parent 09178d171b
commit cd771d4039
2 changed files with 7 additions and 4 deletions

View file

@ -6,16 +6,18 @@ import io.xpipe.app.storage.DataStorage;
import io.xpipe.app.storage.DataStoreEntry;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import lombok.Value;
import lombok.AllArgsConstructor;
import lombok.Getter;
import java.time.Instant;
import java.util.Comparator;
@Value
@AllArgsConstructor
@Getter
public class StoreSection implements StorageFilter.Filterable {
StoreEntryWrapper wrapper;
ObservableList<StoreSection> children;
private final StoreEntryWrapper wrapper;
private final ObservableList<StoreSection> children;
private static final Comparator<StoreSection> COMPARATOR = Comparator.<StoreSection, Instant>comparing(
o -> o.wrapper.getEntry().getState().equals(DataStoreEntry.State.COMPLETE_AND_VALID)

View file

@ -1,4 +1,5 @@
## Changes in 0.5.39
- Add ability to automatically create a root shell environment
- Fix connection list in file browser not updating
- Fix kubernetes validation not working correctly
- Fix docker detection when user was not in docker group