-
Notifications
You must be signed in to change notification settings - Fork 9.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core(icons): Add PNG check to manifest icon validation (#6024)
- Loading branch information
1 parent
443ff2c
commit 25457c1
Showing
6 changed files
with
275 additions
and
39 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"short_name": "ExApp", | ||
"name": "Example App", | ||
"start_url": "./", | ||
"icons": [ | ||
{ | ||
"src": "/images/chrome-touch-icon-96x96.png", | ||
"sizes": "96x96", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/images/chrome-touch-icon-192x192.ico", | ||
"sizes": "192x192", | ||
"type": "image/x-icon" | ||
}, | ||
{ | ||
"src": "/images/chrome-touch-icon-512x512.jpg", | ||
"sizes": "512x512", | ||
"type": "image/jpg" | ||
}, | ||
{ | ||
"src": "/images/chrome-touch-icon-128x128.png", | ||
"sizes": "64x64 128x128", | ||
"type": "image/png" | ||
} | ||
], | ||
"background_color": "#FAFAFA", | ||
"theme_color": "#123123", | ||
"display": "standalone", | ||
"orientation": "portrait" | ||
} |
Oops, something went wrong.