manifest fixes
@@ -40,7 +40,8 @@ gulp.task('copyFiles', function() {
|
||||
'src/detached-window.js',
|
||||
'src/icon-48.png',
|
||||
'src/icon-128.png',
|
||||
'src/patreon.png'
|
||||
'src/patreon.png',
|
||||
'manifest.json'
|
||||
])
|
||||
.pipe(gulp.dest('app')),
|
||||
|
||||
|
BIN
icons/icon-128x128.png
Executable file
After Width: | Height: | Size: 4.0 KiB |
BIN
icons/icon-144x144.png
Executable file
After Width: | Height: | Size: 4.4 KiB |
BIN
icons/icon-152x152.png
Executable file
After Width: | Height: | Size: 4.7 KiB |
BIN
icons/icon-192x192.png
Executable file
After Width: | Height: | Size: 6.0 KiB |
BIN
icons/icon-384x384.png
Executable file
After Width: | Height: | Size: 14 KiB |
BIN
icons/icon-512x512.png
Executable file
After Width: | Height: | Size: 14 KiB |
BIN
icons/icon-72x72.png
Executable file
After Width: | Height: | Size: 2.1 KiB |
BIN
icons/icon-96x96.png
Executable file
After Width: | Height: | Size: 2.8 KiB |
52
manifest.json
Executable file
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"name": "Web Maker",
|
||||
"short_name": "web maker",
|
||||
"theme_color": "#ff6200",
|
||||
"background_color": "#b3b5b6",
|
||||
"display": "standalone",
|
||||
"Scope": "/",
|
||||
"start_url": "/",
|
||||
"icons": [
|
||||
{
|
||||
"src": "icons/icon-72x72.png",
|
||||
"sizes": "72x72",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-128x128.png",
|
||||
"sizes": "128x128",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-152x152.png",
|
||||
"sizes": "152x152",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-384x384.png",
|
||||
"sizes": "384x384",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"splash_pages": null
|
||||
}
|
@@ -1,21 +0,0 @@
|
||||
{
|
||||
"name": "webmaker",
|
||||
"short_name": "webmaker",
|
||||
"start_url": "/",
|
||||
"display": "standalone",
|
||||
"orientation": "portrait",
|
||||
"background_color": "#fff",
|
||||
"theme_color": "#673ab8",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/assets/icons/android-chrome-192x192.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
},
|
||||
{
|
||||
"src": "/assets/icons/android-chrome-512x512.png",
|
||||
"type": "image/png",
|
||||
"sizes": "512x512"
|
||||
}
|
||||
]
|
||||
}
|
@@ -4,7 +4,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Web Maker</title>
|
||||
<link rel="icon" href="icon-128.png">
|
||||
<link rel="shortcut icon" href="icon-128.png">
|
||||
<meta name=viewport content="width=device-width, initial-scale=1">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
|