fix(branding): decode escaped eta character in app package metadata - #165
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
9 package.json/app.json/tauri.conf.json files had U+0273 (branding eta) written as the literal JSON escape sequence backslash-u-0-2-7-3 instead of the character, from an ensure_ascii JSON serializer. Renders fine inside a JSON string but shows as mojibake anywhere the raw text is displayed (app store listings, OS app titles, notification text). Root package.json already fixed in #164, left untouched. Byte-level replacement only, no reformatting.
acamarata
force-pushed
the
fix/branding-unicode-escape
branch
from
September 1, 2026 00:40
39f7d06 to
5daa68d
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.
Summary
package.jsonwas already fixed in fix: restore the eta character in the workspace description #164 and is untouched here.Test plan
git grepfor the escape sequence returns zero matches in tracked json/mdpython3 -c "import json; json.load(...)"git diff --statshows only the branding lines changed (12 insertions / 12 deletions across 9 files)package.jsonconfirmed untouched