mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-06 06:58:21 +00:00
An open-source, AI-integrated, cross-platform terminal for seamless workflows
Bumps the electron group with 2 updates: [electron](https://github.com/electron/electron) and [electron-builder](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder). Updates `electron` from 32.0.1 to 32.0.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron/electron/releases">electron's releases</a>.</em></p> <blockquote> <h2>electron v32.0.2</h2> <h1>Release Notes for v32.0.2</h1> <h2>Fixes</h2> <ul> <li>Fixed <code>MenuItem.click</code> handler not setting <code>focusedWindow</code> parameter when focused window is a <code>BaseWindow</code>. <a href="https://redirect.github.com/electron/electron/pull/43437">#43437</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/43439">31</a>, <a href="https://redirect.github.com/electron/electron/pull/43438">33</a>)<!-- raw HTML omitted --></li> <li>Fixed an issue where <code>BaseWindow.setTouchBar</code> didn't work as expected. <a href="https://redirect.github.com/electron/electron/pull/43421">#43421</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/43419">30</a>, <a href="https://redirect.github.com/electron/electron/pull/43420">31</a>, <a href="https://redirect.github.com/electron/electron/pull/43422">33</a>)<!-- raw HTML omitted --></li> <li>Fixed bug where camera permissions affected screen sharing. <a href="https://redirect.github.com/electron/electron/pull/43544">#43544</a></li> <li>Fixed devtools to allow restoring saved dock state on Linux when WCO is enabled. <a href="https://redirect.github.com/electron/electron/pull/43501">#43501</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/43500">31</a>, <a href="https://redirect.github.com/electron/electron/pull/43499">33</a>)<!-- raw HTML omitted --></li> <li>Fixed electron app in ozone/wayland not being focused when launched from another app. <a href="https://redirect.github.com/electron/electron/pull/43548">#43548</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/43547">31</a>, <a href="https://redirect.github.com/electron/electron/pull/43546">33</a>)<!-- raw HTML omitted --></li> </ul> <h2>Other Changes</h2> <ul> <li>Updated Chromium to 128.0.6613.84. <a href="https://redirect.github.com/electron/electron/pull/43425">#43425</a></li> </ul> <h2>Documentation</h2> <ul> <li>Documentation changes: <a href="https://redirect.github.com/electron/electron/pull/43459">#43459</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|---|---|---|
| .github | ||
| .storybook | ||
| .vscode | ||
| build | ||
| cmd | ||
| db | ||
| emain | ||
| frontend | ||
| pkg | ||
| public | ||
| scripts/artifacts | ||
| .editorconfig | ||
| .gitattributes | ||
| .gitignore | ||
| .prettierignore | ||
| .yarnrc.yml | ||
| electron-builder.config.cjs | ||
| electron.vite.config.ts | ||
| eslint.config.js | ||
| go.mod | ||
| go.sum | ||
| index.html | ||
| LICENSE | ||
| package.json | ||
| prettier.config.cjs | ||
| README.md | ||
| Taskfile.yml | ||
| tsconfig.json | ||
| version.cjs | ||
| vitest.config.ts | ||
| yarn.lock | ||
The Next Wave
Prereqs:
You'll need to install "task" (which we're using as a build/run system):
brew install go-task
On first checkout:
yarn
go mod tidy
Then, run the following command to start the app using the Vite dev server (this will enable Hot Module Reloading):
task electron:dev
To run the app without the dev server, run the following instead:
task electron:start