feat: Refine session clear to preserve UI preferences while resetting game state and standardize image cache paths to full and crop subdirectories.
Some checks failed
Build and Deploy / build (push) Failing after 1m0s

This commit is contained in:
2025-12-18 20:41:01 +01:00
parent bc5eda5e2a
commit 49080d8233
11 changed files with 130 additions and 33 deletions

View File

@@ -0,0 +1,16 @@
# 2025-12-18 - Restore Images Subdirectory
## Overview
Corrected the cache folder structure to include the `images` subdirectory as explicitly requested by the user, fixing a previous misinterpretation.
## Revised Structure
- **Paths**:
- Full Art: `/public/cards/images/[set]/full/[id].jpg`
- Crop Art: `/public/cards/images/[set]/crop/[id].jpg`
## Changes
- **Updated `CardService.ts`**: Re-inserted `images` into the `path.join` construction for file saving.
- **Updated `PackGeneratorService.ts` (Server & Client)**: Updated the generated URLs to include the `/cards/images/...` segment.
## Compliance
This aligns the application with the user's specific requirement for folder hierarchy: `/cards/images/[set-code]/full` and `/cards/images/[set-code]/crop`.