chore: upgrade StudioBridge v2.1.2 -> v2.1.3, add persistent-folder creation, update runbook
- Rebuild StudioBridge-2.1.3.jar from latest upstream (v2.1.3) and deploy to portable-dist - Add ensurePersistentDirectories() so the app creates ~/.studio-bridge and Profiles at startup (GUI + --sendonly) - Bundle full StudioBridge source under StudioBridge-src/ (with rebuild-jar.bat) - Update launchers (Launch-StudioBridge.bat, portable-dist/StudioBridge.bat) to v2.1.3 - Add check-update.ps1 and UPDATE.md for the step-by-step update runbook - Update README (v2.1.3, persistent data + updating sections) - Ignore StudioBridge-src/target/ build output
This commit is contained in:
@@ -17,25 +17,25 @@ REM Set the path to the portable-dist folder
|
||||
set "PORTABLE=%ROOTDIR%portable-dist"
|
||||
|
||||
REM ---------------------------------------------------------------------------
|
||||
REM JAR auto-download (StudioBridge 2.1.2)
|
||||
REM JAR auto-download (StudioBridge 2.1.3)
|
||||
REM ---------------------------------------------------------------------------
|
||||
set "JAR_FILE=%PORTABLE%\StudioBridge-2.1.2.jar"
|
||||
set "JAR_URL=https://github.com/Rdiger-36/StudioBridge/releases/download/v.2.1.2/StudioBridge-2.1.2.jar"
|
||||
set "JAR_FILE=%PORTABLE%\StudioBridge-2.1.3.jar"
|
||||
set "JAR_URL=https://github.com/Rdiger-36/StudioBridge/releases/download/v.2.1.3/StudioBridge-2.1.3.jar"
|
||||
|
||||
if not exist "%JAR_FILE%" (
|
||||
echo [JAR] StudioBridge-2.1.2.jar not found.
|
||||
echo [JAR] Downloading StudioBridge 2.1.2...
|
||||
echo [JAR] StudioBridge-2.1.3.jar not found.
|
||||
echo [JAR] Downloading StudioBridge 2.1.3...
|
||||
echo.
|
||||
powershell -NoProfile -Command "Invoke-WebRequest -Uri '%JAR_URL%' -OutFile '%JAR_FILE%'" 2>nul
|
||||
if not exist "%JAR_FILE%" (
|
||||
echo ERROR: JAR download failed. Please check your internet connection.
|
||||
echo You can also manually download StudioBridge-2.1.2.jar from:
|
||||
echo https://github.com/Rdiger-36/StudioBridge/releases/tag/v.2.1.2
|
||||
echo You can also manually download StudioBridge-2.1.3.jar from:
|
||||
echo https://github.com/Rdiger-36/StudioBridge/releases/tag/v.2.1.3
|
||||
echo and place it in: %PORTABLE%
|
||||
pause
|
||||
exit /b 1
|
||||
)
|
||||
echo [JAR] StudioBridge 2.1.2 downloaded successfully.
|
||||
echo [JAR] StudioBridge 2.1.3 downloaded successfully.
|
||||
echo.
|
||||
)
|
||||
REM ---------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user