From 487862ad528a18619edcbff9557f7ab519d0ebc7 Mon Sep 17 00:00:00 2001 From: elsiehupp <9206310+elsiehupp@users.noreply.github.com> Date: Sun, 24 Jan 2021 02:35:17 -0500 Subject: Remove rounded corners `apple-touch-icon` expects squared corners; only `apple-touch-icon-precomposed` expects pre-rounded corners. iOS and browsers apply their own corner radii to `apple-touch-icon`. Signed-off-by: Elsie Hupp --- core/img/favicon-touch.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/img/favicon-touch.svg b/core/img/favicon-touch.svg index 82dfdc4fd44..f2e5d24da33 100644 --- a/core/img/favicon-touch.svg +++ b/core/img/favicon-touch.svg @@ -1 +1 @@ - \ No newline at end of file + -- cgit v1.2.3 From 4d386e586397f692e9cd123fa072e333c93a0c15 Mon Sep 17 00:00:00 2001 From: Elsie Hupp Date: Sun, 24 Jan 2021 02:49:34 -0500 Subject: Update favicon-touch.png removed rounded corners and increased size (exported from SVG) Signed-off-by: Elsie Hupp --- core/img/favicon-touch.png | Bin 2918 -> 6795 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/core/img/favicon-touch.png b/core/img/favicon-touch.png index 635806813a6..9754f8eb544 100644 Binary files a/core/img/favicon-touch.png and b/core/img/favicon-touch.png differ -- cgit v1.2.3 From 7f54eaf00288fa7eed2cfaa3dc9f55a92f717728 Mon Sep 17 00:00:00 2001 From: Elsie Hupp Date: Sun, 24 Jan 2021 03:14:07 -0500 Subject: Update manifest.json Updated dimensions of favicon-touch.png Signed-off-by: Elsie Hupp --- core/img/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/img/manifest.json b/core/img/manifest.json index fcecb856614..04e77df7a59 100644 --- a/core/img/manifest.json +++ b/core/img/manifest.json @@ -4,7 +4,7 @@ "icons": [{ "src": "favicon-touch.png", "type": "image/png", - "sizes": "128x128" + "sizes": "180x180" }, { "src": "favicon-mask.svg", "type": "image/svg+xml", -- cgit v1.2.3 From cc554890c187a03079104e070318449d76ff41e3 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Thu, 11 Feb 2021 11:31:38 +0100 Subject: Fix WebP availability check Signed-off-by: Roeland Jago Douma --- lib/private/Preview/WebP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/Preview/WebP.php b/lib/private/Preview/WebP.php index 8f10a08206b..d2172b1242c 100644 --- a/lib/private/Preview/WebP.php +++ b/lib/private/Preview/WebP.php @@ -37,6 +37,6 @@ class WebP extends Image { } public function isAvailable(FileInfo $file): bool { - return (bool)(imagetypes() && IMG_WEBP); + return (bool)(imagetypes() & IMG_WEBP); } } -- cgit v1.2.3