Update bundled Google Fonts (Material Symbols + Roboto v50) - #5762
Merged
Conversation
Re-fetch all bundled Google Fonts to pick up latest Material Symbols icons (e.g. database_upload, cloud_alert, desktop_cloud). - Material Symbols Outlined/Rounded/Sharp grew ~23% with new icons - Roboto upgraded from v30 to v50 (variable font), reducing font files from 49 to 16 - Fix fetch_google_fonts.py to handle duplicate font URLs (Google now serves the same Roboto variable font file across multiple weights) - Remove stale version-pinned URL fallback replacements (v140, v30) Closes zauberzeug#5743 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Collaborator
Author
|
I like this for the Lighthouse improvement as well: variable fonts are the future! |
falkoschindler
self-requested a review
February 11, 2026 13:54
falkoschindler
enabled auto-merge
February 11, 2026 15:07
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.
Motivation
Users report that newer Material Symbols icons like
database_upload,cloud_alert, anddesktop_cloudrender incorrectly as two separate icons instead of one. This is because the bundled Material Symbols fonts were last updated in January 2024 and are missing icons added since then.See discussion: #5743
An audit script confirmed the update is purely additive -- 519 new codepoints added, 0 removed across all font variants. Full audit results posted here: #5743 (reply in thread)
Implementation
fetch_google_fonts.pyto download latest fonts from Google Fontsfetch_google_fonts.pyto handle duplicate font URLs: Google now serves Roboto v50 as a variable font where the same file is shared across multiple weights, which caused the script to crash on duplicate filenamesv140,v30) that were dead code after the download loopFont changes:
Progress