Fix Microsoft Store appx validation: add base SmallTile/LargeTile tiles#3849
Open
sejas wants to merge 1 commit into
Open
Fix Microsoft Store appx validation: add base SmallTile/LargeTile tiles#3849sejas wants to merge 1 commit into
sejas wants to merge 1 commit into
Conversation
The appx manifest (electron2appx template) references Assets\SmallTile.png and Assets\LargeTile.png, but assets/appx/ shipped only scale-* variants. With makePri:false there is no resources.pri to resolve a bare logical name to its scaled files, so Microsoft Store package acceptance fails for both x64 and arm64 packages. Add the base PNGs (copies of the scale-100 variants, 71x71 and 310x310 — the canonical Square71x71/Square310x310 sizes), matching how StoreLogo and Square150x150Logo already ship base files. Fixes STU-1837 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Problem
Publishing Studio v1.11.0 to the Microsoft Store fails package acceptance validation for both unsigned packages (x64 + arm64):
Root cause
electron2appxtemplate) hardcodesSquare71x71Logo="Assets\SmallTile.png"andSquare310x310Logo="Assets\LargeTile.png".apps/studio/assets/appx/shipped onlyscale-*variants for those two tiles — no bareSmallTile.png/LargeTile.png.makePri: false(scripts/package-appx.mjs), so there's noresources.prito resolve a bare logical name to its scale-qualified files → Store validation can't find them.Square150x150Logo,Wide310x150Logo,StoreLogo) all ship a base.png.StoreLogoships base andscale-*together and passes — proving base+scale coexistence is safe under the current build.Fix
Add the two missing base PNGs (copies of the
scale-100variants):SmallTile.pngSquare71x71LogoLargeTile.pngSquare310x310Logoscale-100is exactly the canonical base size for each slot. No code or manifest changes.Verification
Assets\SmallTile.png,Assets\LargeTile.png) now have matching files.scripts/package-appx.mjs) — unzip the produced.appx, confirmAssets/SmallTile.png+Assets/LargeTile.pngexist, re-run Microsoft Store package acceptance (x64 + arm64).Fixes STU-1837
🤖 Generated with Claude Code