Skip to content

0.3.2

Choose a tag to compare

@github-actions github-actions released this 06 May 19:00
· 159 commits to main since this release
fix: convert preload to CJS to fix control panel IPC

preload.js used ESM import syntax but Electron preload scripts must be
CommonJS. With package.json "type":"module", Electron couldn't load it,
causing window.api to be undefined — breaking all buttons and log display.
Renamed to preload.cjs with require() syntax and updated the reference in
main.js.