diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b716596eec110d54c3e6b7e0419adad9c570788b..259a274c5b344d4e4d281c17156367f4c64d817f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -27,6 +27,7 @@ Fixed * Password change view did not redirect to login when accessed unauthenticated. * Sorting icons were inlined into stylesheet +* iOS devices used the favicon instead of the PWA icon when the PWA was added to the home screen. `2.9`_ - 2022-05-25 ------------------- diff --git a/aleksis/core/settings.py b/aleksis/core/settings.py index e5e6984a7f4f0fd26c6a64fcf9a1ac73bfbb3c6a..f98bccec81315a40dec66d218486f558af832cfe 100644 --- a/aleksis/core/settings.py +++ b/aleksis/core/settings.py @@ -743,6 +743,11 @@ PWA_ICONS_CONFIG = { "microsoft": [144], } FAVICON_PATH = os.path.join("public", "favicon") +FAVICON_CONFIG = { + "shortcut icon": [16, 32, 48, 128, 192], + "touch-icon": [196], + "icon": [196], +} SERVICE_WORKER_PATH = os.path.join(STATIC_ROOT, "js", "serviceworker.js")