From 33c4909f93da87c9c65329d308326f959ad58107 Mon Sep 17 00:00:00 2001 From: Alnotz Date: Sun, 22 Dec 2024 17:58:00 +0100 Subject: [PATCH] PWA Manifest added --- index.html | 136 +++++++++++++++++++++++++++++--------------------- manifest.json | 13 +++++ sw.js | 1 + 3 files changed, 92 insertions(+), 58 deletions(-) create mode 100644 manifest.json diff --git a/index.html b/index.html index 40c20f2..8d89cfd 100644 --- a/index.html +++ b/index.html @@ -1,67 +1,87 @@ - + - - - -BD Chapril, générateur de BD de l'April - - + + + + + BD Chapril, générateur de BD de l'April + - -
- - + -
- +
+ + +
+ + Le générateur du GKND a besoin d'un navigateur récent et de javascript pour fonctionner. + +
+
+

Les dessins sont l'œuvre de Gee et sont diffusés sous + licence Creative Commons By-Sa.
+ BD Chapril est une adaptation de GéGé, + lui-même une adaptation de Comic Gen de Willian Carvalho réalisée + par Cyrille Largillier pour Framasoft.

+
+ + + + + +
+ + + \ No newline at end of file diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..5820c06 --- /dev/null +++ b/manifest.json @@ -0,0 +1,13 @@ +{ + "name": "Service BD du Chapril", + "short_name": "bd", + "description": "Le générateur de BD du Chapril", + "icons":[ + { + "src": "images/banniere_bdchapril.png" + } + ], + "start_url": "/index.html", + "display": "browser", + "prefer_related_applications": false +} \ No newline at end of file diff --git a/sw.js b/sw.js index 95b18c1..9e45769 100644 --- a/sw.js +++ b/sw.js @@ -3,6 +3,7 @@ const RESOURCES = [ '/', + '/manifest.json', '/bdchapril.css', '/comicgen.js', '/index.html',