Skip to content
This repository has been archived by the owner on Sep 29, 2024. It is now read-only.

Commit

Permalink
Adding a manifest & icons
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongustafson committed Oct 15, 2020
1 parent 76a1058 commit 277e52b
Show file tree
Hide file tree
Showing 13 changed files with 54 additions and 0 deletions.
Binary file added public-common/images/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public-common/images/icon-144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public-common/images/icon-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public-common/images/icon-192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public-common/images/icon-256-256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public-common/images/icon-32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public-common/images/icon-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public-common/images/icon-512-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public-common/images/icon-64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public-common/images/icon-72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public-common/images/icon-96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public-common/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<title>Weather</title>
<link type="text/css" rel="stylesheet" href="styles.css">
<link rel="manifest" href="manifest.json">
</head>

<body class="desaturate">
Expand Down
53 changes: 53 additions & 0 deletions public-common/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"name": "Weather",
"display": "standalone",
"theme_color": "#01579b",
"orientation": "any",
"background_color": "#4a4a4a",
"icons": [
{
"src": "images/icon-512.png",
"sizes": "512x512"
},
{
"src": "images/icon-256.png",
"sizes": "256x256"
},
{
"src": "images/icon-192.png",
"sizes": "192x192"
},
{
"src": "images/icon-144.png",
"sizes": "144x144"
},
{
"src": "images/icon-128.png",
"sizes": "128x128"
},
{
"src": "images/icon-96.png",
"sizes": "96x96"
},
{
"src": "images/icon-72.png",
"sizes": "72x72"
},
{
"src": "images/icon-64.png",
"sizes": "64x64"
},
{
"src": "images/icon-48.png",
"sizes": "48x48"
},
{
"src": "images/icon-32.png",
"sizes": "32x32"
},
{
"src": "images/icon-16.png",
"sizes": "16x16"
}
]
}

0 comments on commit 277e52b

Please sign in to comment.