@tauri-apps/cli 2.0.0-beta.12 → 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 +15 -0
  2. package/package.json +11 -11
  3. package/schema.json +65 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
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
+
3
18
  ## \[2.0.0-beta.12]
4
19
 
5
20
  ### New Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-beta.12",
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.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"
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
@@ -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": {},
@@ -2503,6 +2538,36 @@
2503
2538
  "type": "string"
2504
2539
  }
2505
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
+ },
2506
2571
  "release": {
2507
2572
  "description": "The RPM release tag.",
2508
2573
  "default": "1",