@tauri-apps/cli 1.5.14 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/audit-ci.jsonc +6 -0
- package/package.json +13 -12
- package/schema.json +325 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.6.1]
|
|
4
|
+
|
|
5
|
+
### New Features
|
|
6
|
+
|
|
7
|
+
- [`0aa0378c8`](https://www.github.com/tauri-apps/tauri/commit/0aa0378c8d632ce186ddd5df8b4bddd8853ceeaf) ([#10199](https://www.github.com/tauri-apps/tauri/pull/10199) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) Added a configuration option to disable hardened runtime on macOS codesign.
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- [`212001c1d`](https://www.github.com/tauri-apps/tauri/commit/212001c1dfda1497c870eb91087cfb190f433e57) ([#10233](https://www.github.com/tauri-apps/tauri/pull/10233) by [@github-actions](https://www.github.com/tauri-apps/tauri/../../github-actions)) Fix cli failing to rename application when using cargo `--target-dir` flag with `tauri build` or `tauri dev`
|
|
12
|
+
|
|
13
|
+
### Dependencies
|
|
14
|
+
|
|
15
|
+
- Upgraded to `tauri-cli@1.6.1`
|
|
16
|
+
|
|
17
|
+
## \[1.6.0]
|
|
18
|
+
|
|
19
|
+
### New Features
|
|
20
|
+
|
|
21
|
+
- [`253595a22`](https://www.github.com/tauri-apps/tauri/commit/253595a22d8659a1cb199bfc423e988ea82191e6) ([#9809](https://www.github.com/tauri-apps/tauri/pull/9809)) Add RPM packaging
|
|
22
|
+
- [`a301be52d`](https://www.github.com/tauri-apps/tauri/commit/a301be52d276f1e99316d23b4f0a8e458e29bc35) ([#9914](https://www.github.com/tauri-apps/tauri/pull/9914)) Use cargo's target directory to store and cache bundling tools when `bundle > useLocalToolsDir` option is active.
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
- [`08f57efef`](https://www.github.com/tauri-apps/tauri/commit/08f57efefdd6dac10277bfc5f71eba0ca84a64c4) ([#10136](https://www.github.com/tauri-apps/tauri/pull/10136)) Fix parsing of cargo profile when using `--profile=<profile>` syntax.
|
|
27
|
+
- [`674accad7`](https://www.github.com/tauri-apps/tauri/commit/674accad75fccac6f9adc515a863f9d59efbee57) ([#10015](https://www.github.com/tauri-apps/tauri/pull/10015)) Add missing dependency `libayatana-appindicator3.so.1` for rpm package.
|
|
28
|
+
|
|
29
|
+
### Dependencies
|
|
30
|
+
|
|
31
|
+
- Upgraded to `tauri-cli@1.6.0`
|
|
32
|
+
|
|
3
33
|
## \[1.5.14]
|
|
4
34
|
|
|
5
35
|
### Dependencies
|
package/audit-ci.jsonc
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -47,7 +47,8 @@
|
|
|
47
47
|
"prettier": "2.8.8"
|
|
48
48
|
},
|
|
49
49
|
"resolutions": {
|
|
50
|
-
"semver": ">=7.5.2"
|
|
50
|
+
"semver": ">=7.5.2",
|
|
51
|
+
"braces": "3.0.3"
|
|
51
52
|
},
|
|
52
53
|
"engines": {
|
|
53
54
|
"node": ">= 10"
|
|
@@ -68,15 +69,15 @@
|
|
|
68
69
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
69
70
|
},
|
|
70
71
|
"optionalDependencies": {
|
|
71
|
-
"@tauri-apps/cli-win32-x64-msvc": "1.
|
|
72
|
-
"@tauri-apps/cli-darwin-x64": "1.
|
|
73
|
-
"@tauri-apps/cli-linux-x64-gnu": "1.
|
|
74
|
-
"@tauri-apps/cli-darwin-arm64": "1.
|
|
75
|
-
"@tauri-apps/cli-linux-arm64-gnu": "1.
|
|
76
|
-
"@tauri-apps/cli-linux-arm64-musl": "1.
|
|
77
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "1.
|
|
78
|
-
"@tauri-apps/cli-linux-x64-musl": "1.
|
|
79
|
-
"@tauri-apps/cli-win32-ia32-msvc": "1.
|
|
80
|
-
"@tauri-apps/cli-win32-arm64-msvc": "1.
|
|
72
|
+
"@tauri-apps/cli-win32-x64-msvc": "1.6.1",
|
|
73
|
+
"@tauri-apps/cli-darwin-x64": "1.6.1",
|
|
74
|
+
"@tauri-apps/cli-linux-x64-gnu": "1.6.1",
|
|
75
|
+
"@tauri-apps/cli-darwin-arm64": "1.6.1",
|
|
76
|
+
"@tauri-apps/cli-linux-arm64-gnu": "1.6.1",
|
|
77
|
+
"@tauri-apps/cli-linux-arm64-musl": "1.6.1",
|
|
78
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "1.6.1",
|
|
79
|
+
"@tauri-apps/cli-linux-x64-musl": "1.6.1",
|
|
80
|
+
"@tauri-apps/cli-win32-ia32-msvc": "1.6.1",
|
|
81
|
+
"@tauri-apps/cli-win32-arm64-msvc": "1.6.1"
|
|
81
82
|
}
|
|
82
83
|
}
|
package/schema.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"title": "Config",
|
|
4
|
-
"description": "The Tauri configuration object. It is read from a file where you can define your frontend assets, configure the bundler, enable the app updater, define a system tray, enable APIs via the allowlist and more.\n\nThe configuration file is generated by the [`tauri init`](https://tauri.app/v1/api/cli#init) command that lives in your Tauri application source directory (src-tauri).\n\nOnce generated, you may modify it at will to customize your Tauri application.\n\n## File Formats\n\nBy default, the configuration is defined as a JSON file named `tauri.conf.json`.\n\nTauri also supports JSON5 and TOML files via the `config-json5` and `config-toml` Cargo features, respectively. The JSON5 file name must be either `tauri.conf.json` or `tauri.conf.json5`. The TOML file name is `Tauri.toml`.\n\n## Platform-Specific Configuration\n\nIn addition to the default configuration file, Tauri can read a platform-specific configuration from `tauri.linux.conf.json`, `tauri.windows.conf.json`, and `tauri.macos.conf.json` (or `Tauri.linux.toml`, `Tauri.windows.toml` and `Tauri.macos.toml` if the `Tauri.toml` format is used), which gets merged with the main configuration object.\n\n## Configuration Structure\n\nThe configuration is composed of the following objects:\n\n- [`package`](#packageconfig): Package settings - [`tauri`](#tauriconfig): The Tauri config - [`build`](#buildconfig): The build configuration - [`plugins`](#pluginconfig): The plugins config\n\
|
|
4
|
+
"description": "The Tauri configuration object. It is read from a file where you can define your frontend assets, configure the bundler, enable the app updater, define a system tray, enable APIs via the allowlist and more.\n\nThe configuration file is generated by the [`tauri init`](https://tauri.app/v1/api/cli#init) command that lives in your Tauri application source directory (src-tauri).\n\nOnce generated, you may modify it at will to customize your Tauri application.\n\n## File Formats\n\nBy default, the configuration is defined as a JSON file named `tauri.conf.json`.\n\nTauri also supports JSON5 and TOML files via the `config-json5` and `config-toml` Cargo features, respectively. The JSON5 file name must be either `tauri.conf.json` or `tauri.conf.json5`. The TOML file name is `Tauri.toml`.\n\n## Platform-Specific Configuration\n\nIn addition to the default configuration file, Tauri can read a platform-specific configuration from `tauri.linux.conf.json`, `tauri.windows.conf.json`, and `tauri.macos.conf.json` (or `Tauri.linux.toml`, `Tauri.windows.toml` and `Tauri.macos.toml` if the `Tauri.toml` format is used), which gets merged with the main configuration object.\n\n## Configuration Structure\n\nThe configuration is composed of the following objects:\n\n- [`package`](#packageconfig): Package settings - [`tauri`](#tauriconfig): The Tauri config - [`build`](#buildconfig): The build configuration - [`plugins`](#pluginconfig): The plugins config\n\nExample tauri.config.json file:\n\n```json { \"build\": { \"beforeBuildCommand\": \"\", \"beforeDevCommand\": \"\", \"devPath\": \"../dist\", \"distDir\": \"../dist\" }, \"package\": { \"productName\": \"tauri-app\", \"version\": \"0.1.0\" }, \"tauri\": { \"allowlist\": { \"all\": true }, \"bundle\": {}, \"security\": { \"csp\": null }, \"updater\": { \"active\": false }, \"windows\": [ { \"fullscreen\": false, \"height\": 600, \"resizable\": true, \"title\": \"Tauri App\", \"width\": 800 } ] } } ```",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"$schema": {
|
|
@@ -139,17 +139,39 @@
|
|
|
139
139
|
"deb": {
|
|
140
140
|
"files": {}
|
|
141
141
|
},
|
|
142
|
+
"dmg": {
|
|
143
|
+
"appPosition": {
|
|
144
|
+
"x": 180,
|
|
145
|
+
"y": 170
|
|
146
|
+
},
|
|
147
|
+
"applicationFolderPosition": {
|
|
148
|
+
"x": 480,
|
|
149
|
+
"y": 170
|
|
150
|
+
},
|
|
151
|
+
"windowSize": {
|
|
152
|
+
"height": 400,
|
|
153
|
+
"width": 660
|
|
154
|
+
}
|
|
155
|
+
},
|
|
142
156
|
"icon": [],
|
|
143
157
|
"identifier": "",
|
|
144
158
|
"macOS": {
|
|
159
|
+
"hardenedRuntime": true,
|
|
145
160
|
"minimumSystemVersion": "10.13"
|
|
146
161
|
},
|
|
162
|
+
"rpm": {
|
|
163
|
+
"epoch": 0,
|
|
164
|
+
"files": {},
|
|
165
|
+
"release": "1"
|
|
166
|
+
},
|
|
147
167
|
"targets": "all",
|
|
168
|
+
"useLocalToolsDir": false,
|
|
148
169
|
"windows": {
|
|
149
170
|
"allowDowngrades": true,
|
|
150
171
|
"certificateThumbprint": null,
|
|
151
172
|
"digestAlgorithm": null,
|
|
152
173
|
"nsis": null,
|
|
174
|
+
"signCommand": null,
|
|
153
175
|
"timestampUrl": null,
|
|
154
176
|
"tsp": false,
|
|
155
177
|
"webviewFixedRuntimePath": null,
|
|
@@ -278,17 +300,39 @@
|
|
|
278
300
|
"deb": {
|
|
279
301
|
"files": {}
|
|
280
302
|
},
|
|
303
|
+
"dmg": {
|
|
304
|
+
"appPosition": {
|
|
305
|
+
"x": 180,
|
|
306
|
+
"y": 170
|
|
307
|
+
},
|
|
308
|
+
"applicationFolderPosition": {
|
|
309
|
+
"x": 480,
|
|
310
|
+
"y": 170
|
|
311
|
+
},
|
|
312
|
+
"windowSize": {
|
|
313
|
+
"height": 400,
|
|
314
|
+
"width": 660
|
|
315
|
+
}
|
|
316
|
+
},
|
|
281
317
|
"icon": [],
|
|
282
318
|
"identifier": "",
|
|
283
319
|
"macOS": {
|
|
320
|
+
"hardenedRuntime": true,
|
|
284
321
|
"minimumSystemVersion": "10.13"
|
|
285
322
|
},
|
|
323
|
+
"rpm": {
|
|
324
|
+
"epoch": 0,
|
|
325
|
+
"files": {},
|
|
326
|
+
"release": "1"
|
|
327
|
+
},
|
|
286
328
|
"targets": "all",
|
|
329
|
+
"useLocalToolsDir": false,
|
|
287
330
|
"windows": {
|
|
288
331
|
"allowDowngrades": true,
|
|
289
332
|
"certificateThumbprint": null,
|
|
290
333
|
"digestAlgorithm": null,
|
|
291
334
|
"nsis": null,
|
|
335
|
+
"signCommand": null,
|
|
292
336
|
"timestampUrl": null,
|
|
293
337
|
"tsp": false,
|
|
294
338
|
"webviewFixedRuntimePath": null,
|
|
@@ -1046,7 +1090,7 @@
|
|
|
1046
1090
|
"type": "boolean"
|
|
1047
1091
|
},
|
|
1048
1092
|
"targets": {
|
|
1049
|
-
"description": "The bundle targets, currently supports [\"deb\", \"appimage\", \"nsis\", \"msi\", \"app\", \"dmg\", \"updater\"] or \"all\".",
|
|
1093
|
+
"description": "The bundle targets, currently supports [\"deb\", \"rpm\", \"appimage\", \"nsis\", \"msi\", \"app\", \"dmg\", \"updater\"] or \"all\".",
|
|
1050
1094
|
"default": "all",
|
|
1051
1095
|
"allOf": [
|
|
1052
1096
|
{
|
|
@@ -1112,6 +1156,11 @@
|
|
|
1112
1156
|
"null"
|
|
1113
1157
|
]
|
|
1114
1158
|
},
|
|
1159
|
+
"useLocalToolsDir": {
|
|
1160
|
+
"description": "Whether to use the project's `target` directory, for caching build tools (e.g., Wix and NSIS) when building this application. Defaults to `false`.\n\nIf true, tools will be cached in `target\\.tauri-tools`. If false, tools will be cached in the current user's platform-specific cache directory.\n\nAn example where it can be appropriate to set this to `true` is when building this application as a Windows System user (e.g., AWS EC2 workloads), because the Window system's app data directory is restricted.",
|
|
1161
|
+
"default": false,
|
|
1162
|
+
"type": "boolean"
|
|
1163
|
+
},
|
|
1115
1164
|
"appimage": {
|
|
1116
1165
|
"description": "Configuration for the AppImage bundle.",
|
|
1117
1166
|
"default": {
|
|
@@ -1134,9 +1183,45 @@
|
|
|
1134
1183
|
}
|
|
1135
1184
|
]
|
|
1136
1185
|
},
|
|
1186
|
+
"rpm": {
|
|
1187
|
+
"description": "Configuration for the RPM bundle.",
|
|
1188
|
+
"default": {
|
|
1189
|
+
"epoch": 0,
|
|
1190
|
+
"files": {},
|
|
1191
|
+
"release": "1"
|
|
1192
|
+
},
|
|
1193
|
+
"allOf": [
|
|
1194
|
+
{
|
|
1195
|
+
"$ref": "#/definitions/RpmConfig"
|
|
1196
|
+
}
|
|
1197
|
+
]
|
|
1198
|
+
},
|
|
1199
|
+
"dmg": {
|
|
1200
|
+
"description": "DMG-specific settings.",
|
|
1201
|
+
"default": {
|
|
1202
|
+
"appPosition": {
|
|
1203
|
+
"x": 180,
|
|
1204
|
+
"y": 170
|
|
1205
|
+
},
|
|
1206
|
+
"applicationFolderPosition": {
|
|
1207
|
+
"x": 480,
|
|
1208
|
+
"y": 170
|
|
1209
|
+
},
|
|
1210
|
+
"windowSize": {
|
|
1211
|
+
"height": 400,
|
|
1212
|
+
"width": 660
|
|
1213
|
+
}
|
|
1214
|
+
},
|
|
1215
|
+
"allOf": [
|
|
1216
|
+
{
|
|
1217
|
+
"$ref": "#/definitions/DmgConfig"
|
|
1218
|
+
}
|
|
1219
|
+
]
|
|
1220
|
+
},
|
|
1137
1221
|
"macOS": {
|
|
1138
1222
|
"description": "Configuration for the macOS bundles.",
|
|
1139
1223
|
"default": {
|
|
1224
|
+
"hardenedRuntime": true,
|
|
1140
1225
|
"minimumSystemVersion": "10.13"
|
|
1141
1226
|
},
|
|
1142
1227
|
"allOf": [
|
|
@@ -1162,6 +1247,7 @@
|
|
|
1162
1247
|
"certificateThumbprint": null,
|
|
1163
1248
|
"digestAlgorithm": null,
|
|
1164
1249
|
"nsis": null,
|
|
1250
|
+
"signCommand": null,
|
|
1165
1251
|
"timestampUrl": null,
|
|
1166
1252
|
"tsp": false,
|
|
1167
1253
|
"webviewFixedRuntimePath": null,
|
|
@@ -1216,6 +1302,13 @@
|
|
|
1216
1302
|
"deb"
|
|
1217
1303
|
]
|
|
1218
1304
|
},
|
|
1305
|
+
{
|
|
1306
|
+
"description": "The RPM bundle (.rpm).",
|
|
1307
|
+
"type": "string",
|
|
1308
|
+
"enum": [
|
|
1309
|
+
"rpm"
|
|
1310
|
+
]
|
|
1311
|
+
},
|
|
1219
1312
|
{
|
|
1220
1313
|
"description": "The AppImage bundle (.appimage).",
|
|
1221
1314
|
"type": "string",
|
|
@@ -1305,6 +1398,36 @@
|
|
|
1305
1398
|
"type": "string"
|
|
1306
1399
|
}
|
|
1307
1400
|
},
|
|
1401
|
+
"provides": {
|
|
1402
|
+
"description": "The list of dependencies the package provides.",
|
|
1403
|
+
"type": [
|
|
1404
|
+
"array",
|
|
1405
|
+
"null"
|
|
1406
|
+
],
|
|
1407
|
+
"items": {
|
|
1408
|
+
"type": "string"
|
|
1409
|
+
}
|
|
1410
|
+
},
|
|
1411
|
+
"conflicts": {
|
|
1412
|
+
"description": "The list of package conflicts.",
|
|
1413
|
+
"type": [
|
|
1414
|
+
"array",
|
|
1415
|
+
"null"
|
|
1416
|
+
],
|
|
1417
|
+
"items": {
|
|
1418
|
+
"type": "string"
|
|
1419
|
+
}
|
|
1420
|
+
},
|
|
1421
|
+
"replaces": {
|
|
1422
|
+
"description": "The list of package replaces.",
|
|
1423
|
+
"type": [
|
|
1424
|
+
"array",
|
|
1425
|
+
"null"
|
|
1426
|
+
],
|
|
1427
|
+
"items": {
|
|
1428
|
+
"type": "string"
|
|
1429
|
+
}
|
|
1430
|
+
},
|
|
1308
1431
|
"files": {
|
|
1309
1432
|
"description": "The files to include on the package.",
|
|
1310
1433
|
"default": {},
|
|
@@ -1344,6 +1467,194 @@
|
|
|
1344
1467
|
},
|
|
1345
1468
|
"additionalProperties": false
|
|
1346
1469
|
},
|
|
1470
|
+
"RpmConfig": {
|
|
1471
|
+
"description": "Configuration for RPM bundles.",
|
|
1472
|
+
"type": "object",
|
|
1473
|
+
"properties": {
|
|
1474
|
+
"license": {
|
|
1475
|
+
"description": "The package's license identifier. If not set, defaults to the license from the Cargo.toml file.",
|
|
1476
|
+
"type": [
|
|
1477
|
+
"string",
|
|
1478
|
+
"null"
|
|
1479
|
+
]
|
|
1480
|
+
},
|
|
1481
|
+
"depends": {
|
|
1482
|
+
"description": "The list of RPM dependencies your application relies on.",
|
|
1483
|
+
"type": [
|
|
1484
|
+
"array",
|
|
1485
|
+
"null"
|
|
1486
|
+
],
|
|
1487
|
+
"items": {
|
|
1488
|
+
"type": "string"
|
|
1489
|
+
}
|
|
1490
|
+
},
|
|
1491
|
+
"provides": {
|
|
1492
|
+
"description": "The list of RPM dependencies your application provides.",
|
|
1493
|
+
"type": [
|
|
1494
|
+
"array",
|
|
1495
|
+
"null"
|
|
1496
|
+
],
|
|
1497
|
+
"items": {
|
|
1498
|
+
"type": "string"
|
|
1499
|
+
}
|
|
1500
|
+
},
|
|
1501
|
+
"conflicts": {
|
|
1502
|
+
"description": "The list of RPM dependencies your application conflicts with. They must not be present in order for the package to be installed.",
|
|
1503
|
+
"type": [
|
|
1504
|
+
"array",
|
|
1505
|
+
"null"
|
|
1506
|
+
],
|
|
1507
|
+
"items": {
|
|
1508
|
+
"type": "string"
|
|
1509
|
+
}
|
|
1510
|
+
},
|
|
1511
|
+
"obsoletes": {
|
|
1512
|
+
"description": "The list of RPM dependencies your application supersedes - if this package is installed, packages listed as “obsoletes” will be automatically removed (if they are present).",
|
|
1513
|
+
"type": [
|
|
1514
|
+
"array",
|
|
1515
|
+
"null"
|
|
1516
|
+
],
|
|
1517
|
+
"items": {
|
|
1518
|
+
"type": "string"
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1521
|
+
"release": {
|
|
1522
|
+
"description": "The RPM release tag.",
|
|
1523
|
+
"default": "1",
|
|
1524
|
+
"type": "string"
|
|
1525
|
+
},
|
|
1526
|
+
"epoch": {
|
|
1527
|
+
"description": "The RPM epoch.",
|
|
1528
|
+
"default": 0,
|
|
1529
|
+
"type": "integer",
|
|
1530
|
+
"format": "uint32",
|
|
1531
|
+
"minimum": 0.0
|
|
1532
|
+
},
|
|
1533
|
+
"files": {
|
|
1534
|
+
"description": "The files to include on the package.",
|
|
1535
|
+
"default": {},
|
|
1536
|
+
"type": "object",
|
|
1537
|
+
"additionalProperties": {
|
|
1538
|
+
"type": "string"
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
"desktopTemplate": {
|
|
1542
|
+
"description": "Path to a custom desktop file Handlebars template.\n\nAvailable variables: `categories`, `comment` (optional), `exec`, `icon` and `name`.",
|
|
1543
|
+
"type": [
|
|
1544
|
+
"string",
|
|
1545
|
+
"null"
|
|
1546
|
+
]
|
|
1547
|
+
}
|
|
1548
|
+
},
|
|
1549
|
+
"additionalProperties": false
|
|
1550
|
+
},
|
|
1551
|
+
"DmgConfig": {
|
|
1552
|
+
"description": "Configuration for Apple Disk Image (.dmg) bundles.\n\nSee more: https://tauri.app/v1/api/config#dmgconfig",
|
|
1553
|
+
"type": "object",
|
|
1554
|
+
"properties": {
|
|
1555
|
+
"background": {
|
|
1556
|
+
"description": "Image to use as the background in dmg file. Accepted formats: `png`/`jpg`/`gif`.",
|
|
1557
|
+
"type": [
|
|
1558
|
+
"string",
|
|
1559
|
+
"null"
|
|
1560
|
+
]
|
|
1561
|
+
},
|
|
1562
|
+
"windowPosition": {
|
|
1563
|
+
"description": "Position of volume window on screen.",
|
|
1564
|
+
"anyOf": [
|
|
1565
|
+
{
|
|
1566
|
+
"$ref": "#/definitions/Position"
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"type": "null"
|
|
1570
|
+
}
|
|
1571
|
+
]
|
|
1572
|
+
},
|
|
1573
|
+
"windowSize": {
|
|
1574
|
+
"description": "Size of volume window.",
|
|
1575
|
+
"default": {
|
|
1576
|
+
"height": 400,
|
|
1577
|
+
"width": 660
|
|
1578
|
+
},
|
|
1579
|
+
"allOf": [
|
|
1580
|
+
{
|
|
1581
|
+
"$ref": "#/definitions/Size"
|
|
1582
|
+
}
|
|
1583
|
+
]
|
|
1584
|
+
},
|
|
1585
|
+
"appPosition": {
|
|
1586
|
+
"description": "Position of app file on window.",
|
|
1587
|
+
"default": {
|
|
1588
|
+
"x": 180,
|
|
1589
|
+
"y": 170
|
|
1590
|
+
},
|
|
1591
|
+
"allOf": [
|
|
1592
|
+
{
|
|
1593
|
+
"$ref": "#/definitions/Position"
|
|
1594
|
+
}
|
|
1595
|
+
]
|
|
1596
|
+
},
|
|
1597
|
+
"applicationFolderPosition": {
|
|
1598
|
+
"description": "Position of application folder on window.",
|
|
1599
|
+
"default": {
|
|
1600
|
+
"x": 480,
|
|
1601
|
+
"y": 170
|
|
1602
|
+
},
|
|
1603
|
+
"allOf": [
|
|
1604
|
+
{
|
|
1605
|
+
"$ref": "#/definitions/Position"
|
|
1606
|
+
}
|
|
1607
|
+
]
|
|
1608
|
+
}
|
|
1609
|
+
},
|
|
1610
|
+
"additionalProperties": false
|
|
1611
|
+
},
|
|
1612
|
+
"Position": {
|
|
1613
|
+
"description": "Position coordinates struct.",
|
|
1614
|
+
"type": "object",
|
|
1615
|
+
"required": [
|
|
1616
|
+
"x",
|
|
1617
|
+
"y"
|
|
1618
|
+
],
|
|
1619
|
+
"properties": {
|
|
1620
|
+
"x": {
|
|
1621
|
+
"description": "X coordinate.",
|
|
1622
|
+
"type": "integer",
|
|
1623
|
+
"format": "uint32",
|
|
1624
|
+
"minimum": 0.0
|
|
1625
|
+
},
|
|
1626
|
+
"y": {
|
|
1627
|
+
"description": "Y coordinate.",
|
|
1628
|
+
"type": "integer",
|
|
1629
|
+
"format": "uint32",
|
|
1630
|
+
"minimum": 0.0
|
|
1631
|
+
}
|
|
1632
|
+
},
|
|
1633
|
+
"additionalProperties": false
|
|
1634
|
+
},
|
|
1635
|
+
"Size": {
|
|
1636
|
+
"description": "Size of the window.",
|
|
1637
|
+
"type": "object",
|
|
1638
|
+
"required": [
|
|
1639
|
+
"height",
|
|
1640
|
+
"width"
|
|
1641
|
+
],
|
|
1642
|
+
"properties": {
|
|
1643
|
+
"width": {
|
|
1644
|
+
"description": "Width of the window.",
|
|
1645
|
+
"type": "integer",
|
|
1646
|
+
"format": "uint32",
|
|
1647
|
+
"minimum": 0.0
|
|
1648
|
+
},
|
|
1649
|
+
"height": {
|
|
1650
|
+
"description": "Height of the window.",
|
|
1651
|
+
"type": "integer",
|
|
1652
|
+
"format": "uint32",
|
|
1653
|
+
"minimum": 0.0
|
|
1654
|
+
}
|
|
1655
|
+
},
|
|
1656
|
+
"additionalProperties": false
|
|
1657
|
+
},
|
|
1347
1658
|
"MacConfig": {
|
|
1348
1659
|
"description": "Configuration for the macOS bundles.\n\nSee more: https://tauri.app/v1/api/config#macconfig",
|
|
1349
1660
|
"type": "object",
|
|
@@ -1387,6 +1698,11 @@
|
|
|
1387
1698
|
"null"
|
|
1388
1699
|
]
|
|
1389
1700
|
},
|
|
1701
|
+
"hardenedRuntime": {
|
|
1702
|
+
"description": "Whether the codesign should enable [hardened runtime] (for executables) or not.\n\n[hardened runtime]: <https://developer.apple.com/documentation/security/hardened_runtime>",
|
|
1703
|
+
"default": true,
|
|
1704
|
+
"type": "boolean"
|
|
1705
|
+
},
|
|
1390
1706
|
"providerShortName": {
|
|
1391
1707
|
"description": "Provider short name for notarization.",
|
|
1392
1708
|
"type": [
|
|
@@ -1479,6 +1795,13 @@
|
|
|
1479
1795
|
"type": "null"
|
|
1480
1796
|
}
|
|
1481
1797
|
]
|
|
1798
|
+
},
|
|
1799
|
+
"signCommand": {
|
|
1800
|
+
"description": "Specify a custom command to sign the binaries. This command needs to have a `%1` in it which is just a placeholder for the binary path, which we will detect and replace before calling the command.\n\nExample: ```text sign-cli --arg1 --arg2 %1 ```\n\nBy Default we use `signtool.exe` which can be found only on Windows so if you are on another platform and want to cross-compile and sign you will need to use another tool like `osslsigncode`.",
|
|
1801
|
+
"type": [
|
|
1802
|
+
"string",
|
|
1803
|
+
"null"
|
|
1804
|
+
]
|
|
1482
1805
|
}
|
|
1483
1806
|
},
|
|
1484
1807
|
"additionalProperties": false
|