@tauri-apps/cli 2.0.0-rc.12 → 2.0.0-rc.14
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 +21 -0
- package/config.schema.json +13 -6
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.0.0-rc.14]
|
|
4
|
+
|
|
5
|
+
### Enhancements
|
|
6
|
+
|
|
7
|
+
- [`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.
|
|
8
|
+
- [`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.
|
|
9
|
+
|
|
10
|
+
### Dependencies
|
|
11
|
+
|
|
12
|
+
- Upgraded to `tauri-cli@2.0.0-rc.13`
|
|
13
|
+
|
|
14
|
+
## \[2.0.0-rc.13]
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
- [`a5848af65`](https://www.github.com/tauri-apps/tauri/commit/a5848af65b10d89686314cf737b7fd9d91f99dd8) ([#10944](https://www.github.com/tauri-apps/tauri/pull/10944) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Synchronize app version (`tauri.conf.json > version` or `Cargo.toml > package > version`) with the `CFBundleVersion` and `CFBundleShortVersionString` Info.plist values.
|
|
19
|
+
|
|
20
|
+
### Dependencies
|
|
21
|
+
|
|
22
|
+
- Upgraded to `tauri-cli@2.0.0-rc.12`
|
|
23
|
+
|
|
3
24
|
## \[2.0.0-rc.12]
|
|
4
25
|
|
|
5
26
|
### Dependencies
|
package/config.schema.json
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
"title": "Config",
|
|
4
4
|
"description": "The Tauri configuration object.\n It is read from a file where you can define your frontend assets,\n configure the bundler and define a tray icon.\n\n The configuration file is generated by the\n [`tauri init`](https://tauri.app/v1/api/cli#init) command that lives in\n your Tauri application source directory (src-tauri).\n\n Once generated, you may modify it at will to customize your Tauri application.\n\n ## File Formats\n\n By default, the configuration is defined as a JSON file named `tauri.conf.json`.\n\n Tauri also supports JSON5 and TOML files via the `config-json5` and `config-toml` Cargo features, respectively.\n The JSON5 file name must be either `tauri.conf.json` or `tauri.conf.json5`.\n The TOML file name is `Tauri.toml`.\n\n ## Platform-Specific Configuration\n\n In addition to the default configuration file, Tauri can\n read a platform-specific configuration from `tauri.linux.conf.json`,\n `tauri.windows.conf.json`, `tauri.macos.conf.json`, `tauri.android.conf.json` and `tauri.ios.conf.json`\n (or `Tauri.linux.toml`, `Tauri.windows.toml`, `Tauri.macos.toml`, `Tauri.android.toml` and `Tauri.ios.toml` if the `Tauri.toml` format is used),\n which gets merged with the main configuration object.\n\n ## Configuration Structure\n\n The configuration is composed of the following objects:\n\n - [`app`](#appconfig): The Tauri configuration\n - [`build`](#buildconfig): The build configuration\n - [`bundle`](#bundleconfig): The bundle configurations\n - [`plugins`](#pluginconfig): The plugins configuration\n\n Example tauri.config.json file:\n\n ```json\n {\n \"productName\": \"tauri-app\",\n \"version\": \"0.1.0\",\n \"build\": {\n \"beforeBuildCommand\": \"\",\n \"beforeDevCommand\": \"\",\n \"devUrl\": \"../dist\",\n \"frontendDist\": \"../dist\"\n },\n \"app\": {\n \"security\": {\n \"csp\": null\n },\n \"windows\": [\n {\n \"fullscreen\": false,\n \"height\": 600,\n \"resizable\": true,\n \"title\": \"Tauri App\",\n \"width\": 800\n }\n ]\n },\n \"bundle\": {},\n \"plugins\": {}\n }\n ```",
|
|
5
5
|
"type": "object",
|
|
6
|
+
"required": [
|
|
7
|
+
"identifier"
|
|
8
|
+
],
|
|
6
9
|
"properties": {
|
|
7
10
|
"$schema": {
|
|
8
11
|
"description": "The JSON schema for the Tauri config.",
|
|
@@ -19,6 +22,13 @@
|
|
|
19
22
|
],
|
|
20
23
|
"pattern": "^[^/\\:*?\"<>|]+$"
|
|
21
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
|
+
},
|
|
22
32
|
"version": {
|
|
23
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.",
|
|
24
34
|
"type": [
|
|
@@ -27,8 +37,7 @@
|
|
|
27
37
|
]
|
|
28
38
|
},
|
|
29
39
|
"identifier": {
|
|
30
|
-
"description": "The application identifier in reverse domain name notation (e.g. `com.tauri.example`).\n This string must be unique across applications since it is used in system configurations like\n the bundle ID and path to the webview data directory.\n This string must contain only alphanumeric characters (A
|
|
31
|
-
"default": "",
|
|
40
|
+
"description": "The application identifier in reverse domain name notation (e.g. `com.tauri.example`).\n This string must be unique across applications since it is used in system configurations like\n the bundle ID and path to the webview data directory.\n This string must contain only alphanumeric characters (A-Z, a-z, and 0-9), hyphens (-),\n and periods (.).",
|
|
32
41
|
"type": "string"
|
|
33
42
|
},
|
|
34
43
|
"app": {
|
|
@@ -1746,9 +1755,7 @@
|
|
|
1746
1755
|
"anyOf": [
|
|
1747
1756
|
{
|
|
1748
1757
|
"description": "Bundle all targets.",
|
|
1749
|
-
"
|
|
1750
|
-
"all"
|
|
1751
|
-
]
|
|
1758
|
+
"const": "all"
|
|
1752
1759
|
},
|
|
1753
1760
|
{
|
|
1754
1761
|
"description": "A list of bundle targets.",
|
|
@@ -2673,7 +2680,7 @@
|
|
|
2673
2680
|
}
|
|
2674
2681
|
},
|
|
2675
2682
|
"obsoletes": {
|
|
2676
|
-
"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).",
|
|
2677
2684
|
"type": [
|
|
2678
2685
|
"array",
|
|
2679
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.14",
|
|
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.14",
|
|
67
|
+
"@tauri-apps/cli-darwin-x64": "2.0.0-rc.14",
|
|
68
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.14",
|
|
69
|
+
"@tauri-apps/cli-darwin-arm64": "2.0.0-rc.14",
|
|
70
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.14",
|
|
71
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.14",
|
|
72
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.14",
|
|
73
|
+
"@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.14",
|
|
74
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.14",
|
|
75
|
+
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.14"
|
|
76
76
|
}
|
|
77
77
|
}
|