Hotfix: Launch crash on v1.3.12+claude1.1.4088
This release fixes a regression that prevented the app from launching.
What broke: Claude Desktop v1.1.4088 changed a minified variable name from oe to $e. The $ character isn't matched by \w in regex, so build patches were inserting code mid-variable, producing invalid JavaScript like $let _trayStartTime=Date.now(); — a SyntaxError that crashed the app on startup.
What's fixed: Updated grep and sed patterns to handle $-prefixed variable names correctly. (#253)
Thanks to @MichaelMKenny for diagnosing the root cause and filing the detailed bug report in #252.