tinyGuiUpdate , Updating script v1 finnished

This commit is contained in:
Kevin
2026-03-17 00:08:41 +02:00
parent 2f07910512
commit 8dfb15ac40
29 changed files with 1881 additions and 98 deletions

21
jibo_gui.bat Normal file
View File

@@ -0,0 +1,21 @@
@echo off
setlocal
REM Main GUI launcher (Main Panel)
set "SCRIPT_DIR=%~dp0"
set "VENV_PY=%SCRIPT_DIR%.venv\Scripts\python.exe"
if exist "%VENV_PY%" (
"%VENV_PY%" -m gui.main_panel %*
exit /b %ERRORLEVEL%
)
where py >nul 2>nul
if %ERRORLEVEL%==0 (
py -3 -m gui.main_panel %*
exit /b %ERRORLEVEL%
)
python -m gui.main_panel %*
exit /b %ERRORLEVEL%