mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-05 22:48:48 +00:00
An open-source, AI-integrated, cross-platform terminal for seamless workflows
This makes the following changes - allow directory rows to overflow their container on resize (allowing scroll as a temporary test) - fix directory width to account for resizer width - add ellipsis to name column on table resize - add the rightmost resizer back (more as a temporary test) - do not search when the filtered contents are empty - cap the index to the end of the list of the number of entries becomes less than the current index - do not redo backend call on filter or search of directory results - add letter spacing on header row |
||
|---|---|---|
| .github/workflows | ||
| .storybook | ||
| .vscode | ||
| build | ||
| cmd | ||
| db | ||
| emain | ||
| frontend | ||
| pkg | ||
| public | ||
| .editorconfig | ||
| .gitignore | ||
| .prettierignore | ||
| .yarnrc.yml | ||
| electron.vite.config.ts | ||
| eslint.config.js | ||
| go.mod | ||
| go.sum | ||
| index.html | ||
| 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