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

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 +25 -0
  2. package/package.json +11 -11
  3. package/schema.json +129 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-beta.13]
4
+
5
+ ### Bug Fixes
6
+
7
+ - [`73c1c2d33`](https://www.github.com/tauri-apps/tauri/commit/73c1c2d33872651c32c761c838714b684980c668)([#9457](https://www.github.com/tauri-apps/tauri/pull/9457)) Gracefully handle Non-UTF8 files when using `tauri migrate`
8
+ - [`9331435a5`](https://www.github.com/tauri-apps/tauri/commit/9331435a50cc3769720bd2671da8510699d28671)([#9412](https://www.github.com/tauri-apps/tauri/pull/9412)) Fix `tauri info` crashing when Node.js is not installed.
9
+
10
+ ### What's Changed
11
+
12
+ - [`8f4b1050c`](https://www.github.com/tauri-apps/tauri/commit/8f4b1050c4de0e9194680408ff3a6902b67045f8)([#9459](https://www.github.com/tauri-apps/tauri/pull/9459)) Show full expected path of `frontendDist` when if can't be found.
13
+
14
+ ### Dependencies
15
+
16
+ - Upgraded to `tauri-cli@2.0.0-beta.13`
17
+
18
+ ## \[2.0.0-beta.12]
19
+
20
+ ### New Features
21
+
22
+ - [`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`
23
+
24
+ ### Dependencies
25
+
26
+ - Upgraded to `tauri-cli@2.0.0-beta.12`
27
+
3
28
  ## \[2.0.0-beta.11]
4
29
 
5
30
  ### 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.13",
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.13",
72
+ "@tauri-apps/cli-darwin-x64": "2.0.0-beta.13",
73
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.13",
74
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.13",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.13",
76
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.13",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.13",
78
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.13",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.13",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.13"
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
  },
@@ -450,6 +450,11 @@
450
450
  "null"
451
451
  ],
452
452
  "format": "uri"
453
+ },
454
+ "zoomHotkeysEnabled": {
455
+ "description": "Whether page zooming by hotkeys is enabled\n\n## Platform-specific:\n\n- **Windows**: Controls WebView2's [`IsZoomControlEnabled`](https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2settings?view=webview2-winrt-1.0.2420.47#iszoomcontrolenabled) setting. - **MacOS / Linux**: Injects a polyfill that zooms in and out with `ctrl/command` + `-/=`, 20% in each step, ranging from 20% to 1000%. Requires `webview:allow-set-webview-zoom` permission\n\n- **Android / iOS**: Unsupported.",
456
+ "default": false,
457
+ "type": "boolean"
453
458
  }
454
459
  },
455
460
  "additionalProperties": false
@@ -2422,6 +2427,36 @@
2422
2427
  "type": "string"
2423
2428
  }
2424
2429
  },
2430
+ "provides": {
2431
+ "description": "The list of dependencies the package provides.",
2432
+ "type": [
2433
+ "array",
2434
+ "null"
2435
+ ],
2436
+ "items": {
2437
+ "type": "string"
2438
+ }
2439
+ },
2440
+ "conflicts": {
2441
+ "description": "The list of package conflicts.",
2442
+ "type": [
2443
+ "array",
2444
+ "null"
2445
+ ],
2446
+ "items": {
2447
+ "type": "string"
2448
+ }
2449
+ },
2450
+ "replaces": {
2451
+ "description": "The list of package replaces.",
2452
+ "type": [
2453
+ "array",
2454
+ "null"
2455
+ ],
2456
+ "items": {
2457
+ "type": "string"
2458
+ }
2459
+ },
2425
2460
  "files": {
2426
2461
  "description": "The files to include on the package.",
2427
2462
  "default": {},
@@ -2430,6 +2465,27 @@
2430
2465
  "type": "string"
2431
2466
  }
2432
2467
  },
2468
+ "section": {
2469
+ "description": "Define the section in Debian Control file. See : https://www.debian.org/doc/debian-policy/ch-archive.html#s-subsections",
2470
+ "type": [
2471
+ "string",
2472
+ "null"
2473
+ ]
2474
+ },
2475
+ "priority": {
2476
+ "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`",
2477
+ "type": [
2478
+ "string",
2479
+ "null"
2480
+ ]
2481
+ },
2482
+ "changelog": {
2483
+ "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",
2484
+ "type": [
2485
+ "string",
2486
+ "null"
2487
+ ]
2488
+ },
2433
2489
  "desktopTemplate": {
2434
2490
  "description": "Path to a custom desktop file Handlebars template.\n\nAvailable variables: `categories`, `comment` (optional), `exec`, `icon` and `name`.",
2435
2491
  "type": [
@@ -2437,22 +2493,29 @@
2437
2493
  "null"
2438
2494
  ]
2439
2495
  },
2440
- "section": {
2441
- "description": "Define the section in Debian Control file. See : https://www.debian.org/doc/debian-policy/ch-archive.html#s-subsections",
2496
+ "preInstallScript": {
2497
+ "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
2498
  "type": [
2443
2499
  "string",
2444
2500
  "null"
2445
2501
  ]
2446
2502
  },
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`",
2503
+ "postInstallScript": {
2504
+ "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
2505
  "type": [
2450
2506
  "string",
2451
2507
  "null"
2452
2508
  ]
2453
2509
  },
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",
2510
+ "preRemoveScript": {
2511
+ "description": "Path to script that will be executed before the package is removed. See https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html",
2512
+ "type": [
2513
+ "string",
2514
+ "null"
2515
+ ]
2516
+ },
2517
+ "postRemoveScript": {
2518
+ "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
2519
  "type": [
2457
2520
  "string",
2458
2521
  "null"
@@ -2475,6 +2538,36 @@
2475
2538
  "type": "string"
2476
2539
  }
2477
2540
  },
2541
+ "provides": {
2542
+ "description": "The list of RPM dependencies your application provides.",
2543
+ "type": [
2544
+ "array",
2545
+ "null"
2546
+ ],
2547
+ "items": {
2548
+ "type": "string"
2549
+ }
2550
+ },
2551
+ "conflicts": {
2552
+ "description": "The list of RPM dependencies your application conflicts with. They must not be present in order for the package to be installed.",
2553
+ "type": [
2554
+ "array",
2555
+ "null"
2556
+ ],
2557
+ "items": {
2558
+ "type": "string"
2559
+ }
2560
+ },
2561
+ "obsoletes": {
2562
+ "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).",
2563
+ "type": [
2564
+ "array",
2565
+ "null"
2566
+ ],
2567
+ "items": {
2568
+ "type": "string"
2569
+ }
2570
+ },
2478
2571
  "release": {
2479
2572
  "description": "The RPM release tag.",
2480
2573
  "default": "1",
@@ -2501,6 +2594,34 @@
2501
2594
  "string",
2502
2595
  "null"
2503
2596
  ]
2597
+ },
2598
+ "preInstallScript": {
2599
+ "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",
2600
+ "type": [
2601
+ "string",
2602
+ "null"
2603
+ ]
2604
+ },
2605
+ "postInstallScript": {
2606
+ "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",
2607
+ "type": [
2608
+ "string",
2609
+ "null"
2610
+ ]
2611
+ },
2612
+ "preRemoveScript": {
2613
+ "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",
2614
+ "type": [
2615
+ "string",
2616
+ "null"
2617
+ ]
2618
+ },
2619
+ "postRemoveScript": {
2620
+ "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",
2621
+ "type": [
2622
+ "string",
2623
+ "null"
2624
+ ]
2504
2625
  }
2505
2626
  },
2506
2627
  "additionalProperties": false