project-switch v0.20.2
A WQL syntax fix for the hotkey kill
When the hotkey fires, it kills any project-switch.exe still hanging around before launching a fresh one — but it has to leave the webview process alone, since that’s a long-lived window the user is actually looking at. The exclusion was written as CommandLine not like '%webview%', which reads fine in English and is not valid WQL. Negation goes in front of the operand, not between the operand and the operator, so the whole where clause was rejected and nothing got killed at all.
Swapping it to not CommandLine like '%webview%' fixes the query, so stale launcher processes are cleaned up again while the webview survives. I also flipped pull: true in assist.yml so commits pull before pushing.