UI polish, Android relaunch crash fix, and parallel investment scanning - #949
Merged
Conversation
… parallel investment scan - Android: adaptive launcher icon (mipmap + monochrome foreground, Angor green background) - UI: infinite-rotation Spin class for syncing icons in FundersView and ProjectCard - UI: hide MyProjects sidebar entirely on mobile instead of stripping chrome - fix: detach cached section views on Android activity relaunch to avoid 'already has a visual parent' crash - fix: force one theme-variant flip at startup so icons are not baked black in dark mode - perf: parallelize spent-fund checks and tx hex/info fetches in ProjectInvestmentsService; run scan and project fetch concurrently in ProjectStatistics
dangershony
reviewed
Jul 24, 2026
| // Collect all stage work items first so the spent-fund checks (each an | ||
| // indexer round-trip) can run in parallel instead of O(funders × stages) | ||
| // sequential awaits — this dominated the "Syncing funding data…" time. | ||
| var workItems = new List<(QueryTransactionOutput qouts, Transaction trx, int stageIndex, |
Member
There was a problem hiding this comment.
this code we need to check carefully that it didnt break anything
Member
There was a problem hiding this comment.
Split this change out to #951 per the concern about unbounded parallelism at scale (hundreds of investors x stages). PR #949 now reverts ProjectInvestmentsService.cs to main; #951 re-applies the parallelization with a SemaphoreSlim bound (12 concurrent indexer requests) and a unit test asserting the max in-flight cap.
…ounded concurrency for projects with hundreds of investors)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Android
UI
i|Icon.Spinstyle (infinite 360° rotation) applied to the syncing arrows-rotate icons in FundersView and ProjectCardSDK perf — faster "Syncing funding data…"
ProjectInvestmentsService: parallelize spent-fund checks (Task.WhenAll instead of O(funders × stages) sequential awaits) and fetch tx hex + info concurrentlyProjectStatistics: run investment scan and project fetch concurrentlyTesting
dotnet build src/design/App.Desktop— clean