Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Junhui Tong committed Sep 9, 2024
1 parent 9665b2e commit 2b78a93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Excel View - helper UI for navigating long lines in Excel

> This app is powered by `timepp/dui`. Refer to https://jsr.io/@timepp/dui for how to develop a similar app.
This is a tool to help you navigate long lines in Excel. It keeps track the active cell and automatically get the entire row data and display it in a separate window. With this you can easily see all columns in a row without scrolling left and right.

Prerequisite:
Expand Down Expand Up @@ -31,8 +33,3 @@ Below is the screenshot with fake data:
![alt text](screenshot.png)

## Development

### TODO

- favicon
- use websocket to communicate between frontend/backend, so that we can get rid of the polling and have better detection on UI exits
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@timepp/ev",
"version": "0.1.13",
"version": "0.1.14",
"exports": "./launch.ts"
}
2 changes: 1 addition & 1 deletion launch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async function main() {

let webPort = apiPort
let frontend: vite.ViteDevServer | null = null
// Use Vite for local development
// If it's local development, use vite to serve the frontend so that we can use hot reload
if (!args.release && import.meta.url.startsWith('file://')) {
frontend = await vite.createServer()
webPort = 5173
Expand Down

0 comments on commit 2b78a93

Please sign in to comment.