修复输出 新增eula, 修复自动版本升级

This commit is contained in:
SengokuCola
2025-03-15 12:30:01 +08:00
parent 419bd56e30
commit b2096debf4
6 changed files with 141 additions and 13 deletions

28
webui_conda.bat Normal file
View File

@@ -0,0 +1,28 @@
@echo on
echo Starting script...
echo Activating conda environment: maimbot
call conda activate maimbot
if errorlevel 1 (
echo Failed to activate conda environment
pause
exit /b 1
)
echo Conda environment activated successfully
echo Changing directory to C:\GitHub\MaiMBot
cd /d C:\GitHub\MaiMBot
if errorlevel 1 (
echo Failed to change directory
pause
exit /b 1
)
echo Current directory is:
cd
python webui.py
if errorlevel 1 (
echo Command failed with error code %errorlevel%
pause
exit /b 1
)
echo Script completed successfully
pause