Skip to content

Commit

Permalink
delayed rootEntries query as temporary fix for #39
Browse files Browse the repository at this point in the history
  • Loading branch information
luithefirst committed Sep 8, 2021
1 parent 4e28c2b commit b3d0844
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 5.1.8
- workaround for blocking startup caused by slow network drives (#39)

### 5.1.7
- added animateForwardAndLocation to deprecated animation code (used in Dibit and PRo3D) with corrected final interation. All other deprecated animations do not reach their target.

Expand All @@ -18,7 +21,7 @@
- updated Aardvark.Rendering (breaking changes)

### 5.1.1
- updated packages
- updated packages

### 5.1.0
- updated to FSharp.Data.Adaptive 1.1 and base 5.1 track
4 changes: 2 additions & 2 deletions src/Aardvark.Service/aardfs/FileSystem.fs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ type FileSystem private(rootPath : Option<string>) =
| None ->
None

let rootEntries =
let rootEntries() =
DriveInfo.GetDrives()
|> Array.toList
|> List.choose (fun di ->
Expand Down Expand Up @@ -217,7 +217,7 @@ type FileSystem private(rootPath : Option<string>) =
{
success = true
fullPath = "/"
entries = rootEntries
entries = rootEntries()
}

| _,Some localPath ->
Expand Down

0 comments on commit b3d0844

Please sign in to comment.