feat(lite): introduce PWA manifest (#7291)
This implements the initial PWA manifest for XO Lite. I requested this several months to a year ago, so decided to do it myself in the end.
This commit is contained in:
parent
19fd456ccf
commit
b0e5846ad1
@ -3,6 +3,7 @@
|
||||
## **next**
|
||||
|
||||
- Fix Typescript typings errors when running `yarn type-check` command (PR [#7278](https://github.com/vatesfr/xen-orchestra/pull/7278))
|
||||
- Introduce PWA Json Manifest (PR [#7291](https://github.com/vatesfr/xen-orchestra/pull/7291))
|
||||
|
||||
## **0.1.7** (2023-12-28)
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<link rel="manifest" href="/manifest.webmanifest">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>XO Lite</title>
|
||||
</head>
|
||||
|
1
@xen-orchestra/lite/public/favicon.svg
Normal file
1
@xen-orchestra/lite/public/favicon.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 10 KiB |
14
@xen-orchestra/lite/public/manifest.webmanifest
Normal file
14
@xen-orchestra/lite/public/manifest.webmanifest
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "XO Lite",
|
||||
"short_name": "XOLite",
|
||||
"start_url": "/",
|
||||
"display": "standalone",
|
||||
"description": "Integrated local and lightweight solution to manage a local XCP-ng pool.",
|
||||
"icons": [
|
||||
{
|
||||
"src": "favicon.svg",
|
||||
"sizes": "any",
|
||||
"type": "image/svg+xml"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user