feat: Add new GUI effects view and numerous image assets.

This commit is contained in:
kiyreload27
2025-12-31 16:29:12 +00:00
parent 3b58d234c4
commit 04a2c1bcb3
1051 changed files with 531 additions and 243 deletions

0
config/__init__.py Normal file
View File

35
config/settings.py Normal file
View File

@@ -0,0 +1,35 @@
"""
Application settings and configuration
"""
import os
from pathlib import Path
# Base directory of the application
BASE_DIR = Path(__file__).parent.parent
# Database configuration
DATABASE_PATH = BASE_DIR / "database" / "umamusume.db"
DATABASE_SEED_PATH = BASE_DIR / "database" / "umamusume_seed.db"
# Image directory
IMAGES_DIR = BASE_DIR / "images"
# Application settings
APP_NAME = "UmamusumeCardManager"
VERSION = "7.0.0"
# Scraping settings
SCRAPING_DELAY_MIN = 0.2
SCRAPING_DELAY_MAX = 0.5
MAX_RETRIES = 3
# Browser settings
HEADLESS_MODE = True
BROWSER_TIMEOUT = 60000
# Database schema version
DB_SCHEMA_VERSION = "1.0"
"""
Database schema version for migration tracking
"""