Remove the outdated a. logo from desktop loading screens. - #6932
Merged
Conversation
✅ Deploy Preview for anarlog canceled.
|
ComputelessComputer
force-pushed
the
fix/remove-stale-splash-logo
branch
from
August 19, 2026 18:42
e211ae5 to
1c9a9b0
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 9f9f77d. Configure here.
Startup still rendered the old Hyprnote-style mark, so the boot splash and long-load view now show only the themed background.
Startup now uses the Anarlog wordmark a plus underscore from the production icon, and the leftover Hyprnote a. SVGs are gone from the icon sources.
Show a short duration hint beneath the loading mark and cover the copy in the component test.
Keep generic route loading logo-only, show the duration hint only during database startup, and stabilize the splash dismissal assertion.
ComputelessComputer
force-pushed
the
fix/remove-stale-splash-logo
branch
from
August 19, 2026 19:37
5ac1a58 to
5778df7
Compare
- Expose live database startup phases and migration progress through the Tauri database plugin. - Show delayed, phase-specific loading copy without claiming every startup is a migration.
ComputelessComputer
force-pushed
the
fix/remove-stale-splash-logo
branch
from
August 20, 2026 01:12
5778df7 to
be450da
Compare
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.

Startup still rendered the old Hyprnote-style mark, so the boot splash and long-load view now show only the themed background.
Note
Medium Risk
Adds migration progress callbacks and startup-phase state on the critical boot path; mostly additive, but incorrect progress or phase reporting could mislead users during migrations.
Overview
Replaces the old boot-splash and in-app loading Hyprnote-style mark with the current Anarlog logo (shared
AnarlogMark, matching Tauri icon SVGs). Loading surfaces can now show optional detail text—static copy on the HTML boot splash (revealed after a delay) and dynamic copy onBrandLoadingView.Long-running startup is more informative: a new
get_startup_statuscommand exposes phases (preparing_database,migrating_database, legacy import, cloudsync config) plus pending migration counts.LongLoadGatepolls that status and maps it to user-facing messages (e.g. “Migrating your local database (2 of 5)”), without claiming a migration while the DB is only being checked. The migration stack gainsmigrate_with_progress/prepare_schema_with_progressso the plugin runtime can update status as migrations run.Reviewed by Cursor Bugbot for commit be450da. Bugbot is set up for automated code reviews on this repo. Configure here.