Commit 9f0510d0 authored by Stefy Lanza (nextime / spora )'s avatar Stefy Lanza (nextime / spora )

Merge remote-tracking branch 'refs/remotes/origin/master'

parents 834cd622 e37a9a8d
......@@ -11,6 +11,7 @@ __pycache__/
build/
develop-eggs/
dist/
distribution/*
downloads/
eggs/
.eggs/
......
......@@ -40,12 +40,12 @@ def install_build_dependencies():
print("Installing build dependencies...")
# Install build requirements
if not run_command([sys.executable, "-m", "pip", "install", "-r", "requirements-build.txt"]):
if not run_command([sys.executable, "-m", "pip", "install", "-r", "requirements-build.txt", "--break-system-packages"]):
print("Failed to install build dependencies")
return False
# Install runtime requirements
if not run_command([sys.executable, "-m", "pip", "install", "-r", "requirements.txt"]):
if not run_command([sys.executable, "-m", "pip", "install", "-r", "requirements.txt", "--break-system-packages"]):
print("Failed to install runtime dependencies")
return False
......
......@@ -733,6 +733,10 @@ curl -H "Authorization: Bearer $API_TOKEN" \
- Web interface integration with status display in match detail pages
- API endpoints include status information in responses
- Backward compatibility maintained for existing matches
- **New Migration_007**: Ensures 'done' status is available in existing ENUM columns
- Safely adds 'done' to existing status ENUM if not present
- Handles databases created before the 'done' status was added
- Includes proper rollback support for migration reversal
-**Configuration Auto-Migration**: Enhanced persistent directory configuration system
- Automatic copying of .env to persistent config directory when mbetterd.conf doesn't exist
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment