physics-simulations

A collection of physics simulations
git clone https://git.ashermorgan.net/physics-simulations/
Log | Files | Refs | README

commit 3da1aee8eb301cef536ef34095004b2a726983ef
parent bba1289778963954965df9fb9934668286ed1e5e
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Sat,  6 Mar 2021 17:30:01 -0800

Add manifest.json

Diffstat:
Mindex.html | 2++
Amanifest.json | 41+++++++++++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+), 0 deletions(-)

diff --git a/index.html b/index.html @@ -5,6 +5,8 @@ <title>Physics Simulations</title> <meta name="Description" content="A collection of physics simulations"> <meta name="viewport" content="width=device-width"> + <meta name="theme-color" content="#48d1cc"> + <link rel="manifest" href="manifest.json"> <link rel="icon" type="image/png" href="images/favicon-32.png"> <link rel="apple-touch-icon" href="images/favicon-180.png"> <link rel="stylesheet" href="index.css"> diff --git a/manifest.json b/manifest.json @@ -0,0 +1,41 @@ +{ + "background_color": "#48d1cc", + "categories": ["education"], + "description": "A collection of physics simulations", + "display": "fullscreen", + "icons": [ + { + "src": "images/favicon-32.png", + "sizes": "32x32" + }, + { + "src": "images/favicon-180.png", + "sizes": "180x180" + }, + { + "src": "images/favicon-192.png", + "sizes": "192x192" + }, + { + "src": "images/favicon-192-maskable.png", + "sizes": "192x192", + "purpose": "maskable" + }, + { + "src": "images/favicon-512.png", + "sizes": "512x512" + }, + { + "src": "images/favicon-512-maskable.png", + "sizes": "512x512", + "purpose": "maskable" + } + ], + "lang": "en-US", + "name": "Physics Simulations", + "orientation": "portrait", + "scope": "./", + "short_name": "Simulations", + "start_url": "./index.html", + "theme_color": "#48d1cc" +}