feat: Picdrop-style color tags (Rot/Orange/Gruen/Final) in library + in .md metadata; tap-to-open fullscreen for iPhone Save-to-Photos

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01XNQ8ghPfzAfsyVYd6HgFb6
This commit is contained in:
2026-07-24 07:38:20 +00:00
parent f95a3b58b7
commit af34cb9cc8
6 changed files with 100 additions and 10 deletions
+4
View File
@@ -0,0 +1,4 @@
-- Farbmarkierungen wie bei Picdrop (Rot / Orange / Grün / Final).
ALTER TABLE items ADD COLUMN IF NOT EXISTS color_tag text
CHECK (color_tag IN ('red','orange','green','final'));
CREATE INDEX IF NOT EXISTS items_color_tag_idx ON items(color_tag);