- Simplify menus from 17 to 8 options (config, dashboard, QQ, platforms, diagnostics, backup, restore, sysinfo) - Pre-install QQ bot plugin (@sliverp/qqbot) - users only need AppID + Secret - Install scripts now extract next to themselves (works on USB or computer) - Rename all scripts to English (Mac-Install, Windows-Install, Mac-Start, etc.) - Add README.txt for USB drive with bilingual instructions - Rewrite README.md to match current v1.1 structure - Remove old Chinese-named scripts, build script, test files, QR images - Add Toolkit/ and U-Claw-CN/ to .gitignore
74 lines
1.7 KiB
Batchfile
74 lines
1.7 KiB
Batchfile
@echo off
|
|
chcp 65001 >/dev/null 2>&1
|
|
title U-Claw - Extract and Launch
|
|
|
|
echo.
|
|
echo ========================================
|
|
echo U-Claw v1.1
|
|
echo Extract and Launch (Windows)
|
|
echo ========================================
|
|
echo.
|
|
|
|
set "SCRIPT_DIR=%~dp0"
|
|
set "ARCHIVE=%SCRIPT_DIR%U-Claw.tar.gz"
|
|
set "INSTALL_DIR=%SCRIPT_DIR%U-Claw"
|
|
|
|
REM Check archive
|
|
if not exist "%ARCHIVE%" (
|
|
echo [ERROR] U-Claw.tar.gz not found
|
|
echo Please ensure this script and the archive are in the same directory
|
|
echo.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
REM Check if already extracted
|
|
if exist "%INSTALL_DIR%\app\core\node_modules" (
|
|
echo U-Claw already extracted at: %INSTALL_DIR%
|
|
echo.
|
|
echo [1] Launch directly (skip extract)
|
|
echo [2] Re-extract (overwrite)
|
|
echo.
|
|
set /p choice=" Choose [1/2, default 1]: "
|
|
if "%choice%"=="2" (
|
|
echo.
|
|
echo Re-extracting...
|
|
rmdir /s /q "%INSTALL_DIR%" >/dev/null 2>&1
|
|
) else (
|
|
echo.
|
|
echo Launching...
|
|
goto :start
|
|
)
|
|
)
|
|
|
|
REM Extract
|
|
echo.
|
|
echo Extracting U-Claw to: %INSTALL_DIR%
|
|
echo This may take a few minutes...
|
|
echo.
|
|
|
|
where tar >/dev/null 2>&1
|
|
if %errorlevel%==0 (
|
|
cd /d "%SCRIPT_DIR%"
|
|
tar xzf "%ARCHIVE%"
|
|
if %errorlevel% neq 0 (
|
|
echo Extract failed! Please extract U-Claw.tar.gz manually
|
|
pause
|
|
exit /b 1
|
|
)
|
|
) else (
|
|
echo tar not available. Please extract U-Claw.tar.gz manually
|
|
echo using 7-Zip or WinRAR to this directory.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo Extract complete!
|
|
echo.
|
|
|
|
:start
|
|
echo Starting OpenClaw...
|
|
echo.
|
|
|
|
cd /d "%INSTALL_DIR%"
|
|
call "%INSTALL_DIR%\Windows-Start.bat" |