Sync from development - prepare for v0.5.0

This commit is contained in:
Omni
2026-03-13 14:43:25 +00:00
parent 411addeea2
commit 3556914560
179 changed files with 7126 additions and 1806 deletions

View File

@@ -143,7 +143,11 @@ class TTWInstallationThread(QThread):
elif returncode == 0:
self.installation_finished.emit(True, "TTW installation completed successfully!")
else:
self.installation_finished.emit(False, f"TTW installation failed with exit code {returncode}")
self.installation_finished.emit(
False,
f"TTW installer exited unexpectedly (code {returncode}). "
"Review the recent console output for the failing step."
)
except Exception as e:
import traceback