Manifest and Favicons (#69)

* Move favicon stuff to static folder. Expand manifest.json. Link it all up in HTML.

* Undo index changes

* Remove unnecessary readme
This commit is contained in:
William O'Beirne 2017-07-22 16:55:59 -04:00 committed by Daniel Ternyak
parent 69851696e9
commit 7d5e590c42
15 changed files with 47 additions and 19 deletions

View File

@ -1,18 +0,0 @@
{
"name": "MyEtherWallet",
"icons": [
{
"src": "images/fav/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "images/fav/android-chrome-384x384.png",
"sizes": "384x384",
"type": "image/png"
}
],
"theme_color": "#163151",
"background_color": "#163151",
"display": "standalone"
}

View File

@ -7,6 +7,16 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="manifest" href="/manifest.json">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/favicon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon/favicon-16x16.png" sizes="16x16">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#0e97c0">
<meta name="msapplication-config" content="/favicon/browserconfig.xml">
<meta name="theme-color" content="#163151">
</head>
<body>

0
common/index.scss Normal file
View File

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

Before

Width:  |  Height:  |  Size: 697 B

After

Width:  |  Height:  |  Size: 697 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

37
static/manifest.json Normal file
View File

@ -0,0 +1,37 @@
{
"name": "MyEtherWallet",
"manifest_version": 1,
"start_url": ".",
"theme_color": "#163151",
"background_color": "#163151",
"display": "standalone",
"description": "MyEtherWallet.com is a free, open-source, client-side interface for generating Ethereum wallets & more",
"default_locale": "en",
"icons": [
{
"src": "favicon/favicon-16.png",
"sizes": "16x16",
"type": "image/png"
},
{
"src": "favicon/favicon-32.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "favicon/mstile-150x150.png",
"sizes": "150x150",
"type": "image/png"
},
{
"src": "favicon/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "favicon/android-chrome-384x384.png",
"sizes": "384x384",
"type": "image/png"
}
]
}

View File

@ -1 +0,0 @@
* static goes here!