From 7b5be655cb32bff3427aeeb4eb4121951d06a847 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Wed, 15 Jul 2026 11:26:00 +0000 Subject: [PATCH] Web: neues Umschlag-Logo als Favicon + im Schriftzug - favicon.svg (transparentes SVG des Umschlag-Logos) + - Logo neben dem "schattenpost"-Schriftzug im Header (Inline-SVG, Accent-Farbe) - Service-Worker-Cache v3 -> v4, favicon.svg in die Offline-Shell Co-Authored-By: Claude Opus 4.8 --- web/favicon.svg | 6 ++++++ web/index.html | 13 ++++++++++++- web/sw.js | 3 ++- 3 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 web/favicon.svg diff --git a/web/favicon.svg b/web/favicon.svg new file mode 100644 index 0000000..36ce0a0 --- /dev/null +++ b/web/favicon.svg @@ -0,0 +1,6 @@ + + + + + diff --git a/web/index.html b/web/index.html index 3f801f7..b3823b0 100644 --- a/web/index.html +++ b/web/index.html @@ -3,6 +3,7 @@ schattenpost +
-

schattenpost

+
+ + + + + +

schattenpost

+
One-Time-Pad + Steganografie. Alles läuft in deinem Browser — nichts wird gesendet.
diff --git a/web/sw.js b/web/sw.js index ab03ff1..b805c0d 100644 --- a/web/sw.js +++ b/web/sw.js @@ -1,11 +1,12 @@ /* schattenpost Service Worker — reines Offline-Caching der App-Shell. Sendet NICHTS an einen Server. Cache-first, kein Netzwerk-Fallback nötig, sobald die Shell einmal geladen ist. */ -const CACHE = 'schattenpost-v3'; +const CACHE = 'schattenpost-v4'; const SHELL = [ './', './index.html', './manifest.webmanifest', + './favicon.svg', './icon-192.png', './icon-512.png', ];