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__/ ...@@ -11,6 +11,7 @@ __pycache__/
build/ build/
develop-eggs/ develop-eggs/
dist/ dist/
distribution/*
downloads/ downloads/
eggs/ eggs/
.eggs/ .eggs/
...@@ -149,4 +150,4 @@ uploads/ ...@@ -149,4 +150,4 @@ uploads/
logs/ logs/
backups/ backups/
*.pid *.pid
*.sock *.sock
\ No newline at end of file
...@@ -40,12 +40,12 @@ def install_build_dependencies(): ...@@ -40,12 +40,12 @@ def install_build_dependencies():
print("Installing build dependencies...") print("Installing build dependencies...")
# Install build requirements # 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") print("Failed to install build dependencies")
return False return False
# Install runtime requirements # 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") print("Failed to install runtime dependencies")
return False return False
...@@ -274,4 +274,4 @@ def main(): ...@@ -274,4 +274,4 @@ def main():
print("=" * 60) print("=" * 60)
if __name__ == "__main__": if __name__ == "__main__":
main() main()
\ No newline at end of file
...@@ -733,6 +733,10 @@ curl -H "Authorization: Bearer $API_TOKEN" \ ...@@ -733,6 +733,10 @@ curl -H "Authorization: Bearer $API_TOKEN" \
- Web interface integration with status display in match detail pages - Web interface integration with status display in match detail pages
- API endpoints include status information in responses - API endpoints include status information in responses
- Backward compatibility maintained for existing matches - 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 -**Configuration Auto-Migration**: Enhanced persistent directory configuration system
- Automatic copying of .env to persistent config directory when mbetterd.conf doesn't exist - 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