mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-08-29 03:56:43 +08:00
* fix(resource): select free-threaded extension ABI * chore(deps): require moviepilot-rust 0.2.9 * perf: add free-threaded runtime comparison * feat: add free-threaded runtime profile * chore(deps): require moviepilot-rust 0.3.0 * test: isolate system endpoint import graph * fix(docker): preserve runtime profile during recovery * feat(runtime): expose active GIL state * feat(plugin): log GIL fallback attribution * test: refresh runtime observability dependency baseline * fix(plugin): validate the active uv runtime profile * test(runtime): expand free-threaded benchmark evidence * docs(runtime): define v3t governance gates * test(runtime): separate rust benchmark modes * docs: sync free-threaded architecture baseline * perf: add PostgreSQL driver comparison * docs(runtime): record final free-threaded evidence * fix(runtime): converge dual-profile dependency verification * fix(runtime): scope Python 3.14 warning filter * fix(runtime): match actual oss2 syntax warning * docs(runtime): refresh free-threaded benchmark evidence * test(architecture): refresh runtime dependency baseline * ci: skip unused Trivy Java database * build: exclude local verification artifacts * docs(runtime): refresh PostgreSQL driver benchmarks * docs(runtime): record plugin restore acceptance * docs(runtime): record amd64 candidate acceptance * ci: pin beta image publisher action * test(architecture): merge runtime dependency baseline * feat(runtime): expose Python GIL status * docs(runtime): document Python runtime status fields
110 lines
1.0 KiB
Plaintext
110 lines
1.0 KiB
Plaintext
# Git
|
|
.github
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
docs/
|
|
README.md
|
|
LICENSE
|
|
|
|
# Development files
|
|
.pylintrc
|
|
**/*.pyc
|
|
**/__pycache__/
|
|
**/*.pyo
|
|
**/*.pyd
|
|
.Python
|
|
**/*.so
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
coverage.json
|
|
coverage.xml
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.hypothesis/
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
.worktrees/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Runtime state and locally synchronized payloads
|
|
.build/
|
|
.agent-work/
|
|
.runtime/
|
|
.tmp/
|
|
.cache/
|
|
node_modules/
|
|
public/
|
|
.moviepilot.env
|
|
.env
|
|
.env.*
|
|
config/*
|
|
!config/category.yaml
|
|
app/plugins/**
|
|
!app/plugins/__init__.py
|
|
app/application/site/*.bin
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
tmp/
|
|
temp/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Test files
|
|
tests/
|
|
test_*
|
|
*_test.py
|
|
|
|
# Build artifacts
|
|
.artifacts/
|
|
build/
|
|
.build/
|
|
dist/
|
|
*.egg-info/
|
|
rust/**/target/
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*
|
|
.dockerignore
|
|
|
|
# Other
|
|
app.ico
|
|
frozen.spec
|