Skip to content

Commit

Permalink
feat(notification): ✨ 新增notification系统通知 (#127)
Browse files Browse the repository at this point in the history
优化一些提示和逻辑
  • Loading branch information
nongyehong authored Dec 26, 2024
1 parent 187071b commit 77373e3
Show file tree
Hide file tree
Showing 24 changed files with 839 additions and 224 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Run tests with coverage
run: pnpm coverage

- name: Upload coverage to Codecov
- name: Upload coverage to Codecov
uses: ./
with:
file: ./coverage/coverage-final.json
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"@tauri-apps/plugin-clipboard-manager": "2.2.0",
"@tauri-apps/plugin-fs": "~2",
"@tauri-apps/plugin-http": "2.0.1",
"@tauri-apps/plugin-notification": "^2.2.0",
"@tauri-apps/plugin-os": "2.0.0",
"@tauri-apps/plugin-process": "2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
Expand Down
14 changes: 12 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

159 changes: 155 additions & 4 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ tauri-plugin-clipboard-manager = "2.2.0"
tauri-plugin-updater = "2.3.0"
tauri-plugin-sql = { version = "2", features = ["sqlite"] }
tauri-plugin-single-instance = "2.2.0"
tauri-plugin-notification = "2.2.0"
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
tauri-plugin-autostart = "2.2.0"
lazy_static = "1.4"
Expand Down
Loading

0 comments on commit 77373e3

Please sign in to comment.