-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtauri.conf.json
More file actions
85 lines (85 loc) · 1.85 KB
/
Copy pathtauri.conf.json
File metadata and controls
85 lines (85 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"$schema": "https://schema.tauri.app/config/2.0.0",
"productName": "LifeTracker",
"version": "0.1.0",
"identifier": "com.lifetracker.app",
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "pnpm build",
"devUrl": "http://localhost:1420",
"frontendDist": "./dist"
},
"app": {
"windows": [
{
"title": "LifeTracker",
"width": 1280,
"height": 720,
"minWidth": 360,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"decorations": false,
"alwaysOnTop": false,
"skipTaskbar": false,
"center": true,
"maximized": false,
"visible": false
}
],
"security": {
"csp": null,
"capabilities": ["default"]
}
},
"bundle": {
"active": true,
"targets": "all",
"category": "Productivity",
"copyright": "Copyright (c) 2025 LifeTracker Team",
"shortDescription": "综合性的生活追踪和管理工具",
"longDescription": "LifeTracker 是一个功能强大的综合生活追踪工具,帮助您管理时间、记录财务、写日记、打卡等日常生活的各个方面。支持任务分类、数据统计、导入导出等功能,让您的生活更有条理。",
"icon": [
"icons/32x32.png",
"icons/64x64.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico",
"icons/icon.png"
],
"resources": [],
"externalBin": [],
"createUpdaterArtifacts": false,
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": null,
"tsp": false,
"wix": {
"language": "zh-CN",
"template": null
}
},
"linux": {
"deb": {
"depends": []
}
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "10.11",
"exceptionDomain": ""
},
"android": {
"minSdkVersion": 24
}
},
"plugins": {
"shell": {
"open": true
},
"dialog": null,
"fs": null
}
}