Add streaming project scan with live UI updates and O(1) plugin matching#20
Merged
Merged
Conversation
Projects now populate the table incrementally during scanning instead of waiting for all projects to finish. Replaced the full-screen scan overlay with a slim progress bar so users can browse results immediately. Performance: PluginIndex provides O(1) dictionary lookups for plugin matching (was O(n×m) linear scans), match results are cached across projects, and DateFormatters are now static singletons. Verbose per-plugin logs gated behind a defaults flag (debugVerboseLogging). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Resolve conflicts: keep both AppUpdateChecker (from dev) and project scanner streaming + PluginIndex (from this branch). Regenerate pbxproj. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
PluginIndex, with cross-project match cachingDateFormatteras static singletons (eliminates ~49K allocations per scan)defaults write com.tomioueda.PluginUpdater debugVerboseLogging -bool YES