mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
feat(pwa): add shortcuts to PWA (#1509)
* feat(pwa): add shortcuts to PWA * feat(pwa): suggested changes use 192x192 px icons and replace links
This commit is contained in:

committed by
GitHub

parent
db49b2024d
commit
ed99e4976d
BIN
public/clock-icon-192x192.png
Normal file
BIN
public/clock-icon-192x192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
BIN
public/cog-icon-192x192.png
Normal file
BIN
public/cog-icon-192x192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
@@ -30,5 +30,40 @@
|
||||
],
|
||||
"theme_color": "#1f2937",
|
||||
"background_color": "#1f2937",
|
||||
"display": "standalone"
|
||||
"display": "standalone",
|
||||
"shortcuts": [
|
||||
{
|
||||
"name": "Requests",
|
||||
"url": "/requests",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/clock-icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Profile",
|
||||
"url": "/profile",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/users-icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Settings",
|
||||
"url": "/profile/settings",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/cog-icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
BIN
public/users-icon-192x192.png
Normal file
BIN
public/users-icon-192x192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
Reference in New Issue
Block a user