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

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 +47 -0
  2. package/package.json +11 -11
  3. package/schema.json +65 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-beta.15]
4
+
5
+ ### Dependencies
6
+
7
+ - Upgraded to `tauri-cli@2.0.0-beta.15`
8
+
9
+ ## \[2.0.0-beta.14]
10
+
11
+ ### Enhancements
12
+
13
+ - [`8a63ceb4f`](https://www.github.com/tauri-apps/tauri/commit/8a63ceb4f31c422311b0f7dff173a9c8c0e1a604)([#9473](https://www.github.com/tauri-apps/tauri/pull/9473)) Ignore `.DS_Store` by default for `tauri dev` hot reloads.
14
+
15
+ ### Bug Fixes
16
+
17
+ - [`e64b8f1dc`](https://www.github.com/tauri-apps/tauri/commit/e64b8f1dcedad3222f46755bf6f30392a7ec2f90)([#9479](https://www.github.com/tauri-apps/tauri/pull/9479)) Upgrade `heck` to v0.5 to better support Chinese and Japanese product name, because Chinese do not have word separation.
18
+ - [`aaa332c6e`](https://www.github.com/tauri-apps/tauri/commit/aaa332c6e78c956debd11efda021a0406621a01d)([#9540](https://www.github.com/tauri-apps/tauri/pull/9540)) Fix `tauri migrate` trying to migrate to a non-existing plugin.
19
+ - [`e64b8f1dc`](https://www.github.com/tauri-apps/tauri/commit/e64b8f1dcedad3222f46755bf6f30392a7ec2f90)([#9479](https://www.github.com/tauri-apps/tauri/pull/9479)) Fixed an issue causing the `build.runner` and `build.features` configs to not take effect.
20
+
21
+ ### Dependencies
22
+
23
+ - Upgraded to `tauri-cli@2.0.0-beta.14`
24
+
25
+ ## \[2.0.0-beta.13]
26
+
27
+ ### Bug Fixes
28
+
29
+ - [`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`
30
+ - [`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.
31
+
32
+ ### What's Changed
33
+
34
+ - [`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.
35
+
36
+ ### Dependencies
37
+
38
+ - Upgraded to `tauri-cli@2.0.0-beta.13`
39
+
3
40
  ## \[2.0.0-beta.12]
4
41
 
5
42
  ### New Features
@@ -513,6 +550,16 @@
513
550
  - First mobile alpha release!
514
551
  - [fa3a1098](https://www.github.com/tauri-apps/tauri/commit/fa3a10988a03aed1b66fb17d893b1a9adb90f7cd) feat(ci): prepare 2.0.0-alpha.0 ([#5786](https://www.github.com/tauri-apps/tauri/pull/5786)) on 2022-12-08
515
552
 
553
+ ## \[1.5.11]
554
+
555
+ ### Bug Fixes
556
+
557
+ - [`b15948b11`](https://www.github.com/tauri-apps/tauri/commit/b15948b11c0e362eea7ef57a4606f15f7dbd886b)([#8903](https://www.github.com/tauri-apps/tauri/pull/8903)) Fix `.taurignore` failing to ignore in some cases.
558
+
559
+ ### Dependencies
560
+
561
+ - Upgraded to `tauri-cli@1.5.11`
562
+
516
563
  ## \[1.5.10]
517
564
 
518
565
  ### Bug Fixes
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.15",
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.15",
72
+ "@tauri-apps/cli-darwin-x64": "2.0.0-beta.15",
73
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.15",
74
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.15",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.15",
76
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.15",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.15",
78
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.15",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.15",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.15"
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",