An ATproto social media client -- with an independent Appview.

feat(web): add pwa icons and manifest (#72)

rich installation requires screenshot and a description but this is more than enough

authored by serenity and committed by GitHub aa579135 54078693

+2
web/index.html
··· 20 20 21 21 <link rel="preload" as="font" type="font/woff2" href="/static/media/InterVariable.c504db5c06caaf7cdfba.woff2" crossorigin> 22 22 23 + <link rel="manifest" href="/manifest.json" /> 24 + 23 25 <style> 24 26 /** 25 27 * Minimum styles required to render splash.
+25
web/manifest.json
··· 1 + { 2 + "short_name": "Catsky", 3 + "icons": [ 4 + { 5 + "src": "/favicon.ico", 6 + "sizes": "64x64 32x32 24x24 16x16", 7 + "type": "image/x-icon" 8 + }, 9 + { 10 + "src": "/pwa-192.png", 11 + "type": "image/png", 12 + "sizes": "192x192" 13 + }, 14 + { 15 + "src": "/pwa-512.png", 16 + "type": "image/png", 17 + "sizes": "512x512" 18 + } 19 + ], 20 + "start_url": "/", 21 + "display": "standalone", 22 + "id": "social.catsky", 23 + "theme_color": "rgb(30, 30, 46)", 24 + "background_color": "rgb(30, 30, 46)" 25 + }
web/pwa-192.png

This is a binary file and will not be displayed.

web/pwa-512.png

This is a binary file and will not be displayed.