Skip to content

Commit 64fe8f2

Browse files
committed
feat: update PWA manifest
1 parent 9a6218c commit 64fe8f2

File tree

6 files changed

+45
-10
lines changed

6 files changed

+45
-10
lines changed

public/manifest.webmanifest

Lines changed: 35 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,82 @@
11
{
2-
"name": "RSS reader",
2+
"id": "buzz.feedz.app",
3+
"name": "Feedz",
34
"short_name": "Feedz",
5+
"description": "RSS reader",
46
"display": "standalone",
57
"scope": "./",
6-
"start_url": "./",
8+
"start_url": "./articles",
9+
"categories": [
10+
"news"
11+
],
712
"icons": [
813
{
914
"src": "icons/icon-72x72.png",
1015
"sizes": "72x72",
1116
"type": "image/png",
12-
"purpose": "maskable any"
17+
"purpose": "maskable"
1318
},
1419
{
1520
"src": "icons/icon-96x96.png",
1621
"sizes": "96x96",
1722
"type": "image/png",
18-
"purpose": "maskable any"
23+
"purpose": "maskable"
1924
},
2025
{
2126
"src": "icons/icon-128x128.png",
2227
"sizes": "128x128",
2328
"type": "image/png",
24-
"purpose": "maskable any"
29+
"purpose": "maskable"
2530
},
2631
{
2732
"src": "icons/icon-144x144.png",
2833
"sizes": "144x144",
2934
"type": "image/png",
30-
"purpose": "maskable any"
35+
"purpose": "maskable"
36+
},
37+
{
38+
"src": "icons/icon-144x144.png",
39+
"sizes": "144x144",
40+
"type": "image/png",
41+
"purpose": "any"
3142
},
3243
{
3344
"src": "icons/icon-152x152.png",
3445
"sizes": "152x152",
3546
"type": "image/png",
36-
"purpose": "maskable any"
47+
"purpose": "maskable"
3748
},
3849
{
3950
"src": "icons/icon-192x192.png",
4051
"sizes": "192x192",
4152
"type": "image/png",
42-
"purpose": "maskable any"
53+
"purpose": "maskable"
4354
},
4455
{
4556
"src": "icons/icon-384x384.png",
4657
"sizes": "384x384",
4758
"type": "image/png",
48-
"purpose": "maskable any"
59+
"purpose": "maskable"
4960
},
5061
{
5162
"src": "icons/icon-512x512.png",
5263
"sizes": "512x512",
5364
"type": "image/png",
54-
"purpose": "maskable any"
65+
"purpose": "maskable"
66+
}
67+
],
68+
"screenshots": [
69+
{
70+
"src": "screenshots/screenshot-desktop.webp",
71+
"sizes": "840x473",
72+
"form_factor": "wide",
73+
"label": "RSS reader on desktop"
74+
},
75+
{
76+
"src": "screenshots/screenshot-mobile.webp",
77+
"sizes": "480x856",
78+
"form_factor": "narrow",
79+
"label": "RSS reader on mobile"
5580
}
5681
]
5782
}
27.4 KB
Loading
35.2 KB
Loading

screenshot-desktop.webp

77.7 KB
Loading

screenshot-mobile.webp

56.9 KB
Loading

src/index.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
<!doctype html>
22
<html lang="en">
33
<head>
4+
<meta
5+
name="theme-color"
6+
content="#faf9fd"
7+
media="(prefers-color-scheme: light)"
8+
>
9+
<meta
10+
name="theme-color"
11+
content="#101414"
12+
media="(prefers-color-scheme: dark)"
13+
>
414
<meta charset="utf-8"/>
515
<title>News</title>
616
<base href="/"/>

0 commit comments

Comments
 (0)