mirror of
https://github.com/Prowlarr/Indexers.git
synced 2026-04-25 10:58:28 +01:00
- Add VERSIONS file for centralized schema version configuration - Add schema caching with --no-cache override option - Move best schema version detection from bash to Python - Skip logging for empty folders below minimum schema version - Add --find-best-version command line option - Update sync script to use Python for schema detection
14 lines
388 B
Plaintext
14 lines
388 B
Plaintext
# Prowlarr Cardigann Schema Versions
|
|
# This file defines the supported schema versions for indexer definitions
|
|
|
|
# Current active schema version (latest stable)
|
|
CURRENT_VERSION=11
|
|
|
|
# Maximum supported schema version
|
|
MAX_VERSION=11
|
|
|
|
# Minimum supported schema version (below this are deprecated/frozen)
|
|
MIN_VERSION=10
|
|
|
|
# Development/next schema version (if being worked on)
|
|
NEXT_VERSION=12 |