aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui/static_manifest.go
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2018-07-18 21:30:54 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-07-18 21:30:54 -0700
commitc1ab27172c0d82f9289aeb3402056f727bc473fd (patch)
tree944d2c4db851244cc622461d4164bfc2a6fb70b3 /ui/static_manifest.go
parentd10312fe156444c54b2580e335bb09d39aff7a75 (diff)
Update application icon with different sizes
Diffstat (limited to 'ui/static_manifest.go')
-rw-r--r--ui/static_manifest.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/static_manifest.go b/ui/static_manifest.go
index 8721718..47de9f3 100644
--- a/ui/static_manifest.go
+++ b/ui/static_manifest.go
@@ -35,8 +35,9 @@ func (c *Controller) WebManifest(w http.ResponseWriter, r *http.Request) {
Display: "minimal-ui",
StartURL: route.Path(c.router, "unread"),
Icons: []webManifestIcon{
- webManifestIcon{Source: route.Path(c.router, "appIcon", "filename", "touch-icon-ipad-retina.png"), Sizes: "144x144", Type: "image/png"},
- webManifestIcon{Source: route.Path(c.router, "appIcon", "filename", "touch-icon-iphone-retina.png"), Sizes: "114x114", Type: "image/png"},
+ webManifestIcon{Source: route.Path(c.router, "appIcon", "filename", "icon-120.png"), Sizes: "120x120", Type: "image/png"},
+ webManifestIcon{Source: route.Path(c.router, "appIcon", "filename", "icon-192.png"), Sizes: "192x192", Type: "image/png"},
+ webManifestIcon{Source: route.Path(c.router, "appIcon", "filename", "icon-512.png"), Sizes: "512x512", Type: "image/png"},
},
}