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: taskkill /T vor child.kill() – Python-Child überlebt nicht mehr
child.kill() tötete nur den PyInstaller-Bootloader (Parent); der
Python/uvicorn-Child-Prozess wurde zur Waise und lief weiter.
Lösung: Handle droppen, dann taskkill /F /T /PID für den ganzen Baum.
onCloseRequested ohne preventDefault – App schließt sofort.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: src/frontend/src/data/changelog.ts
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,14 @@ export type ChangelogVersion = {
22
22
}
23
23
24
24
exportconstCHANGELOG: ChangelogVersion[]=[
25
+
{
26
+
version: 'v0.1.21',
27
+
datum: 'März 2026',
28
+
eintraege: [
29
+
{typ: 'fix',text: 'App schließt wieder sofort – kein preventDefault mehr im Close-Handler'},
30
+
{typ: 'fix',text: 'Backend-Prozess wird jetzt zuverlässig beendet – taskkill /T läuft jetzt VOR dem child.kill(), damit der Python-Child-Prozess (PyInstaller) nicht als Waise weiterläuft'},
0 commit comments