mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-25 00:50:31 +00:00
Small fix [release] [noannounce]
This commit is contained in:
parent
09178d171b
commit
cd771d4039
2 changed files with 7 additions and 4 deletions
|
@ -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)
|
||||
|
|
1
dist/changelogs/0.5.39.md
vendored
1
dist/changelogs/0.5.39.md
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue