fix: resolve Linux logo display issues#250
Merged
GCWing merged 1 commit intoGCWing:mainfrom Mar 24, 2026
Merged
Conversation
Three fixes for BitFun logo not displaying correctly on Linux: 1. SplashScreen opacity: increase idle animation from 38% to 85% - Logo was nearly invisible on dark background with only 38% opacity 2. Replace Logo-ICON.png with icon.png for in-app logo - Previous Logo-ICON.png had 46% fully transparent pixels - icon.png has only 2.7% transparent pixels, much more visible 3. Add multi-size icons for Linux desktop integration - Tauri only installed 1024x1024 icon, causing taskbar/dock issues - Added 16x16 through 512x512 icons for proper GNOME/flatpak support - Updated tauri.conf.json deb.files to include all icon sizes - Added post-install script to update icon cache Generated with BitFun Co-Authored-By: BitFun
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
Fix three issues causing BitFun logo to display incorrectly on Linux:
1. SplashScreen logo nearly invisible
src/web-ui/src/app/components/SplashScreen/SplashScreen.scss0.38(38%), making the logo almost invisible on the dark background0.85(85%) for proper visibility2. In-app logo (Logo-ICON.png) too transparent
src/web-ui/public/Logo-ICON.pngicon.pngwhich has only 2.7% transparent pixels3. Linux desktop icon only installed at 1024x1024
icons/hicolor/*/apps/bitfun-desktop.png— 8 icon sizestauri.conf.json— deb.files config to bundle all sizesscripts/post-install-icons.sh— post-install script to update icon cacheTest Environment