fixed a bug with dead icon links in site.webmanifest, and slightly expanded manifest
This commit is contained in:
parent
aa3a6cf155
commit
adff1feb30
3
TODO.md
3
TODO.md
@ -146,6 +146,9 @@
|
||||
- parcel build
|
||||
- im Dist-Verz.: python3 -m http.server
|
||||
- CORS-Fehler im Firefox vermeiden: about:config -> content.cors.disable = true
|
||||
- letztes Problem (hoffentlich): die Links zu den android-chrome-XYZxXYZ Icons im site.webmanifest stimmen nicht
|
||||
- hab site.manifest nach src/ verschoben und die Links angepasst -> jetzt scheint's zu gehen
|
||||
|
||||
- Deployment:
|
||||
- CI/CD: es gibt Jenkins für Yunohost
|
||||
- hier ist ein Tutorial, um Jenkins und Gitea miteinander bekannt zu machen: https://mike42.me/blog/2019-05-how-to-integrate-gitea-and-jenkins
|
||||
|
||||
@ -1,19 +0,0 @@
|
||||
{
|
||||
"name": "A simple Initiative tracker for Shadowrun 2e",
|
||||
"short_name": "sr2ini",
|
||||
"icons": [
|
||||
{
|
||||
"src": "android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "gold",
|
||||
"background_color": "#004aa5",
|
||||
"display": "standalone"
|
||||
}
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "sr2ini",
|
||||
"version": "0.9.3",
|
||||
"version": "0.9.5",
|
||||
"description": "Simple Initiative tracker for Shadowrun 2e",
|
||||
"private": true,
|
||||
"author": {
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../icons/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../icons/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../icons/favicon-16x16.png">
|
||||
<link rel="manifest" href="../icons/site.webmanifest">
|
||||
<link rel="manifest" href="site.webmanifest">
|
||||
<link rel="mask-icon" href="../icons/safari-pinned-tab.svg" color="#004aa5">
|
||||
<link rel="shortcut icon" href="../icons/favicon.ico">
|
||||
<meta name="msapplication-TileColor" content="#004aa5">
|
||||
|
||||
22
src/site.webmanifest
Normal file
22
src/site.webmanifest
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "sr2ini",
|
||||
"short_name": "sr2ini",
|
||||
"description": "A simple Initiative tracker for Shadowrun 2e",
|
||||
"start_url": ".",
|
||||
"icons": [
|
||||
{
|
||||
"src": "../icons/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "../icons/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "gold",
|
||||
"background_color": "#004aa5",
|
||||
"display": "standalone",
|
||||
"orientstion": "portrait"
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user