86bf43c80a
- Classify Patreon "Not allowed to view post" warnings as TIER_LIMITED so subscription-gated runs are distinguished from genuine failures, and persist error_type/message on completed runs so the distinction survives to the UI. - Fold PLATFORM_DEFAULTS into _get_default_config so gallery-dl.conf is a complete, editable document; _build_config_for_source now preserves the user's conf and only re-seeds missing platform sections. - Add Reset-to-Defaults action in Settings (vs. Revert Changes which just reloads disk); show info banner when no gallery-dl.conf exists yet. - Fix Discord embeds option: must be "all" string, not bool (gallery-dl iterates the value). - Install yt-dlp + ffmpeg in Docker images so Patreon/Mux HLS video posts download instead of logging "Cannot import yt-dlp" and skipping. - Recognize yt-dlp import failures as per-item errors so they don't mask TIER_LIMITED/NO_NEW_CONTENT classification. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
40 lines
628 B
Plaintext
40 lines
628 B
Plaintext
# Web framework
|
|
quart
|
|
quart-cors
|
|
hypercorn
|
|
flask
|
|
|
|
# Database
|
|
sqlalchemy[asyncio]
|
|
asyncpg
|
|
alembic
|
|
|
|
# Task queue
|
|
celery[redis]
|
|
redis
|
|
|
|
# HTTP client
|
|
aiohttp
|
|
yarl
|
|
|
|
# Utilities
|
|
pydantic
|
|
pydantic-settings
|
|
python-dotenv
|
|
cryptography
|
|
pyyaml
|
|
|
|
# gallery-dl (>=1.31.10 fixes Patreon HTTP 426 / OAuth flow)
|
|
gallery-dl>=1.31.10
|
|
|
|
# yt-dlp: video backend gallery-dl shells out to for Patreon/Mux HLS streams,
|
|
# embedded YouTube, etc. Without it, video posts log "[downloader.ytdl][error]
|
|
# Cannot import yt-dlp" and skip. Requires ffmpeg in the system image to mux
|
|
# HLS segments into mp4.
|
|
yt-dlp
|
|
|
|
# Testing
|
|
pytest
|
|
pytest-asyncio
|
|
aioresponses
|