Skip to content

Commit 2b78a93

Browse files
author
Junhui Tong
committed
update readme
1 parent 9665b2e commit 2b78a93

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

README.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Excel View - helper UI for navigating long lines in Excel
22

3+
> This app is powered by `timepp/dui`. Refer to https://jsr.io/@timepp/dui for how to develop a similar app.
4+
35
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.
46

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

3335
## Development
34-
35-
### TODO
36-
37-
- favicon
38-
- use websocket to communicate between frontend/backend, so that we can get rid of the polling and have better detection on UI exits

jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@timepp/ev",
3-
"version": "0.1.13",
3+
"version": "0.1.14",
44
"exports": "./launch.ts"
55
}

launch.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async function main() {
2828

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

0 commit comments

Comments
 (0)