-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtauri.conf.json
More file actions
106 lines (106 loc) · 2.72 KB
/
tauri.conf.json
File metadata and controls
106 lines (106 loc) · 2.72 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"$schema": "https://schema.tauri.app/config/2.0.6",
"productName": "Blink Eye",
"version": "2.7.6",
"identifier": "com.blinkeye.app",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Blink Eye",
"width": 1200,
"height": 750,
"center": true,
"maxHeight": 750,
"maxWidth": 1200,
"minHeight": 750,
"minWidth": 1200,
"decorations": false
}
],
"security": {
"csp": "null",
"assetProtocol": {
"enable": true,
"scope": ["$RESOURCE/*", "$APPDATA/blink_eye_license.db", "$APPDATA/*"]
}
}
},
"bundle": {
"createUpdaterArtifacts": true,
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico",
"icons/icon.png"
],
"resources": {
"assets/done.mp3": "done.mp3",
"assets/before_alert_sound.mp3": "before_alert_sound.mp3"
},
"externalBin": [],
"copyright": "Noman Dhoni",
"category": "Productivity",
"shortDescription": "A minimalist eye care reminder app for Windows, macOS, and Linux.",
"longDescription": "Blink Eye an Open Source minimalist eye care reminder app. To reduce eye strain, featuring reminder with timers, full-screen popups. Based on 20-20-20 rule.",
"publisher": "Noman Dhoni",
"license": "GNU General Public License (GPL) v3 + Additional Commercial Restrictions",
"licenseFile": "LICENSE.txt",
"linux": {
"appimage": {
"bundleMediaFramework": false,
"files": {}
},
"deb": {
"files": {}
},
"rpm": {
"epoch": 0,
"files": {},
"release": "1"
}
},
"macOS": {
"signingIdentity": "-",
"dmg": {
"appPosition": {
"x": 180,
"y": 170
},
"applicationFolderPosition": {
"x": 480,
"y": 170
},
"windowSize": {
"height": 750,
"width": 1200
}
}
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
"nsis": {
"installerIcon": "icons/icon.ico"
}
}
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEQwOTIzMUVGMEMyRTA3OTIKUldTU0J5NE03ekdTMEovWHlmMzY2dncrWU4rMG9yMGpzSHA3SjFtdGNiVXZhMmJYUjVBaHFoMU4K",
"endpoints": [
"https://github.com/nomandhoni-cs/blink-eye/releases/latest/download/latest.json"
]
}
}
}