@tauri-apps/cli 2.0.0-beta.21 → 2.0.0-beta.22
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 +32 -0
- package/package.json +11 -11
- package/schema.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.0.0-beta.22]
|
|
4
|
+
|
|
5
|
+
### New Features
|
|
6
|
+
|
|
7
|
+
- [`7c7fa0964`](https://www.github.com/tauri-apps/tauri/commit/7c7fa0964db3403037fdb9a34de2b877ddb8df1c) ([#9963](https://www.github.com/tauri-apps/tauri/pull/9963) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Added `--method` argument for `ios build` to select the export options' method.
|
|
8
|
+
- [`7c7fa0964`](https://www.github.com/tauri-apps/tauri/commit/7c7fa0964db3403037fdb9a34de2b877ddb8df1c) ([#9963](https://www.github.com/tauri-apps/tauri/pull/9963) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Setup iOS signing by reading `IOS_CERTIFICATE`, `IOS_CERTIFICATE_PASSWORD` and `IOS_MOBILE_PROVISION` environment variables.
|
|
9
|
+
|
|
10
|
+
### Enhancements
|
|
11
|
+
|
|
12
|
+
- [`c01e87ad4`](https://www.github.com/tauri-apps/tauri/commit/c01e87ad46e2a5b3fb8d018739e724ef932008d7) ([#10198](https://www.github.com/tauri-apps/tauri/pull/10198) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Enhance `tauri migrate` to also migrate variables like `appWindow`:
|
|
13
|
+
|
|
14
|
+
```ts
|
|
15
|
+
import { appWindow } from '@tauri-apps/api/window'
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
will become:
|
|
19
|
+
|
|
20
|
+
```ts
|
|
21
|
+
import { getCurrentWebviewWindow } from '@tauri-apps/api/webviewWindow'
|
|
22
|
+
const appWindow = getCurrentWebviewWindow()
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
- [`94136578b`](https://www.github.com/tauri-apps/tauri/commit/94136578bc89e4b973c471050ae9c2d83ffcb7c6) ([#10186](https://www.github.com/tauri-apps/tauri/pull/10186) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Fix `migrate` command, migrating incorrect permissions for `clipboard`.
|
|
28
|
+
- [`c01e87ad4`](https://www.github.com/tauri-apps/tauri/commit/c01e87ad46e2a5b3fb8d018739e724ef932008d7) ([#10198](https://www.github.com/tauri-apps/tauri/pull/10198) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Fix `tauri migrate` incorrectly migrating `@tauri-apps/api/tauri` module to just `core` and `@tauri-apps/api/window` to just `webviewWindow`.
|
|
29
|
+
- [`15e125996`](https://www.github.com/tauri-apps/tauri/commit/15e12599667b749c3d7cd2259e6cf7c7b5c6e2be) ([#10234](https://www.github.com/tauri-apps/tauri/pull/10234) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Fix cli failing to detect the correct cargo target directory when using cargo `--target-dir` flag with `tauri build` or `tauri dev`
|
|
30
|
+
|
|
31
|
+
### Dependencies
|
|
32
|
+
|
|
33
|
+
- Upgraded to `tauri-cli@2.0.0-beta.22`
|
|
34
|
+
|
|
3
35
|
## \[2.0.0-beta.21]
|
|
4
36
|
|
|
5
37
|
### New Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.22",
|
|
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.
|
|
72
|
-
"@tauri-apps/cli-darwin-x64": "2.0.0-beta.
|
|
73
|
-
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.
|
|
74
|
-
"@tauri-apps/cli-darwin-arm64": "2.0.0-beta.
|
|
75
|
-
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.
|
|
76
|
-
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.
|
|
77
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.
|
|
78
|
-
"@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.
|
|
79
|
-
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.
|
|
80
|
-
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.
|
|
71
|
+
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.22",
|
|
72
|
+
"@tauri-apps/cli-darwin-x64": "2.0.0-beta.22",
|
|
73
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.22",
|
|
74
|
+
"@tauri-apps/cli-darwin-arm64": "2.0.0-beta.22",
|
|
75
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.22",
|
|
76
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.22",
|
|
77
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.22",
|
|
78
|
+
"@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.22",
|
|
79
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.22",
|
|
80
|
+
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.22"
|
|
81
81
|
}
|
|
82
82
|
}
|
package/schema.json
CHANGED
|
@@ -2347,7 +2347,7 @@
|
|
|
2347
2347
|
]
|
|
2348
2348
|
},
|
|
2349
2349
|
"installerHooks": {
|
|
2350
|
-
"description": "A path to a `.nsh` file that contains special NSIS macros to be hooked into the\n main installer.nsi script.\n\n Supported hooks are:\n - `NSIS_HOOK_PREINSTALL`: This hook runs before copying files, setting registry key values and creating shortcuts.\n - `NSIS_HOOK_POSTINSTALL`: This hook runs after the installer has finished copying all files, setting the registry keys and created shortcuts.\n - `NSIS_HOOK_PREUNINSTALL`: This hook runs before removing any files, registry keys and shortcuts.\n - `NSIS_HOOK_POSTUNINSTALL`: This hook runs after files, registry keys and shortcuts have been removed.\n\n\n ### Example\n\n ```nsh\n !
|
|
2350
|
+
"description": "A path to a `.nsh` file that contains special NSIS macros to be hooked into the\n main installer.nsi script.\n\n Supported hooks are:\n - `NSIS_HOOK_PREINSTALL`: This hook runs before copying files, setting registry key values and creating shortcuts.\n - `NSIS_HOOK_POSTINSTALL`: This hook runs after the installer has finished copying all files, setting the registry keys and created shortcuts.\n - `NSIS_HOOK_PREUNINSTALL`: This hook runs before removing any files, registry keys and shortcuts.\n - `NSIS_HOOK_POSTUNINSTALL`: This hook runs after files, registry keys and shortcuts have been removed.\n\n\n ### Example\n\n ```nsh\n !macro NSIS_HOOK_PREINSTALL\n MessageBox MB_OK \"PreInstall\"\n !macroend\n\n !macro NSIS_HOOK_POSTINSTALL\n MessageBox MB_OK \"PostInstall\"\n !macroend\n\n !macro NSIS_HOOK_PREUNINSTALL\n MessageBox MB_OK \"PreUnInstall\"\n !macroend\n\n !macro NSIS_HOOK_POSTUNINSTALL\n MessageBox MB_OK \"PostUninstall\"\n !macroend\n\n ```",
|
|
2351
2351
|
"type": [
|
|
2352
2352
|
"string",
|
|
2353
2353
|
"null"
|