From 9a125f4240a83ff9b9a206584e2d83aec6f3306e Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Sun, 15 Dec 2024 14:58:10 +0200 Subject: [PATCH] web/index: add PWA manifest --- web/index.html | 1 + web/public/manifest.json | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 web/public/manifest.json diff --git a/web/index.html b/web/index.html index c230123..5de864d 100644 --- a/web/index.html +++ b/web/index.html @@ -3,6 +3,7 @@ + gomuks web diff --git a/web/public/manifest.json b/web/public/manifest.json new file mode 100644 index 0000000..e8dac54 --- /dev/null +++ b/web/public/manifest.json @@ -0,0 +1,17 @@ +{ + "name": "gomuks web", + "description": "A Matrix client written in Go", + "categories": ["social", "productivity"], + "icons": [{ + "src": "gomuks.png", + "sizes": "883x883", + "type": "image/png" + }], + "protocol_handlers": [{ + "protocol": "matrix", + "url": "#/uri/%s" + }], + "start_url": ".", + "display": "standalone", + "theme_color": "#00c853" +}