Sprint 15: Suche, Ausweis, Teilen, Widget

- Volltext-Suche im Tagebuch (LIKE über Titel/Text/Tags, Debounce 350ms)
- Digitaler Heimtierausweis als druckbare HTML-Seite (/ausweis/{dog_id})
  Enthält Impfungen, Medikamente, Allergien, Tierärzte, Chip-Nr.
- Hund teilen: Einladungslink-System (dog_shares-Tabelle, /teilen/{token})
  Geteilte Hunde erscheinen in der Hundeliste, Tagebuch/Gesundheit lesbar
- Widget-Seite /#widget: zufälliges Tagebuchbild + nächste Erinnerung
  Als PWA-Shortcut im Manifest verankert
- SW-Cache by-v144, APP_VER 117
This commit is contained in:
rene 2026-04-17 15:51:09 +02:00
parent d5f09cd16b
commit 34f29f9d0a
16 changed files with 917 additions and 35 deletions

View file

@ -27,14 +27,21 @@
},
"shortcuts": [
{
"name": "Tagebuch",
"url": "/#diary",
"icons": [{ "src": "/icons/icon-192.png", "sizes": "192x192" }]
"name": "Tagebuch",
"url": "/#diary",
"icons": [{ "src": "/icons/icon-192.png", "sizes": "192x192" }]
},
{
"name": "Giftköder melden",
"url": "/#poison",
"icons": [{ "src": "/icons/icon-192.png", "sizes": "192x192" }]
"name": "Widget",
"short_name": "Widget",
"description": "Nächste Erinnerung + zufälliges Tagebuchbild",
"url": "/#widget",
"icons": [{ "src": "/icons/icon-192.png", "sizes": "192x192" }]
},
{
"name": "Giftköder melden",
"url": "/#poison",
"icons": [{ "src": "/icons/icon-192.png", "sizes": "192x192" }]
}
]
}