fix(eid-wallet): full-bleed app icon + light/dark/tinted iOS variants#1065
fix(eid-wallet): full-bleed app icon + light/dark/tinted iOS variants#1065Bekiboo wants to merge 1 commit into
Conversation
|
Important Review skippedReview was skipped due to path filters ⛔ Files ignored due to path filters (22)
CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Description of change
Fixes the iOS app icon: it's now full-bleed (purple to the edges) so iOS' corner mask no longer leaves a frame around it, and it ships explicit light/dark/tinted variants so iOS 18+ stops auto-darkening it. In dark mode the icon now stays purple with the white logo, as requested by the client.
Issue Number
Close #1063
Type of change
How the change has been tested
tauri ios dev.Change checklist
Design decisions
AppIcon.appiconsetto the single-size 1024 format with threeluminosityappearances (light / dark / tinted) instead of the legacy per-size layout. This is what lets us override iOS 18's auto-dark behaviour.tauri iconalso regenerated Android/desktop icons, but those were reverted: the bug is iOS-specific, and the full-bleed master overflows Android's adaptive-icon safe zone (logo would get clipped). Rolling the new design out to Android/desktop is a separate task.Re-running
tauri iconregenerates the legacy per-size layout and will overwrite these light/dark/tinted variants (same caveat flagged in #976). Re-apply the appearance catalog after any icon regeneration.