You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/tauri-config-schema/schema.json
+62-6Lines changed: 62 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2430,29 +2430,57 @@
2430
2430
"type": "string"
2431
2431
}
2432
2432
},
2433
+
"section": {
2434
+
"description": "Define the section in Debian Control file. See : https://www.debian.org/doc/debian-policy/ch-archive.html#s-subsections",
2435
+
"type": [
2436
+
"string",
2437
+
"null"
2438
+
]
2439
+
},
2440
+
"priority": {
2441
+
"description": "Change the priority of the Debian Package. By default, it is set to `optional`. Recognized Priorities as of now are : `required`, `important`, `standard`, `optional`, `extra`",
2442
+
"type": [
2443
+
"string",
2444
+
"null"
2445
+
]
2446
+
},
2447
+
"changelog": {
2448
+
"description": "Path of the uncompressed Changelog file, to be stored at /usr/share/doc/package-name/changelog.gz. See https://www.debian.org/doc/debian-policy/ch-docs.html#changelog-files-and-release-notes",
2449
+
"type": [
2450
+
"string",
2451
+
"null"
2452
+
]
2453
+
},
2433
2454
"desktopTemplate": {
2434
2455
"description": "Path to a custom desktop file Handlebars template.\n\nAvailable variables: `categories`, `comment` (optional), `exec`, `icon` and `name`.",
2435
2456
"type": [
2436
2457
"string",
2437
2458
"null"
2438
2459
]
2439
2460
},
2440
-
"section": {
2441
-
"description": "Define the section in Debian Control file. See : https://www.debian.org/doc/debian-policy/ch-archive.html#s-subsections",
2461
+
"preInstallScript": {
2462
+
"description": "Path to script that will be executed before the package is unpacked. See https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html",
2442
2463
"type": [
2443
2464
"string",
2444
2465
"null"
2445
2466
]
2446
2467
},
2447
-
"priority": {
2448
-
"description": "Change the priority of the Debian Package. By default, it is set to `optional`. Recognized Priorities as of now are : `required`, `important`, `standard`, `optional`, `extra`",
2468
+
"postInstallScript": {
2469
+
"description": "Path to script that will be executed after the package is unpacked. See https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html",
2449
2470
"type": [
2450
2471
"string",
2451
2472
"null"
2452
2473
]
2453
2474
},
2454
-
"changelog": {
2455
-
"description": "Path of the uncompressed Changelog file, to be stored at /usr/share/doc/package-name/changelog.gz. See https://www.debian.org/doc/debian-policy/ch-docs.html#changelog-files-and-release-notes",
2475
+
"preRemoveScript": {
2476
+
"description": "Path to script that will be executed before the package is removed. See https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html",
2477
+
"type": [
2478
+
"string",
2479
+
"null"
2480
+
]
2481
+
},
2482
+
"postRemoveScript": {
2483
+
"description": "Path to script that will be executed after the package is removed. See https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html",
2456
2484
"type": [
2457
2485
"string",
2458
2486
"null"
@@ -2501,6 +2529,34 @@
2501
2529
"string",
2502
2530
"null"
2503
2531
]
2532
+
},
2533
+
"preInstallScript": {
2534
+
"description": "Path to script that will be executed before the package is unpacked. See http://ftp.rpm.org/max-rpm/s1-rpm-inside-scripts.html",
2535
+
"type": [
2536
+
"string",
2537
+
"null"
2538
+
]
2539
+
},
2540
+
"postInstallScript": {
2541
+
"description": "Path to script that will be executed after the package is unpacked. See http://ftp.rpm.org/max-rpm/s1-rpm-inside-scripts.html",
2542
+
"type": [
2543
+
"string",
2544
+
"null"
2545
+
]
2546
+
},
2547
+
"preRemoveScript": {
2548
+
"description": "Path to script that will be executed before the package is removed. See http://ftp.rpm.org/max-rpm/s1-rpm-inside-scripts.html",
2549
+
"type": [
2550
+
"string",
2551
+
"null"
2552
+
]
2553
+
},
2554
+
"postRemoveScript": {
2555
+
"description": "Path to script that will be executed after the package is removed. See http://ftp.rpm.org/max-rpm/s1-rpm-inside-scripts.html",
0 commit comments