]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Manifest.php
Store the selected network tab in a session variable
[friendica.git] / src / Module / Manifest.php
index bfe758fa9782a5a22cae9cede356603d6a072306..8ea6fbcfc10e969d54955b10511e1fb7ac386211 100644 (file)
@@ -31,7 +31,7 @@ class Manifest extends BaseModule
        {
                $config = DI::config();
 
-               $touch_icon = $config->get('system', 'touch_icon') ?: 'images/friendica-128.png';
+               $touch_icon = $config->get('system', 'touch_icon') ?: 'images/friendica-192.png';
 
                $theme = DI::config()->get('system', 'theme');
 
@@ -44,7 +44,12 @@ class Manifest extends BaseModule
                        'icons'       => [
                                [
                                        'src'   => DI::baseUrl()->get() . '/' . $touch_icon,
-                                       'sizes' => '128x128',
+                                       'sizes' => '192x192',
+                                       'type'  => 'image/png',
+                               ],
+                               [
+                                       'src'   => DI::baseUrl()->get() . '/' . $touch_icon,
+                                       'sizes' => '512x512',
                                        'type'  => 'image/png',
                                ],
                        ],