Kompletter Rewrite

This commit is contained in:
Akamaru
2025-12-21 14:35:08 +01:00
parent 79b8aa2a34
commit 5fa6bfeb62
27 changed files with 3946 additions and 1197 deletions

View File

@@ -1,15 +1,16 @@
@echo off
echo Installing required packages...
pip install -r requirements.txt
pip install pyinstaller
echo Building Serien-Checker.exe...
echo.
echo Building executable...
python build.py
uv run build.py
echo Done!
if exist "dist\Serien-Checker.exe" (
echo Executable created successfully at dist\Serien-Checker.exe
) else (
echo Error: Build failed!
if %errorlevel% neq 0 (
echo.
echo Build failed with error code %errorlevel%
pause
exit /b %errorlevel%
)
pause
echo.
echo Build completed successfully!
pause