Added changelog, cli for errors, fixes and improvements in code

This commit is contained in:
Deniz Şafak
2025-04-27 01:21:16 +03:00
parent e9c901d0d5
commit b7c1862651
5 changed files with 25 additions and 8 deletions
+13 -6
View File
@@ -218,11 +218,20 @@ if errorlevel 1 (
exit /b
)
:: Install sphinx and hatchling
echo Installing sphinx and hatchling...
%PYTHON_CONSOLE_PATH% -m pip install --upgrade sphinx hatchling --no-warn-script-location
:: Install docopt's fixed version
echo Installing fixed version of docopt...
%PYTHON_CONSOLE_PATH% -m pip install --force-reinstall https://github.com/denizsafak/abogen/raw/refs/heads/main/abogen/resources/docopt-0.6.2-py2.py3-none-any.whl --no-warn-script-location
if errorlevel 1 (
echo Failed to install hatchling.
echo Failed to install fixed version of docopt.
pause
exit /b
)
:: Install setup requirements
echo Installing setup requirements...
%PYTHON_CONSOLE_PATH% -m pip install --upgrade setuptools wheel sphinx hatchling --no-warn-script-location
if errorlevel 1 (
echo Failed to install setup requirements.
pause
exit /b
)
@@ -295,5 +304,3 @@ echo Starting %NAME%...
start "" %RUN% %*
exit /b