You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Replace Unicode symbols with ASCII for Windows CI compatibility (v1.0.2)
Fixes Unicode encoding errors in GitHub Actions Windows runners that
use cp1252 encoding which cannot handle Unicode checkmarks and crosses.
Changes:
- Replaced all ✓ with [OK] in install_ffmpeg.py and build.py
- Replaced all ✗ with [ERROR] in install_ffmpeg.py and build.py
- Replaced ⚠ with [WARNING] in build.py
- Added PYTHONIOENCODING=utf-8 to workflow FFmpeg install step
- Bumped version to 1.0.2
- Updated CHANGELOG.md with fix details
This ensures the build scripts work correctly on Windows GitHub Actions
runners without encoding errors.
Fixes the UnicodeEncodeError that was blocking automated releases.
0 commit comments