@tauri-apps/cli 2.0.0-alpha.6 → 2.0.0-alpha.8
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 +18 -0
- package/package.json +10 -10
- package/schema.json +31 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.0.0-alpha.8]
|
|
4
|
+
|
|
5
|
+
- Do not gitignore the Android project's `buildSrc` folder by default since we removed absolute paths from it.
|
|
6
|
+
- [ee2d3b97](https://www.github.com/tauri-apps/tauri/commit/ee2d3b971df6d3630b8d935394fb4febcfa3a909) fix(cli): remove buildSrc from Android project gitignored paths ([#6702](https://www.github.com/tauri-apps/tauri/pull/6702)) on 2023-04-13
|
|
7
|
+
- Fixes iOS build script using the wrong path for the app library file.
|
|
8
|
+
- [abc5f91f](https://www.github.com/tauri-apps/tauri/commit/abc5f91fa3569efc9dfdee46d1c501eda8755944) fix(cli): iOS Xcode script using incorrect library path ([#6699](https://www.github.com/tauri-apps/tauri/pull/6699)) on 2023-04-13
|
|
9
|
+
|
|
10
|
+
## \[2.0.0-alpha.7]
|
|
11
|
+
|
|
12
|
+
- Add `--release` flag for `tauri android dev` however you will need to sign your Android app, see https://next--tauri.netlify.app/next/guides/distribution/sign-android
|
|
13
|
+
- [63f088e5](https://www.github.com/tauri-apps/tauri/commit/63f088e5fc9701fd7fb329dad7ffb27a2d8fd5aa) feat(cli): add `--release` for `android dev` ([#6638](https://www.github.com/tauri-apps/tauri/pull/6638)) on 2023-04-05
|
|
14
|
+
- Build only specified rust targets for `tauri android build` instead of all.
|
|
15
|
+
- [d03e47d1](https://www.github.com/tauri-apps/tauri/commit/d03e47d141c3917520975be9081775dbc4e9d4fd) fix: only build specified rust targets for aab/apk build ([#6625](https://www.github.com/tauri-apps/tauri/pull/6625)) on 2023-04-05
|
|
16
|
+
- Use local ip address for built-in dev server on mobile.
|
|
17
|
+
- [7fec0f08](https://www.github.com/tauri-apps/tauri/commit/7fec0f083c932dc63ccb8716080d97e2ab985b25) fix(cli): use local ip addr for built-in server on mobile, closes [#6454](https://www.github.com/tauri-apps/tauri/pull/6454) ([#6631](https://www.github.com/tauri-apps/tauri/pull/6631)) on 2023-04-04
|
|
18
|
+
- Readd the Cargo.toml file to the plugin template.
|
|
19
|
+
- [5288a386](https://www.github.com/tauri-apps/tauri/commit/5288a386f1bf8ac11f991350463c3f5c20983f43) fix(cli): readd Cargo.toml to the plugin template ([#6637](https://www.github.com/tauri-apps/tauri/pull/6637)) on 2023-04-04
|
|
20
|
+
|
|
3
21
|
## \[2.0.0-alpha.6]
|
|
4
22
|
|
|
5
23
|
- Use Ubuntu 20.04 to compile the CLI, increasing the minimum libc version required.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.8",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -67,14 +67,14 @@
|
|
|
67
67
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
68
68
|
},
|
|
69
69
|
"optionalDependencies": {
|
|
70
|
-
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.
|
|
71
|
-
"@tauri-apps/cli-darwin-x64": "2.0.0-alpha.
|
|
72
|
-
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.
|
|
73
|
-
"@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.
|
|
74
|
-
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.
|
|
75
|
-
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.
|
|
76
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.
|
|
77
|
-
"@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.
|
|
78
|
-
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.
|
|
70
|
+
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.8",
|
|
71
|
+
"@tauri-apps/cli-darwin-x64": "2.0.0-alpha.8",
|
|
72
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.8",
|
|
73
|
+
"@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.8",
|
|
74
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.8",
|
|
75
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.8",
|
|
76
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.8",
|
|
77
|
+
"@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.8",
|
|
78
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.8"
|
|
79
79
|
}
|
|
80
80
|
}
|
package/schema.json
CHANGED
|
@@ -131,6 +131,9 @@
|
|
|
131
131
|
},
|
|
132
132
|
"bundle": {
|
|
133
133
|
"active": false,
|
|
134
|
+
"android": {
|
|
135
|
+
"minSdkVersion": 24
|
|
136
|
+
},
|
|
134
137
|
"appimage": {
|
|
135
138
|
"bundleMediaFramework": false
|
|
136
139
|
},
|
|
@@ -270,6 +273,9 @@
|
|
|
270
273
|
"description": "The bundler configuration.",
|
|
271
274
|
"default": {
|
|
272
275
|
"active": false,
|
|
276
|
+
"android": {
|
|
277
|
+
"minSdkVersion": 24
|
|
278
|
+
},
|
|
273
279
|
"appimage": {
|
|
274
280
|
"bundleMediaFramework": false
|
|
275
281
|
},
|
|
@@ -1169,6 +1175,17 @@
|
|
|
1169
1175
|
"$ref": "#/definitions/IosConfig"
|
|
1170
1176
|
}
|
|
1171
1177
|
]
|
|
1178
|
+
},
|
|
1179
|
+
"android": {
|
|
1180
|
+
"description": "Android configuration.",
|
|
1181
|
+
"default": {
|
|
1182
|
+
"minSdkVersion": 24
|
|
1183
|
+
},
|
|
1184
|
+
"allOf": [
|
|
1185
|
+
{
|
|
1186
|
+
"$ref": "#/definitions/AndroidConfig"
|
|
1187
|
+
}
|
|
1188
|
+
]
|
|
1172
1189
|
}
|
|
1173
1190
|
},
|
|
1174
1191
|
"additionalProperties": false
|
|
@@ -1772,6 +1789,20 @@
|
|
|
1772
1789
|
},
|
|
1773
1790
|
"additionalProperties": false
|
|
1774
1791
|
},
|
|
1792
|
+
"AndroidConfig": {
|
|
1793
|
+
"description": "General configuration for the iOS target.",
|
|
1794
|
+
"type": "object",
|
|
1795
|
+
"properties": {
|
|
1796
|
+
"minSdkVersion": {
|
|
1797
|
+
"description": "The minimum API level required for the application to run. The Android system will prevent the user from installing the application if the system's API level is lower than the value specified.",
|
|
1798
|
+
"default": 24,
|
|
1799
|
+
"type": "integer",
|
|
1800
|
+
"format": "uint32",
|
|
1801
|
+
"minimum": 0.0
|
|
1802
|
+
}
|
|
1803
|
+
},
|
|
1804
|
+
"additionalProperties": false
|
|
1805
|
+
},
|
|
1775
1806
|
"AllowlistConfig": {
|
|
1776
1807
|
"description": "Allowlist configuration. The allowlist is a translation of the [Cargo allowlist features](https://docs.rs/tauri/latest/tauri/#cargo-allowlist-features).\n\n# Notes\n\n- Endpoints that don't have their own allowlist option are enabled by default. - There is only \"opt-in\", no \"opt-out\". Setting an option to `false` has no effect.\n\n# Examples\n\n- * [`\"app-all\": true`](https://tauri.app/v1/api/config/#appallowlistconfig.all) will make the [hide](https://tauri.app/v1/api/js/app#hide) endpoint be available regardless of whether `hide` is set to `false` or `true` in the allowlist.",
|
|
1777
1808
|
"type": "object",
|