fix(install): align windows setup launcher

This commit is contained in:
VideoTools CI 2026-01-23 06:15:32 -05:00
parent 4aebb39297
commit 034cfdf855
3 changed files with 7 additions and 3 deletions

View File

@ -34,6 +34,8 @@
- Added `install.bat` and `install.ps1` to avoid Git Bash popping up from PowerShell. - Added `install.bat` and `install.ps1` to avoid Git Bash popping up from PowerShell.
- ✅ **Windows scripts entrypoints** - ✅ **Windows scripts entrypoints**
- Added `scripts/install.ps1` and `scripts/install.bat` to keep the Windows workflow inside PowerShell/CMD. - Added `scripts/install.ps1` and `scripts/install.bat` to keep the Windows workflow inside PowerShell/CMD.
- ✅ **Windows setup launcher alignment**
- `setup-windows.bat` now delegates to `scripts/install.bat` for a single Windows flow.
## Version 0.1.0-dev25 (2026-01-22) - Settings Preferences Expansion ## Version 0.1.0-dev25 (2026-01-22) - Settings Preferences Expansion

View File

@ -20,6 +20,8 @@ This file tracks upcoming features, improvements, and known issues.
- Provide `install.bat` and `install.ps1` for PowerShell-first installs. - Provide `install.bat` and `install.ps1` for PowerShell-first installs.
- [X] **Windows scripts entrypoints** - [X] **Windows scripts entrypoints**
- Provide `scripts/install.ps1` and `scripts/install.bat` to avoid Git Bash pop-ups. - Provide `scripts/install.ps1` and `scripts/install.bat` to avoid Git Bash pop-ups.
- [X] **Windows setup launcher alignment**
- Route `setup-windows.bat` through `scripts/install.bat`.
## Documentation: Fix Structural Errors ## Documentation: Fix Structural Errors

View File

@ -1,6 +1,6 @@
@echo off @echo off
REM VideoTools Windows Setup Launcher REM VideoTools Windows Setup Launcher
REM This batch file launches the PowerShell setup script REM This batch file launches the scripts installer entrypoint
echo ================================================================ echo ================================================================
echo VideoTools Windows Setup echo VideoTools Windows Setup
@ -21,8 +21,8 @@ if %ERRORLEVEL% NEQ 0 (
echo Starting setup... echo Starting setup...
echo. echo.
REM Run the PowerShell script with portable installation by default REM Run the scripts entrypoint (keeps Windows workflow consistent)
powershell -ExecutionPolicy Bypass -File "%~dp0scripts\setup-windows.ps1" -Portable call "%~dp0scripts\install.bat"
echo. echo.
pause pause