@tauri-apps/cli 1.0.0-rc.4 → 1.0.0-rc.5
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 +11 -0
- package/Cargo.toml +2 -2
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.0.0-rc.5]
|
|
4
|
+
|
|
5
|
+
- Improve "waiting for your dev server to start" message.
|
|
6
|
+
- [5999379f](https://www.github.com/tauri-apps/tauri/commit/5999379fb06052a115f04f99274ab46d1eefd659) chore(cli): improve "waiting for dev server" message, closes [#3491](https://www.github.com/tauri-apps/tauri/pull/3491) ([#3504](https://www.github.com/tauri-apps/tauri/pull/3504)) on 2022-02-18
|
|
7
|
+
- Do not panic if the updater private key password is wrong.
|
|
8
|
+
- [17f17a80](https://www.github.com/tauri-apps/tauri/commit/17f17a80f818bcc20c387583a6ff00a8e07ec533) fix(cli): do not panic if private key password is wrong, closes [#3449](https://www.github.com/tauri-apps/tauri/pull/3449) ([#3495](https://www.github.com/tauri-apps/tauri/pull/3495)) on 2022-02-17
|
|
9
|
+
- Check the current folder before checking the directories on the app and tauri dir path lookup function.
|
|
10
|
+
- [a06de376](https://www.github.com/tauri-apps/tauri/commit/a06de3760184caa71acfe7a2fe2189a033b565f5) fix(cli): path lookup should not check subfolder before the current one ([#3465](https://www.github.com/tauri-apps/tauri/pull/3465)) on 2022-02-15
|
|
11
|
+
- Fixes the signature of the `signer sign` command to not have duplicated short flags.
|
|
12
|
+
- [a9755514](https://www.github.com/tauri-apps/tauri/commit/a975551461f3698db3f3b6afa5101189aaeeada9) fix(cli): duplicated short flag for `signer sign`, closes [#3483](https://www.github.com/tauri-apps/tauri/pull/3483) ([#3492](https://www.github.com/tauri-apps/tauri/pull/3492)) on 2022-02-17
|
|
13
|
+
|
|
3
14
|
## \[1.0.0-rc.4]
|
|
4
15
|
|
|
5
16
|
- Change the `run` function to take a callback and run asynchronously instead of blocking the event loop.
|
package/Cargo.toml
CHANGED
|
@@ -8,8 +8,8 @@ crate-type = ["cdylib"]
|
|
|
8
8
|
|
|
9
9
|
[dependencies]
|
|
10
10
|
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
|
|
11
|
-
napi = { version = "2.
|
|
12
|
-
napi-derive = "2.
|
|
11
|
+
napi = { version = "2.1", default-features = false, features = ["napi4"] }
|
|
12
|
+
napi-derive = "2.1"
|
|
13
13
|
tauri-cli = { path = ".." }
|
|
14
14
|
|
|
15
15
|
[build-dependencies]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.5",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@napi-rs/cli": "2.4.
|
|
39
|
+
"@napi-rs/cli": "2.4.4",
|
|
40
40
|
"cross-spawn": "7.0.3",
|
|
41
41
|
"fs-extra": "10.0.0",
|
|
42
42
|
"jest": "27.5.1",
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
62
62
|
},
|
|
63
63
|
"optionalDependencies": {
|
|
64
|
-
"@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.
|
|
65
|
-
"@tauri-apps/cli-darwin-x64": "1.0.0-rc.
|
|
66
|
-
"@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.
|
|
67
|
-
"@tauri-apps/cli-darwin-arm64": "1.0.0-rc.
|
|
68
|
-
"@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.
|
|
69
|
-
"@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.
|
|
70
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.
|
|
71
|
-
"@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.
|
|
64
|
+
"@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.5",
|
|
65
|
+
"@tauri-apps/cli-darwin-x64": "1.0.0-rc.5",
|
|
66
|
+
"@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.5",
|
|
67
|
+
"@tauri-apps/cli-darwin-arm64": "1.0.0-rc.5",
|
|
68
|
+
"@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.5",
|
|
69
|
+
"@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.5",
|
|
70
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.5",
|
|
71
|
+
"@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.5"
|
|
72
72
|
}
|
|
73
73
|
}
|