chore: update version to 0.2.10 and enhance installation scripts and changelog

This commit is contained in:
HueByte
2026-04-20 17:42:03 +02:00
parent 335cfcc28a
commit 000764fdb4
7 changed files with 34 additions and 4 deletions
+9
View File
@@ -0,0 +1,9 @@
# v0.2.10
Follow-up patch release for v0.2.9 addressing regressions in the auto-updater flow.
## Bug Fixes
- Fix update progress dialog freezing / not repainting — progress callbacks now run on the UI thread so the download and extraction percentage actually updates while an update is in progress
- Fix pre-update backup failing when a Serilog-held log file is locked — `UpdateBackupService` now enumerates files manually, skips the `logs/` directory and `.log` files, and logs-and-continues on `IOException`/`UnauthorizedAccessException` instead of aborting the whole backup
- Simplify update progress dispatch — remove redundant `Application.Invoke` wrappers around progress updates that are already called from the UI thread (introduced while fixing the freeze above)