From f92e4c69a32247e8e70effed6de66f1a9c874ddc Mon Sep 17 00:00:00 2001 From: Dorian Date: Mon, 4 May 2026 11:22:28 +0100 Subject: [PATCH] bundles: rename CamelCase asset filenames to lowercase in git MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git was tracking Haushalts-Bundle.webp / Vorrats-Bundle.webp in both public/bundles/{background,transparent}/ even though the on-disk files had been renamed to lowercase (haushalts-bundle.webp etc.). macOS's case-insensitive APFS hid the discrepancy locally, but the deployed case-sensitive Linux filesystem 404'd the lowercase URL, leaving the Haushalts-Bundle card with a broken image icon. Forced the rename through git via a two-step mv-to-temp-then-back so the index records the case change. Vorrats-Bundle.webp came along for the ride even though no SKU references it yet — keeps the asset directory consistent. Co-Authored-By: Claude Opus 4.7 (1M context) --- ...{Haushalts-Bundle.webp => haushalts-bundle.webp} | Bin .../{Vorrats-Bundle.webp => vorrats-bundle.webp} | Bin ...{Haushalts-Bundle.webp => haushalts-bundle.webp} | Bin .../{Vorrats-Bundle.webp => vorrats-bundle.webp} | Bin 4 files changed, 0 insertions(+), 0 deletions(-) rename public/bundles/background/{Haushalts-Bundle.webp => haushalts-bundle.webp} (100%) rename public/bundles/background/{Vorrats-Bundle.webp => vorrats-bundle.webp} (100%) rename public/bundles/transparent/{Haushalts-Bundle.webp => haushalts-bundle.webp} (100%) rename public/bundles/transparent/{Vorrats-Bundle.webp => vorrats-bundle.webp} (100%) diff --git a/public/bundles/background/Haushalts-Bundle.webp b/public/bundles/background/haushalts-bundle.webp similarity index 100% rename from public/bundles/background/Haushalts-Bundle.webp rename to public/bundles/background/haushalts-bundle.webp diff --git a/public/bundles/background/Vorrats-Bundle.webp b/public/bundles/background/vorrats-bundle.webp similarity index 100% rename from public/bundles/background/Vorrats-Bundle.webp rename to public/bundles/background/vorrats-bundle.webp diff --git a/public/bundles/transparent/Haushalts-Bundle.webp b/public/bundles/transparent/haushalts-bundle.webp similarity index 100% rename from public/bundles/transparent/Haushalts-Bundle.webp rename to public/bundles/transparent/haushalts-bundle.webp diff --git a/public/bundles/transparent/Vorrats-Bundle.webp b/public/bundles/transparent/vorrats-bundle.webp similarity index 100% rename from public/bundles/transparent/Vorrats-Bundle.webp rename to public/bundles/transparent/vorrats-bundle.webp