Compare commits

..

No commits in common. "cfe21e786dace125e61cf94b9bb25a0404bf772b" and "b1b5412cdb33843b6deac63d80e667dcdf922ac3" have entirely different histories.

3 changed files with 1 additions and 7 deletions

View File

@ -6230,9 +6230,7 @@ func (s *appState) startConvert(status *widget.Label, btn, cancelBtn *widget.But
_ = logFile.Close()
}
s.convertCancel = nil
if err := s.executeConvertJobWithFallback(ctx, job, progressCallback, true); err == nil {
return
}
return s.executeConvertJobWithFallback(ctx, job, progressCallback, true)
}
fyne.CurrentApp().Driver().DoFromGoroutine(func() {

View File

@ -31,8 +31,6 @@ cd "$PROJECT_ROOT"
echo "🧹 Cleaning previous builds and cache..."
go clean -cache -modcache -testcache 2>/dev/null || true
rm -f "$BUILD_OUTPUT" 2>/dev/null || true
# Also clear build cache directory to avoid permission issues
rm -rf "${GOCACHE:-$HOME/.cache/go-build}" 2>/dev/null || true
echo "✓ Cache cleaned"
echo ""

View File

@ -52,8 +52,6 @@ case "$OS" in
echo "🧹 Cleaning previous builds..."
rm -f VideoTools.exe 2>/dev/null || true
# Clear Go cache to avoid permission issues
go clean -cache -modcache -testcache 2>/dev/null || true
echo "✓ Cache cleaned"
echo ""