Skip to content

Commit f0e57a8

Browse files
committed
bump: 1.0.0-rc.1
1 parent c318cde commit f0e57a8

1 file changed

Lines changed: 38 additions & 10 deletions

File tree

src-tauri/tauri.conf.json

Lines changed: 38 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"productName": "NTP Client",
3-
"version": "1.0.0-beta.3",
3+
"version": "1.0.0-rc.1",
44
"identifier": "com.exptech.ntp-client",
55
"build": {
66
"beforeDevCommand": "bun run dev",
@@ -11,7 +11,11 @@
1111
"bundle": {
1212
"active": true,
1313
"createUpdaterArtifacts": true,
14-
"targets": ["nsis", "app", "appimage"],
14+
"targets": [
15+
"nsis",
16+
"app",
17+
"appimage"
18+
],
1519
"icon": [
1620
"icons/32x32.png",
1721
"icons/128x128.png",
@@ -24,7 +28,11 @@
2428
"minimumSystemVersion": "10.13",
2529
"entitlements": "./Entitlements.plist"
2630
},
27-
"linux": { "appimage": { "bundleMediaFramework": false } },
31+
"linux": {
32+
"appimage": {
33+
"bundleMediaFramework": false
34+
}
35+
},
2836
"windows": {
2937
"nsis": {
3038
"installerIcon": "icons/icon.ico",
@@ -52,15 +60,33 @@
5260
],
5361
"security": {
5462
"csp": {
55-
"default-src": ["'self'", "ipc:", "http://ipc.localhost"],
56-
"img-src": ["'self'", "asset:", "http://asset.localhost", "data:"],
57-
"script-src": ["'self'", "'unsafe-inline'", "'unsafe-eval'"],
58-
"style-src": ["'self'", "'unsafe-inline'"]
63+
"default-src": [
64+
"'self'",
65+
"ipc:",
66+
"http://ipc.localhost"
67+
],
68+
"img-src": [
69+
"'self'",
70+
"asset:",
71+
"http://asset.localhost",
72+
"data:"
73+
],
74+
"script-src": [
75+
"'self'",
76+
"'unsafe-inline'",
77+
"'unsafe-eval'"
78+
],
79+
"style-src": [
80+
"'self'",
81+
"'unsafe-inline'"
82+
]
5983
},
6084
"capabilities": [
6185
{
6286
"identifier": "main",
63-
"windows": ["*"],
87+
"windows": [
88+
"*"
89+
],
6490
"permissions": [
6591
"core:default",
6692
"core:window:allow-show",
@@ -81,7 +107,9 @@
81107
"endpoints": [
82108
"https://github.com/ExpTechTW/ntp-client/releases/latest/download/latest.json"
83109
],
84-
"windows": { "installMode": "passive" }
110+
"windows": {
111+
"installMode": "passive"
112+
}
85113
}
86114
}
87-
}
115+
}

0 commit comments

Comments
 (0)