PWA manifest and icons

This commit is contained in:
Roman Cervantes 2019-05-15 16:01:01 -07:00
parent 1e055fade9
commit 9fa336aae9
10 changed files with 94 additions and 41 deletions

BIN
static/icons/icon-128x128.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

BIN
static/icons/icon-144x144.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

BIN
static/icons/icon-152x152.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

BIN
static/icons/icon-192x192.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
static/icons/icon-384x384.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
static/icons/icon-512x512.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

BIN
static/icons/icon-72x72.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
static/icons/icon-96x96.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -1,19 +1,54 @@
{
"name": "Gamebrary",
"short_name": "Gamebrary",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
"name": "Gamebrary",
"short_name": "Gamebrary",
"theme_color": "#555555",
"background_color": "#333333",
"display": "fullscreen",
"orientation": "portrait",
"description": "Open source tool that helps organize your video game collection.",
"Scope": "/",
"start_url": "/",
"icons": [
{
"src": "images/icons/icon-72x72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "images/icons/icon-96x96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "images/icons/icon-128x128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "images/icons/icon-144x144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "images/icons/icon-152x152.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "images/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "images/icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "images/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"splash_pages": null
}

View file

@ -1,35 +1,53 @@
{
"name": "Gamebrary",
"short_name": "Gamebrary",
"theme_color": "#dd2020",
"background_color": "#a5a2a2",
"theme_color": "#555555",
"background_color": "#333333",
"display": "standalone",
"scope": "/",
"start_url": "/index.html",
"orientation": "portrait",
"Scope": "/",
"start_url": "/",
"icons": [
{
"src": "\/static\/icons\/android-icon-36x36.png",
"sizes": "36x36",
"type": "image\/png",
"density": "0.75"
},
{
"src": "\/static\/icons\/android-icon-48x48.png",
"sizes": "48x48",
"type": "image\/png",
"density": "1.0"
},
{
"src": "\/static\/icons\/android-icon-72x72.png",
"src": "\/static\/icons\/icon-72x72.png",
"sizes": "72x72",
"type": "image\/png",
"density": "1.5"
"type": "image/png"
},
{
"src": "\/static\/icons\/android-icon-96x96.png",
"src": "\/static\/icons\/icon-96x96.png",
"sizes": "96x96",
"type": "image\/png",
"density": "2.0"
"type": "image/png"
},
{
"src": "\/static\/icons\/icon-128x128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "\/static\/icons\/icon-144x144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "\/static\/icons\/icon-152x152.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "\/static\/icons\/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "\/static\/icons\/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "\/static\/icons\/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
],
"splash_pages": null
}