Skip to content

Commit

Permalink
Update web manifest (#140)
Browse files Browse the repository at this point in the history
* Update web manifest

* add lower res image

* Update manifest.json

* Update manifest.json
  • Loading branch information
K0IN committed Dec 4, 2023
1 parent 1da9ff3 commit ce9c630
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 14 deletions.
Binary file added app/frontend/src/assets/icons/notify_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 72 additions & 14 deletions app/frontend/src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,74 @@
{
"name": "notify_frontend",
"short_name": "notify_frontend",
"start_url": "/",
"display": "standalone",
"orientation": "portrait",
"background_color": "#000",
"theme_color": "#000",
"icons": [
{
"src": "/assets/icons/notify_big.png",
"type": "image/png",
"sizes": "512x512"
}
]
"name": "notify app",
"short_name": "notify",
"start_url": "/",
"display": "standalone",
"orientation": "portrait",
"background_color": "#000",
"theme_color": "#000",
"categories": [
"utilities",
"productivity"
],
"description": "Notify is a simple app that allows you to receive notifications from a webhook.",
"icons": [
{
"src": "/assets/icons/notify_big.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
},
{
"src": "/assets/icons/notify_big.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/assets/icons/notify_small.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "/assets/icons/notify_small.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
}
],
"screenshots": [
{
"src": "/assets/screenshots/mobile-screenshot.png",
"sizes": "1170x2532",
"type": "image/png",
"form_factor": "narrow",
"label": "App screenshot with example notification",
"platform": "ios"
},
{
"src": "/assets/screenshots/mobile-screenshot.png",
"sizes": "1170x2532",
"type": "image/png",
"form_factor": "narrow",
"label": "App screenshot with example notification",
"platform": "android"
},
{
"src": "/assets/icons/desktop-screenshot.png",
"sizes": "2038x1301",
"type": "image/png",
"form_factor": "wide",
"label": "Home screen of Awesome App",
"platform": "windows"
},
{
"src": "/assets/icons/desktop-screenshot.png",
"sizes": "2038x1301",
"type": "image/png",
"form_factor": "wide",
"label": "Home screen of Awesome App",
"platform": "macos"
}
]
}

0 comments on commit ce9c630

Please sign in to comment.