svg.escobar.life

A simple SVG markup editor for the web

Commit
79b6351c194805ee25d4a4974f0bfee9c1d43366
Parent
f1acdccc06c2eae704c454b78397400706904d62
Author
Gark Garcia <37553739+GarkGarcia@users.noreply.github.com>
Date

Made the app into a Chrome PWA.

Diffstat

3 files changed, 24 insertions, 2 deletions

Status File Name N° Changes Insertions Deletions
Added assets/icons/manifest.json 22 22 0
Modified build/template.html 2 1 1
Modified index.html 2 1 1
diff --git a/assets/icons/manifest.json b/assets/icons/manifest.json
@@ -0,0 +1,21 @@
+{
+  "name": "RawSvg",
+  "short_name": "RawSvg",
+  "icons": [
+    {
+      "src": "assets/icons/android-chrome-192x192.png",
+      "sizes": "192x192",
+      "type": "image/png"
+    },
+    {
+      "src": "assets/icons/android-chrome-512x512.png",
+      "sizes": "512x512",
+      "type": "image/png"
+    }
+  ],
+  "start_url": "/",
+  "background_color": "#2D2B55",
+  "display": "standalone",
+  "scope": "/",
+  "theme_color": "#B362FF"
+}+
\ No newline at end of file
diff --git a/build/template.html b/build/template.html
@@ -9,7 +9,7 @@
         <link rel="apple-touch-icon" sizes="180x180" href="assets/icons/apple-touch-icon.png">
         <link rel="icon" type="image/png" sizes="32x32" href="assets/icons/favicon-32x32.png">
         <link rel="icon" type="image/png" sizes="16x16" href="assets/icons/favicon-16x16.png">
-        <link rel="manifest" href="assets/icons/site.webmanifest">
+        <link rel="manifest" href="assets/icons/manifest.json">
         <link rel="mask-icon" href="assets/icons/safari-pinned-tab.svg" color="#b362ff">
         <link rel="shortcut icon" href="assets/icons/favicon.ico">
         <meta name="msapplication-TileColor" content="#9f00a7">
diff --git a/index.html b/index.html
@@ -9,7 +9,7 @@
         <link rel="apple-touch-icon" sizes="180x180" href="assets/icons/apple-touch-icon.png">
         <link rel="icon" type="image/png" sizes="32x32" href="assets/icons/favicon-32x32.png">
         <link rel="icon" type="image/png" sizes="16x16" href="assets/icons/favicon-16x16.png">
-        <link rel="manifest" href="assets/icons/site.webmanifest">
+        <link rel="manifest" href="assets/icons/manifest.json">
         <link rel="mask-icon" href="assets/icons/safari-pinned-tab.svg" color="#b362ff">
         <link rel="shortcut icon" href="assets/icons/favicon.ico">
         <meta name="msapplication-TileColor" content="#9f00a7">