Skip to content
This repository was archived by the owner on Jan 3, 2026. It is now read-only.

Commit 84842cf

Browse files
authored
Merge pull request #12 from CKylinMC/dev
bump to 0.4.0
2 parents c05c805 + 97b32a9 commit 84842cf

File tree

21 files changed

+1431
-266
lines changed

21 files changed

+1431
-266
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
### 基本功能
1414

15-
1. 按下快捷键(默认 `Ctrl+Shift+C`)呼出面板
15+
1. 按下快捷键(默认 `Ctrl+Shift+V`)呼出面板
1616
2. 面板将显示当前剪贴板内容的预览
1717
3. 选择需要的功能:
1818
- 统计:查看文本的字符数、行数等统计信息

components.d.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,17 @@ declare module 'vue' {
1111
KeySelector: typeof import('./src/components/KeySelector.vue')['default']
1212
NButton: typeof import('naive-ui')['NButton']
1313
NCard: typeof import('naive-ui')['NCard']
14-
NChat: typeof import('naive-ui')['NChat']
1514
NCheckbox: typeof import('naive-ui')['NCheckbox']
15+
NCollapse: typeof import('naive-ui')['NCollapse']
16+
NCollapseItem: typeof import('naive-ui')['NCollapseItem']
1617
NCollapseTransition: typeof import('naive-ui')['NCollapseTransition']
1718
NConfigProvider: typeof import('naive-ui')['NConfigProvider']
18-
NForm: typeof import('naive-ui')['NForm']
19-
NFormitem: typeof import('naive-ui')['NFormitem']
20-
NFormItem: typeof import('naive-ui')['NFormItem']
21-
NGradientText: typeof import('naive-ui')['NGradientText']
2219
NInput: typeof import('naive-ui')['NInput']
2320
NList: typeof import('naive-ui')['NList']
2421
NListItem: typeof import('naive-ui')['NListItem']
2522
NModal: typeof import('naive-ui')['NModal']
23+
NTabPane: typeof import('naive-ui')['NTabPane']
24+
NTabs: typeof import('naive-ui')['NTabs']
2625
NThing: typeof import('naive-ui')['NThing']
2726
RouterLink: typeof import('vue-router')['RouterLink']
2827
RouterView: typeof import('vue-router')['RouterView']

package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pasteme",
33
"private": true,
4-
"version": "0.3.0",
4+
"version": "0.4.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -19,16 +19,22 @@
1919
"@tauri-apps/plugin-autostart": "~2",
2020
"@tauri-apps/plugin-clipboard-manager": "~2",
2121
"@tauri-apps/plugin-global-shortcut": "~2",
22+
"@tauri-apps/plugin-http": "~2",
2223
"@tauri-apps/plugin-opener": "^2.2.5",
24+
"@tauri-apps/plugin-process": "^2.2.0",
2325
"@tauri-apps/plugin-store": "~2",
2426
"@tauri-apps/plugin-stronghold": "~2",
27+
"@tavily/core": "^0.3.1",
2528
"ai": "^4.1.41",
2629
"marked": "^15.0.7",
30+
"tailwindcss-animated": "^2.0.0",
2731
"vue": "^3.5.13",
2832
"vue-router": "4.5.0"
2933
},
3034
"devDependencies": {
3135
"@iconify-json/line-md": "^1.2.5",
36+
"@iconify-json/mdi": "^1.2.3",
37+
"@iconify-json/qlementine-icons": "^1.2.2",
3238
"@iconify-json/solar": "^1.2.2",
3339
"@tauri-apps/cli": "^2.2.7",
3440
"@vitejs/plugin-vue": "^5.2.1",
@@ -46,4 +52,4 @@
4652
"vue-tsc": "^2.2.2",
4753
"zod": "^3.24.2"
4854
}
49-
}
55+
}

src-tauri/Cargo.lock

Lines changed: 169 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pasteme"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "A simple clipboard manager"
55
authors = ["CKylinMC"]
66
edition = "2021"
@@ -26,7 +26,9 @@ serde_json = "1"
2626
mouse_position = "0.1.3"
2727
tauri-plugin-clipboard-manager = "2"
2828
tauri-plugin-store = "2"
29+
tauri-plugin-process = "2"
2930
enigo = "0.3.0"
31+
tauri-plugin-http = { version = "2", features = ["unsafe-headers"] }
3032

3133
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
3234
tauri-plugin-autostart = "2"

src-tauri/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ fn main() {
77
windows = windows.app_manifest(include_str!("manifest.xml"));
88
tauri_build::try_build(tauri_build::Attributes::new().windows_attributes(windows))
99
.expect("failed to run build script");
10-
}
10+
}

0 commit comments

Comments
 (0)