Skip to content

Commit

Permalink
Merge pull request #235 from specklesystems/dev
Browse files Browse the repository at this point in the history
Update release/3.0.0 with changes from dev.
  • Loading branch information
AlanRynne authored Sep 11, 2024
2 parents c42ad3f + 75ebf8f commit d358a75
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 1 addition & 5 deletions DUI3/Speckle.Connectors.DUI/Bridge/BrowserBridge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,7 @@ public void AssociateWithBinding(IBinding binding)
// This conveniently executes the code outside the UI thread and does not block during long operations (such as sending).
_actionBlock = new ActionBlock<RunMethodArgs>(
OnActionBlock,
new ExecutionDataflowBlockOptions
{
MaxDegreeOfParallelism = 1000,
CancellationToken = new CancellationTokenSource(TimeSpan.FromHours(3)).Token // Not sure we need such a long time. //TODO: This token source is not disposed....
}
new ExecutionDataflowBlockOptions { MaxDegreeOfParallelism = 1000 }
);

_logger.LogInformation("Bridge bound to front end name {FrontEndName}", binding.Name);
Expand Down
4 changes: 4 additions & 0 deletions DUI3/Speckle.Connectors.DUI/Models/Card/ReceiverModelCard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ public class ReceiverModelCard : ModelCard
public string? ProjectName { get; set; }
public string? ModelName { get; set; }
public string? SelectedVersionId { get; set; }
public string? SelectedVersionSourceApp { get; set; }
public string? SelectedVersionUserId { get; set; }
public string? LatestVersionId { get; set; }
public string? LatestVersionSourceApp { get; set; }
public string? LatestVersionUserId { get; set; }
public bool HasDismissedUpdateWarning { get; set; }
public List<string>? BakedObjectIds { get; set; }

Expand Down

0 comments on commit d358a75

Please sign in to comment.