mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-30 23:01:30 +01:00
An open-source, cross-platform terminal for seamless workflows
1dea7fc3ce
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [electron](https://github.com/electron/electron) from 31.2.1 to 31.3.0. <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 v31.3.0</h2> <h1>Release Notes for v31.3.0</h1> <h2>Features</h2> <ul> <li>Added <code>DownloadItem.getCurrentBytesPerSecond()</code>, <code>DownloadItem.getPercentComplete()</code>, <code>DownloadItem.getEndTime()</code>. <a href="https://redirect.github.com/electron/electron/pull/42915">#42915</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/42914">30</a>, <a href="https://redirect.github.com/electron/electron/pull/42913">32</a>)<!-- raw HTML omitted --></li> <li>Aligned failure pathway in File System Access API with upstream when attempting to open a file or directory in a blocked path. <a href="https://redirect.github.com/electron/electron/pull/42994">#42994</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/42993">32</a>)<!-- raw HTML omitted --></li> </ul> <h2>Fixes</h2> <ul> <li>Fixed a potential crash when using off screen rendering. <a href="https://redirect.github.com/electron/electron/pull/42941">#42941</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/42939">30</a>, <a href="https://redirect.github.com/electron/electron/pull/42940">32</a>)<!-- raw HTML omitted --></li> <li>Fixed an issue where <code>navigator.mediaDevices.getUserMedia</code> and <code>navigator.getUserMedia</code> should reject with a <code>NotAllowedError</code> if microphone or camera permissions have been denied at the system level on macOS. <a href="https://redirect.github.com/electron/electron/pull/42937">#42937</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/42938">30</a>, <a href="https://redirect.github.com/electron/electron/pull/42936">32</a>)<!-- raw HTML omitted --></li> <li>Fixed an issue where calling <code>BrowserWindow.setBackgroundColor</code> with some level of transparency could cause a crash. <a href="https://redirect.github.com/electron/electron/pull/42928">#42928</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/42927">32</a>)<!-- raw HTML omitted --></li> </ul> <h2>Other Changes</h2> <ul> <li>Fix: fixed the <code>npm run lint</code> not working on Windows. <a href="https://redirect.github.com/electron/electron/pull/42906">#42906</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/42905">32</a>)<!-- raw HTML omitted --></li> <li>Updated Chromium to 126.0.6478.183. <a href="https://redirect.github.com/electron/electron/pull/42942">#42942</a></li> <li>Updated Node.js to v20.15.1. <a href="https://redirect.github.com/electron/electron/pull/42839">#42839</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
---|---|---|
.github | ||
.storybook | ||
.vscode | ||
build | ||
cmd | ||
db | ||
emain | ||
frontend | ||
pkg | ||
public | ||
.editorconfig | ||
.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