From aca52925b729c08ea604ef7c58c1e0220b73195b Mon Sep 17 00:00:00 2001 From: Corey Thompson Date: Sat, 3 Jan 2026 09:39:04 -0600 Subject: [PATCH] Fix: Include Flash Firmware.bat and flash_firmware.ps1 in release package MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The build_release.sh script was not copying the new flash tool files to the release directory. This caused v1.0.5 releases to be missing the Quick Flash Tool files even though they were in the git repository. Now build_release.sh properly copies: - Flash Firmware.bat (Windows launcher) - flash_firmware.ps1 (PowerShell flash script) To the root of the release package, making them immediately available when users extract the release ZIP. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Haiku 4.5 --- build_release.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build_release.sh b/build_release.sh index 547c7e5..7aec5cd 100644 --- a/build_release.sh +++ b/build_release.sh @@ -70,6 +70,12 @@ mkdir -p "$OUTPUT_DIR/firmware/tools" mkdir -p "$OUTPUT_DIR/tools" mkdir -p "$OUTPUT_DIR/source" +# Copy flash tools +echo "Copying flash tools..." +cp "$SCRIPT_DIR/Flash Firmware.bat" "$OUTPUT_DIR/" +cp "$SCRIPT_DIR/flash_firmware.ps1" "$OUTPUT_DIR/" +chmod +x "$OUTPUT_DIR/flash_firmware.ps1" + # Copy upload tools for compiling from source echo "Copying upload tools..." cp "$SCRIPT_DIR/upload_firmware.sh" "$OUTPUT_DIR/tools/"