@tauri-apps/cli 2.0.0-beta.11 → 2.0.0-beta.12

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +11 -11
  3. package/schema.json +64 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-beta.12]
4
+
5
+ ### New Features
6
+
7
+ - [`93e0e1392`](https://www.github.com/tauri-apps/tauri/commit/93e0e1392ec341fcadf696c03e78f0ca1e73c941) Support specifying a version for `tauri add` subcommand, for example: `tauri add window-state@2.0.0-beta.2`
8
+
9
+ ### Dependencies
10
+
11
+ - Upgraded to `tauri-cli@2.0.0-beta.12`
12
+
3
13
  ## \[2.0.0-beta.11]
4
14
 
5
15
  ### Enhancements
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-beta.11",
3
+ "version": "2.0.0-beta.12",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -68,15 +68,15 @@
68
68
  "format:check": "prettier --check ./package.json ./tauri.js"
69
69
  },
70
70
  "optionalDependencies": {
71
- "@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.11",
72
- "@tauri-apps/cli-darwin-x64": "2.0.0-beta.11",
73
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.11",
74
- "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.11",
75
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.11",
76
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.11",
77
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.11",
78
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.11",
79
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.11",
80
- "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.11"
71
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.12",
72
+ "@tauri-apps/cli-darwin-x64": "2.0.0-beta.12",
73
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.12",
74
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.12",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.12",
76
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.12",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.12",
78
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.12",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.12",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.12"
81
81
  }
82
82
  }
package/schema.json CHANGED
@@ -221,8 +221,8 @@
221
221
  "null"
222
222
  ]
223
223
  },
224
- "fileDropEnabled": {
225
- "description": "Whether the file drop is enabled or not on the webview. By default it is enabled.\n\nDisabling it is required to use drag and drop on the frontend on Windows.",
224
+ "dragDropEnabled": {
225
+ "description": "Whether the drag and drop is enabled or not on the webview. By default it is enabled.\n\nDisabling it is required to use HTML5 drag and drop on the frontend on Windows.",
226
226
  "default": true,
227
227
  "type": "boolean"
228
228
  },
@@ -2430,6 +2430,27 @@
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": [
@@ -2437,22 +2458,29 @@
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",
2556
+ "type": [
2557
+ "string",
2558
+ "null"
2559
+ ]
2504
2560
  }
2505
2561
  },
2506
2562
  "additionalProperties": false