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 make the following changes: - widen column resize handles - pin the `..` directory to the top row when it is visible - add some clarification to datetime format - fix arrow keys for directory parsing to only be local - switch to using keyutil for keypresses - only use the block's dummy focus if another focus element doesn't exist - add a gray background to directory nav buttons when they are focused - typing into search box works as long as the focus is in the directory view block - add a popup in the table to notify when searching/filtering - remove original search box |
||
|---|---|---|
| .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