@tauri-apps/cli 2.0.0-rc.13 → 2.0.0-rc.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.
- package/CHANGELOG.md +25 -0
- package/config.schema.json +9 -4
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.0.0-rc.15]
|
|
4
|
+
|
|
5
|
+
### Enhancements
|
|
6
|
+
|
|
7
|
+
- [`5a0e922d4`](https://www.github.com/tauri-apps/tauri/commit/5a0e922d40dc3b7d9a8e3a65ccaf76d09f026cb8) ([#11007](https://www.github.com/tauri-apps/tauri/pull/11007) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Automatically discover the `src-tauri/src/main.rs` binary when it is not explicitly defined in the Cargo manifest bin array.
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- [`94e9d476e`](https://www.github.com/tauri-apps/tauri/commit/94e9d476ef506b1b8c09f55b81620c7839f98086) ([#11011](https://www.github.com/tauri-apps/tauri/pull/11011) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Fix `main_binary_name` in custom wix and nsis templates including `.exe`
|
|
12
|
+
|
|
13
|
+
### Dependencies
|
|
14
|
+
|
|
15
|
+
- Upgraded to `tauri-cli@2.0.0-rc.15`
|
|
16
|
+
|
|
17
|
+
## \[2.0.0-rc.14]
|
|
18
|
+
|
|
19
|
+
### Enhancements
|
|
20
|
+
|
|
21
|
+
- [`6c5340f8b`](https://www.github.com/tauri-apps/tauri/commit/6c5340f8b2549dfe89f19656304e65cd670afc92) ([#11004](https://www.github.com/tauri-apps/tauri/pull/11004) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Added the `log` plugin to the app template, which is required to visualize logs on Android and iOS.
|
|
22
|
+
- [`3ad2427dc`](https://www.github.com/tauri-apps/tauri/commit/3ad2427dc08f12c61edc726b587acce32eca1080) ([#10961](https://www.github.com/tauri-apps/tauri/pull/10961) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Only render app logs on iOS unless `-vv` is provided to the `ios dev` command.
|
|
23
|
+
|
|
24
|
+
### Dependencies
|
|
25
|
+
|
|
26
|
+
- Upgraded to `tauri-cli@2.0.0-rc.13`
|
|
27
|
+
|
|
3
28
|
## \[2.0.0-rc.13]
|
|
4
29
|
|
|
5
30
|
### Bug Fixes
|
package/config.schema.json
CHANGED
|
@@ -22,6 +22,13 @@
|
|
|
22
22
|
],
|
|
23
23
|
"pattern": "^[^/\\:*?\"<>|]+$"
|
|
24
24
|
},
|
|
25
|
+
"mainBinaryName": {
|
|
26
|
+
"description": "App main binary filename. Defaults to the name of your cargo crate.",
|
|
27
|
+
"type": [
|
|
28
|
+
"string",
|
|
29
|
+
"null"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
25
32
|
"version": {
|
|
26
33
|
"description": "App version. It is a semver version number or a path to a `package.json` file containing the `version` field. If removed the version number from `Cargo.toml` is used.\n\n By default version 1.0 is used on Android.",
|
|
27
34
|
"type": [
|
|
@@ -1748,9 +1755,7 @@
|
|
|
1748
1755
|
"anyOf": [
|
|
1749
1756
|
{
|
|
1750
1757
|
"description": "Bundle all targets.",
|
|
1751
|
-
"
|
|
1752
|
-
"all"
|
|
1753
|
-
]
|
|
1758
|
+
"const": "all"
|
|
1754
1759
|
},
|
|
1755
1760
|
{
|
|
1756
1761
|
"description": "A list of bundle targets.",
|
|
@@ -2675,7 +2680,7 @@
|
|
|
2675
2680
|
}
|
|
2676
2681
|
},
|
|
2677
2682
|
"obsoletes": {
|
|
2678
|
-
"description": "The list of RPM dependencies your application supersedes - if this package is installed,\n packages listed as
|
|
2683
|
+
"description": "The list of RPM dependencies your application supersedes - if this package is installed,\n packages listed as \"obsoletes\" will be automatically removed (if they are present).",
|
|
2679
2684
|
"type": [
|
|
2680
2685
|
"array",
|
|
2681
2686
|
"null"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.15",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -63,15 +63,15 @@
|
|
|
63
63
|
"tauri": "node ./tauri.js"
|
|
64
64
|
},
|
|
65
65
|
"optionalDependencies": {
|
|
66
|
-
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-rc.
|
|
67
|
-
"@tauri-apps/cli-darwin-x64": "2.0.0-rc.
|
|
68
|
-
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.
|
|
69
|
-
"@tauri-apps/cli-darwin-arm64": "2.0.0-rc.
|
|
70
|
-
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.
|
|
71
|
-
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.
|
|
72
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.
|
|
73
|
-
"@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.
|
|
74
|
-
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.
|
|
75
|
-
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.
|
|
66
|
+
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-rc.15",
|
|
67
|
+
"@tauri-apps/cli-darwin-x64": "2.0.0-rc.15",
|
|
68
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.15",
|
|
69
|
+
"@tauri-apps/cli-darwin-arm64": "2.0.0-rc.15",
|
|
70
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.15",
|
|
71
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.15",
|
|
72
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.15",
|
|
73
|
+
"@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.15",
|
|
74
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.15",
|
|
75
|
+
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.15"
|
|
76
76
|
}
|
|
77
77
|
}
|