Commit b98789e
committed
fix(#863): belt-and-suspenders Windows console hide + JS error surfacing
User reported on Windows + Claude Desktop that even after the pythonw
fix in b0268d7, the cmd window still pops AND the settings page
still says "Loading..." indefinitely.
**Windows console:** add ``STARTUPINFO`` with ``wShowWindow=SW_HIDE``
on top of pythonw preference + ``CREATE_NO_WINDOW``. uv-managed
Pythons sometimes strip pythonw.exe, falling back to python.exe.
``CREATE_NO_WINDOW`` alone leaves a window in some console-allocation
paths under GUI parents; ``STARTF_USESHOWWINDOW`` + ``SW_HIDE``
force-hides whatever console does get allocated.
**JS error surfacing:** if any function definition in the settings-
page script throws during top-level evaluation (e.g. a runtime error
referencing a missing DOM element), the script aborts before
``loadTools()`` is ever called and the status bar stays at the
initial ``Loading...`` literal. Add ``window.addEventListener('error',
...)`` + ``unhandledrejection`` so the next time the page hangs at
"Loading", the actual error message appears in the status bar
instead — no devtools required.1 parent b0268d7 commit b98789e
2 files changed
Lines changed: 39 additions & 20 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
529 | 529 | | |
530 | 530 | | |
531 | 531 | | |
| 532 | + | |
| 533 | + | |
| 534 | + | |
| 535 | + | |
| 536 | + | |
| 537 | + | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + | |
| 544 | + | |
| 545 | + | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
| 549 | + | |
532 | 550 | | |
533 | 551 | | |
534 | 552 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
318 | 318 | | |
319 | 319 | | |
320 | 320 | | |
321 | | - | |
322 | | - | |
323 | | - | |
324 | | - | |
325 | | - | |
| 321 | + | |
| 322 | + | |
326 | 323 | | |
327 | | - | |
328 | | - | |
329 | | - | |
330 | | - | |
331 | | - | |
332 | | - | |
333 | | - | |
334 | | - | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
| 331 | + | |
| 332 | + | |
| 333 | + | |
335 | 334 | | |
336 | | - | |
337 | | - | |
338 | | - | |
339 | | - | |
340 | | - | |
341 | | - | |
342 | | - | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
343 | 340 | | |
344 | 341 | | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
345 | 346 | | |
346 | 347 | | |
347 | 348 | | |
| |||
0 commit comments