diff --git a/daemon.py b/daemon.py index cb91b7b4f..6766f3c09 100644 --- a/daemon.py +++ b/daemon.py @@ -1289,6 +1289,11 @@ class PubServer(BaseHTTPRequestHandler): "src": "/logo256.png", "type": "image/png", "sizes": "256x256" + }, + { + "src": "/logo512.png", + "type": "image/png", + "sizes": "512x512" } ] } @@ -1898,6 +1903,7 @@ class PubServer(BaseHTTPRequestHandler): self.path == '/logo152.png' or \ self.path == '/logo192.png' or \ self.path == '/logo256.png' or \ + self.path == '/logo512.png' or \ self.path == '/qrcode.png': mediaFilename = \ self.server.baseDir + '/accounts' + self.path diff --git a/img/logo512.png b/img/logo512.png new file mode 100644 index 000000000..10b0194e2 Binary files /dev/null and b/img/logo512.png differ