@tauri-apps/cli 2.0.0-alpha.14 → 2.0.0-alpha.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 +15 -0
- package/package.json +11 -11
- package/schema.json +25 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.0.0-alpha.15]
|
|
4
|
+
|
|
5
|
+
### New Features
|
|
6
|
+
|
|
7
|
+
- [`b2f17723`](https://www.github.com/tauri-apps/tauri/commit/b2f17723a415f04c2620132a6305eb138d7cb47f)([#7971](https://www.github.com/tauri-apps/tauri/pull/7971)) Use `devicectl` to connect to iOS 17+ devices on macOS 14+.
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- [`100d9ede`](https://www.github.com/tauri-apps/tauri/commit/100d9ede35995d9db21d2087dd5606adfafb89a5)([#7802](https://www.github.com/tauri-apps/tauri/pull/7802)) Properly read platform-specific configuration files for mobile targets.
|
|
12
|
+
- [`228e5a4c`](https://www.github.com/tauri-apps/tauri/commit/228e5a4c76ad5f97409c912d07699b49ba4bb162)([#7902](https://www.github.com/tauri-apps/tauri/pull/7902)) Fixes `icon` command not writing files to the correct Android project folders.
|
|
13
|
+
|
|
14
|
+
### Dependencies
|
|
15
|
+
|
|
16
|
+
- Upgraded to `tauri-cli@2.0.0-alpha.15`
|
|
17
|
+
|
|
3
18
|
## \[2.0.0-alpha.14]
|
|
4
19
|
|
|
5
20
|
### Dependencies
|
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.15",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -70,15 +70,15 @@
|
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {},
|
|
72
72
|
"optionalDependencies": {
|
|
73
|
-
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.
|
|
74
|
-
"@tauri-apps/cli-darwin-x64": "2.0.0-alpha.
|
|
75
|
-
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.
|
|
76
|
-
"@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.
|
|
77
|
-
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.
|
|
78
|
-
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.
|
|
79
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.
|
|
80
|
-
"@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.
|
|
81
|
-
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.
|
|
82
|
-
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-alpha.
|
|
73
|
+
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.15",
|
|
74
|
+
"@tauri-apps/cli-darwin-x64": "2.0.0-alpha.15",
|
|
75
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.15",
|
|
76
|
+
"@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.15",
|
|
77
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.15",
|
|
78
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.15",
|
|
79
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.15",
|
|
80
|
+
"@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.15",
|
|
81
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.15",
|
|
82
|
+
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-alpha.15"
|
|
83
83
|
}
|
|
84
84
|
}
|
package/schema.json
CHANGED
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"additionalProperties": false,
|
|
114
114
|
"definitions": {
|
|
115
115
|
"PackageConfig": {
|
|
116
|
-
"description": "The package configuration.\n\nSee more: https://tauri.app/v1/api/config#packageconfig",
|
|
116
|
+
"description": "The package configuration.\n\nSee more: <https://tauri.app/v1/api/config#packageconfig>",
|
|
117
117
|
"type": "object",
|
|
118
118
|
"properties": {
|
|
119
119
|
"productName": {
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"additionalProperties": false
|
|
137
137
|
},
|
|
138
138
|
"TauriConfig": {
|
|
139
|
-
"description": "The Tauri configuration object.\n\nSee more: https://tauri.app/v1/api/config#tauriconfig",
|
|
139
|
+
"description": "The Tauri configuration object.\n\nSee more: <https://tauri.app/v1/api/config#tauriconfig>",
|
|
140
140
|
"type": "object",
|
|
141
141
|
"properties": {
|
|
142
142
|
"pattern": {
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
]
|
|
292
292
|
},
|
|
293
293
|
"WindowConfig": {
|
|
294
|
-
"description": "The window configuration object.\n\nSee more: https://tauri.app/v1/api/config#windowconfig",
|
|
294
|
+
"description": "The window configuration object.\n\nSee more: <https://tauri.app/v1/api/config#windowconfig>",
|
|
295
295
|
"type": "object",
|
|
296
296
|
"properties": {
|
|
297
297
|
"label": {
|
|
@@ -510,7 +510,7 @@
|
|
|
510
510
|
"type": "boolean"
|
|
511
511
|
},
|
|
512
512
|
"windowEffects": {
|
|
513
|
-
"description": "Window effects.\n\nRequires the window to be transparent.\n\n## Platform-specific:\n\n- **Windows**: If using decorations or shadows, you may want to try this workaround https://github.com/tauri-apps/tao/issues/72#issuecomment-975607891 - **Linux**: Unsupported",
|
|
513
|
+
"description": "Window effects.\n\nRequires the window to be transparent.\n\n## Platform-specific:\n\n- **Windows**: If using decorations or shadows, you may want to try this workaround <https://github.com/tauri-apps/tao/issues/72#issuecomment-975607891> - **Linux**: Unsupported",
|
|
514
514
|
"anyOf": [
|
|
515
515
|
{
|
|
516
516
|
"$ref": "#/definitions/WindowEffectsConfig"
|
|
@@ -867,7 +867,7 @@
|
|
|
867
867
|
"minItems": 4
|
|
868
868
|
},
|
|
869
869
|
"BundleConfig": {
|
|
870
|
-
"description": "Configuration for tauri-bundler.\n\nSee more: https://tauri.app/v1/api/config#bundleconfig",
|
|
870
|
+
"description": "Configuration for tauri-bundler.\n\nSee more: <https://tauri.app/v1/api/config#bundleconfig>",
|
|
871
871
|
"type": "object",
|
|
872
872
|
"required": [
|
|
873
873
|
"identifier"
|
|
@@ -1229,7 +1229,7 @@
|
|
|
1229
1229
|
]
|
|
1230
1230
|
},
|
|
1231
1231
|
"AppImageConfig": {
|
|
1232
|
-
"description": "Configuration for AppImage bundles.\n\nSee more: https://tauri.app/v1/api/config#appimageconfig",
|
|
1232
|
+
"description": "Configuration for AppImage bundles.\n\nSee more: <https://tauri.app/v1/api/config#appimageconfig>",
|
|
1233
1233
|
"type": "object",
|
|
1234
1234
|
"properties": {
|
|
1235
1235
|
"bundleMediaFramework": {
|
|
@@ -1241,7 +1241,7 @@
|
|
|
1241
1241
|
"additionalProperties": false
|
|
1242
1242
|
},
|
|
1243
1243
|
"DebConfig": {
|
|
1244
|
-
"description": "Configuration for Debian (.deb) bundles.\n\nSee more: https://tauri.app/v1/api/config#debconfig",
|
|
1244
|
+
"description": "Configuration for Debian (.deb) bundles.\n\nSee more: <https://tauri.app/v1/api/config#debconfig>",
|
|
1245
1245
|
"type": "object",
|
|
1246
1246
|
"properties": {
|
|
1247
1247
|
"depends": {
|
|
@@ -1273,7 +1273,7 @@
|
|
|
1273
1273
|
"additionalProperties": false
|
|
1274
1274
|
},
|
|
1275
1275
|
"MacConfig": {
|
|
1276
|
-
"description": "Configuration for the macOS bundles.\n\nSee more: https://tauri.app/v1/api/config#macconfig",
|
|
1276
|
+
"description": "Configuration for the macOS bundles.\n\nSee more: <https://tauri.app/v1/api/config#macconfig>",
|
|
1277
1277
|
"type": "object",
|
|
1278
1278
|
"properties": {
|
|
1279
1279
|
"frameworks": {
|
|
@@ -1333,7 +1333,7 @@
|
|
|
1333
1333
|
"additionalProperties": false
|
|
1334
1334
|
},
|
|
1335
1335
|
"WindowsConfig": {
|
|
1336
|
-
"description": "Windows bundler configuration.\n\nSee more: https://tauri.app/v1/api/config#windowsconfig",
|
|
1336
|
+
"description": "Windows bundler configuration.\n\nSee more: <https://tauri.app/v1/api/config#windowsconfig>",
|
|
1337
1337
|
"type": "object",
|
|
1338
1338
|
"properties": {
|
|
1339
1339
|
"digestAlgorithm": {
|
|
@@ -1517,7 +1517,7 @@
|
|
|
1517
1517
|
]
|
|
1518
1518
|
},
|
|
1519
1519
|
"WixConfig": {
|
|
1520
|
-
"description": "Configuration for the MSI bundle using WiX.\n\nSee more: https://tauri.app/v1/api/config#wixconfig",
|
|
1520
|
+
"description": "Configuration for the MSI bundle using WiX.\n\nSee more: <https://tauri.app/v1/api/config#wixconfig>",
|
|
1521
1521
|
"type": "object",
|
|
1522
1522
|
"properties": {
|
|
1523
1523
|
"language": {
|
|
@@ -1642,7 +1642,7 @@
|
|
|
1642
1642
|
]
|
|
1643
1643
|
},
|
|
1644
1644
|
"WixLanguageConfig": {
|
|
1645
|
-
"description": "Configuration for a target language for the WiX build.\n\nSee more: https://tauri.app/v1/api/config#wixlanguageconfig",
|
|
1645
|
+
"description": "Configuration for a target language for the WiX build.\n\nSee more: <https://tauri.app/v1/api/config#wixlanguageconfig>",
|
|
1646
1646
|
"type": "object",
|
|
1647
1647
|
"properties": {
|
|
1648
1648
|
"localePath": {
|
|
@@ -1786,7 +1786,7 @@
|
|
|
1786
1786
|
"additionalProperties": false
|
|
1787
1787
|
},
|
|
1788
1788
|
"UpdaterConfig": {
|
|
1789
|
-
"description": "The Updater configuration object.\n\nSee more: https://tauri.app/v1/api/config#updaterconfig",
|
|
1789
|
+
"description": "The Updater configuration object.\n\nSee more: <https://tauri.app/v1/api/config#updaterconfig>",
|
|
1790
1790
|
"type": "object",
|
|
1791
1791
|
"properties": {
|
|
1792
1792
|
"active": {
|
|
@@ -1814,7 +1814,7 @@
|
|
|
1814
1814
|
"additionalProperties": false
|
|
1815
1815
|
},
|
|
1816
1816
|
"UpdaterWindowsConfig": {
|
|
1817
|
-
"description": "The updater configuration for Windows.\n\nSee more: https://tauri.app/v1/api/config#updaterwindowsconfig",
|
|
1817
|
+
"description": "The updater configuration for Windows.\n\nSee more: <https://tauri.app/v1/api/config#updaterwindowsconfig>",
|
|
1818
1818
|
"type": "object",
|
|
1819
1819
|
"properties": {
|
|
1820
1820
|
"installMode": {
|
|
@@ -1856,7 +1856,7 @@
|
|
|
1856
1856
|
]
|
|
1857
1857
|
},
|
|
1858
1858
|
"SecurityConfig": {
|
|
1859
|
-
"description": "Security configuration.\n\nSee more: https://tauri.app/v1/api/config#securityconfig",
|
|
1859
|
+
"description": "Security configuration.\n\nSee more: <https://tauri.app/v1/api/config#securityconfig>",
|
|
1860
1860
|
"type": "object",
|
|
1861
1861
|
"properties": {
|
|
1862
1862
|
"csp": {
|
|
@@ -2004,7 +2004,7 @@
|
|
|
2004
2004
|
"additionalProperties": false
|
|
2005
2005
|
},
|
|
2006
2006
|
"AssetProtocolConfig": {
|
|
2007
|
-
"description": "Config for the asset custom protocol.\n\nSee more: https://tauri.app/v1/api/config#assetprotocolconfig",
|
|
2007
|
+
"description": "Config for the asset custom protocol.\n\nSee more: <https://tauri.app/v1/api/config#assetprotocolconfig>",
|
|
2008
2008
|
"type": "object",
|
|
2009
2009
|
"properties": {
|
|
2010
2010
|
"scope": {
|
|
@@ -2066,12 +2066,19 @@
|
|
|
2066
2066
|
]
|
|
2067
2067
|
},
|
|
2068
2068
|
"TrayIconConfig": {
|
|
2069
|
-
"description": "Configuration for application tray icon.\n\nSee more: https://tauri.app/v1/api/config#trayiconconfig",
|
|
2069
|
+
"description": "Configuration for application tray icon.\n\nSee more: <https://tauri.app/v1/api/config#trayiconconfig>",
|
|
2070
2070
|
"type": "object",
|
|
2071
2071
|
"required": [
|
|
2072
2072
|
"iconPath"
|
|
2073
2073
|
],
|
|
2074
2074
|
"properties": {
|
|
2075
|
+
"id": {
|
|
2076
|
+
"description": "Set an id for this tray icon so you can reference it later, defaults to `main`.",
|
|
2077
|
+
"type": [
|
|
2078
|
+
"string",
|
|
2079
|
+
"null"
|
|
2080
|
+
]
|
|
2081
|
+
},
|
|
2075
2082
|
"iconPath": {
|
|
2076
2083
|
"description": "Path to the default icon to use for the tray icon.",
|
|
2077
2084
|
"type": "string"
|
|
@@ -2104,7 +2111,7 @@
|
|
|
2104
2111
|
"additionalProperties": false
|
|
2105
2112
|
},
|
|
2106
2113
|
"BuildConfig": {
|
|
2107
|
-
"description": "The Build configuration object.\n\nSee more: https://tauri.app/v1/api/config#buildconfig",
|
|
2114
|
+
"description": "The Build configuration object.\n\nSee more: <https://tauri.app/v1/api/config#buildconfig>",
|
|
2108
2115
|
"type": "object",
|
|
2109
2116
|
"properties": {
|
|
2110
2117
|
"runner": {
|
|
@@ -2267,7 +2274,7 @@
|
|
|
2267
2274
|
]
|
|
2268
2275
|
},
|
|
2269
2276
|
"PluginConfig": {
|
|
2270
|
-
"description": "The plugin configs holds a HashMap mapping a plugin name to its configuration object.\n\nSee more: https://tauri.app/v1/api/config#pluginconfig",
|
|
2277
|
+
"description": "The plugin configs holds a HashMap mapping a plugin name to its configuration object.\n\nSee more: <https://tauri.app/v1/api/config#pluginconfig>",
|
|
2271
2278
|
"type": "object",
|
|
2272
2279
|
"additionalProperties": true
|
|
2273
2280
|
}
|