Skip to content

Commit d9f6970

Browse files
committed
feat: initial support for system tray (closes #1)
but we have to implement the health information text generation without any window showing Signed-off-by: instructr13 <instructr13@gmail.com>
1 parent 60fe0b7 commit d9f6970

25 files changed

+1415
-731
lines changed

Cargo.lock

+75-40
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ members = [
88

99
[profile.release]
1010
lto = true
11-
incremental = true
1211
panic = "abort"
1312
strip = true

gui/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<html lang="ja">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
65
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
76
<title>Hitokoto</title>
87
</head>

gui/package.json

+16-13
Original file line numberDiff line numberDiff line change
@@ -14,38 +14,41 @@
1414
"format": "prettier -w ."
1515
},
1616
"dependencies": {
17-
"@chakra-ui/icons": "^2.0.10",
18-
"@chakra-ui/provider": "^2.0.18",
19-
"@chakra-ui/react": "^2.3.4",
20-
"@chakra-ui/styled-system": "^2.3.3",
21-
"@chakra-ui/system": "^2.2.11",
17+
"@chakra-ui/icons": "^2.0.11",
18+
"@chakra-ui/provider": "^2.0.19",
19+
"@chakra-ui/react": "^2.3.5",
20+
"@chakra-ui/styled-system": "^2.3.4",
21+
"@chakra-ui/system": "^2.2.12",
2222
"@emotion/react": "^11.10.4",
2323
"@emotion/styled": "^11.10.4",
2424
"@hookform/resolvers": "^2.9.8",
2525
"@tauri-apps/api": "^1.1.0",
26-
"framer-motion": "^7.5.1",
26+
"dot-object": "^2.1.4",
27+
"framer-motion": "^7.5.3",
2728
"nprogress": "^0.2.0",
2829
"react": "^18.2.0",
2930
"react-dom": "^18.2.0",
30-
"react-hook-form": "^7.36.1",
31-
"react-router-dom": "^6.4.1",
31+
"react-hook-form": "^7.37.0",
32+
"react-router-dom": "^6.4.2",
3233
"react-toastify": "^9.0.8",
3334
"react-use": "^17.4.0",
35+
"tauri-settings": "^0.1.2",
3436
"zod": "^3.19.1"
3537
},
3638
"devDependencies": {
3739
"@babel/core": "^7.19.3",
3840
"@tauri-apps/cli": "^1.1.1",
39-
"@types/node": "^18.7.23",
41+
"@types/dot-object": "^2.1.2",
42+
"@types/node": "^18.8.3",
4043
"@types/nprogress": "^0.2.0",
4144
"@types/react": "^18.0.21",
4245
"@types/react-dom": "^18.0.6",
43-
"@typescript-eslint/eslint-plugin": "^5.38.1",
44-
"@typescript-eslint/parser": "^5.38.1",
46+
"@typescript-eslint/eslint-plugin": "^5.39.0",
47+
"@typescript-eslint/parser": "^5.39.0",
4548
"@vitejs/plugin-react": "^2.1.0",
4649
"eslint": "8.23.0",
4750
"eslint-import-resolver-typescript": "^3.5.1",
48-
"eslint-plugin-chakra-ui": "^0.7.4",
51+
"eslint-plugin-chakra-ui": "^0.7.5",
4952
"eslint-plugin-eslint-comments": "^3.2.0",
5053
"eslint-plugin-import": "npm:eslint-plugin-i@^2.26.0-2",
5154
"eslint-plugin-node": "^11.1.0",
@@ -62,7 +65,7 @@
6265
"rollup-plugin-visualizer": "^5.8.2",
6366
"sass": "^1.55.0",
6467
"typescript": "latest",
65-
"vite": "^3.1.4",
68+
"vite": "^3.1.6",
6669
"vite-plugin-checker": "^0.5.1",
6770
"vite-plugin-progress": "^0.0.4",
6871
"vite-plugin-top-level-await": "^1.1.1",

0 commit comments

Comments
 (0)