From d610ad98d666cc4f3a4bd8e97bd6daa44b168167 Mon Sep 17 00:00:00 2001 From: Jeff Wilder Date: Wed, 1 Apr 2026 22:58:53 -0700 Subject: [PATCH 1/2] host_setup - fixed wrong sleep syntax. --- setup_src/src_host/host_setup.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup_src/src_host/host_setup.ps1 b/setup_src/src_host/host_setup.ps1 index 736cade..17f7932 100644 --- a/setup_src/src_host/host_setup.ps1 +++ b/setup_src/src_host/host_setup.ps1 @@ -134,10 +134,10 @@ if ($framework) { if (-not (Test-Path "$PSScriptRoot\..\..\downloads\ffmpeg_win64")) { Invoke-WebRequest -Uri $ffmpegUrl -OutFile $ffmpegZip 2>&1 | log checkCmd($?) - sleep 1s # Wait a bit to ensure file is fully written before expanding + start-sleep -seconds 1 # Wait a bit to ensure file is fully written before expanding Expand-Archive -Path $ffmpegZip -DestinationPath "$PSScriptRoot\..\..\downloads" -Force 2>&1 | log checkCmd($?) - sleep 2s # Wait a bit to ensure all file handles are released before moving/deleting + start-sleep -seconds 2 # Wait a bit to ensure all file handles are released before moving/deleting Move-Item "$PSScriptRoot\..\..\downloads\ffmpeg-N-123073-g743df5ded9-win64-gpl" "$PSScriptRoot\..\..\downloads\ffmpeg_win64" -Force 2>&1 | log Remove-Item $ffmpegZip 2>&1 | log } From b4b61c855f32c80a02cf64659f7c34163b990af4 Mon Sep 17 00:00:00 2001 From: Jeff Wilder Date: Wed, 1 Apr 2026 23:21:14 -0700 Subject: [PATCH 2/2] ScenarioMaker - update path to embedded python. --- ScenarioMaker/ScenarioMaker.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ScenarioMaker/ScenarioMaker.cmd b/ScenarioMaker/ScenarioMaker.cmd index 6c90984..48c0362 100644 --- a/ScenarioMaker/ScenarioMaker.cmd +++ b/ScenarioMaker/ScenarioMaker.cmd @@ -1,7 +1,7 @@ @echo off pushd %~dp0 -if exist ..\python_embed\python.exe ( - ..\python_embed\python.exe ScenarioMaker.pyw %* +if exist ..\downloads\python_embed\python.exe ( + ..\downloads\python_embed\python.exe ScenarioMaker.pyw %* ) else ( python ScenarioMaker.pyw %* )