@tauri-apps/cli 1.0.0-rc.4 → 1.0.0-rc.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 +34 -0
- package/Cargo.toml +2 -2
- package/index.d.ts +0 -6
- package/package.json +15 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.0.0-rc.8]
|
|
4
|
+
|
|
5
|
+
- Allows the `tauri.conf.json` file to be git ignored on the path lookup function.
|
|
6
|
+
- [cc7c2d77](https://www.github.com/tauri-apps/tauri/commit/cc7c2d77da2e4a39ec2a97b080d41a719e6d0161) feat(cli): allow conf path to be gitignored, closes [#3636](https://www.github.com/tauri-apps/tauri/pull/3636) ([#3683](https://www.github.com/tauri-apps/tauri/pull/3683)) on 2022-03-13
|
|
7
|
+
- Remove `minimumSystemVersion: null` from the application template configuration.
|
|
8
|
+
- [c81534eb](https://www.github.com/tauri-apps/tauri/commit/c81534ebd873c358e0346c7949aeb171803149a5) feat(cli): use default macOS minimum system version when it is empty ([#3658](https://www.github.com/tauri-apps/tauri/pull/3658)) on 2022-03-13
|
|
9
|
+
- Improve readability of the `info` subcommand output.
|
|
10
|
+
- [49d2f13f](https://www.github.com/tauri-apps/tauri/commit/49d2f13fc07d763d5de9bf4b19d00c901776c11d) feat(cli): colorful cli ([#3635](https://www.github.com/tauri-apps/tauri/pull/3635)) on 2022-03-08
|
|
11
|
+
- Fixes DMG bundling on macOS 12.3.
|
|
12
|
+
- [348a1ab5](https://www.github.com/tauri-apps/tauri/commit/348a1ab59d2697478a594016016f1fccbf1ac054) fix(bundler): DMG bundling on macOS 12.3 cannot use bless, closes [#3719](https://www.github.com/tauri-apps/tauri/pull/3719) ([#3721](https://www.github.com/tauri-apps/tauri/pull/3721)) on 2022-03-18
|
|
13
|
+
- Fixes resources bundling on Windows when the path is on the root of the Tauri folder.
|
|
14
|
+
- [4c84559e](https://www.github.com/tauri-apps/tauri/commit/4c84559e1f3019e7aa2666b10a1a0bd97bb09d24) fix(cli): root resource bundling on Windows, closes [#3539](https://www.github.com/tauri-apps/tauri/pull/3539) ([#3685](https://www.github.com/tauri-apps/tauri/pull/3685)) on 2022-03-13
|
|
15
|
+
|
|
16
|
+
## \[1.0.0-rc.6]
|
|
17
|
+
|
|
18
|
+
- Added `tsp` config option under `tauri > bundle > windows`, which enables Time-Stamp Protocol (RFC 3161) for the timestamping
|
|
19
|
+
server under code signing on Windows if set to `true`.
|
|
20
|
+
- [bdd5f7c2](https://www.github.com/tauri-apps/tauri/commit/bdd5f7c2f03af4af8b60a9527e55bb18525d989b) fix: add support for Time-Stamping Protocol for Windows codesigning (fix [#3563](https://www.github.com/tauri-apps/tauri/pull/3563)) ([#3570](https://www.github.com/tauri-apps/tauri/pull/3570)) on 2022-03-07
|
|
21
|
+
- Added `i686-pc-windows-msvc` to the prebuilt targets.
|
|
22
|
+
- [fb6744da](https://www.github.com/tauri-apps/tauri/commit/fb6744daa45165c7e00e5c01f7df0880d69ca509) feat(cli.js): add 32bit cli for windows ([#3540](https://www.github.com/tauri-apps/tauri/pull/3540)) on 2022-02-24
|
|
23
|
+
- Change the `plugin init` templates to use the new `tauri::plugin::Builder` syntax.
|
|
24
|
+
- [f7acb061](https://www.github.com/tauri-apps/tauri/commit/f7acb061e4d1ecdbfe182793587632d7ba6d8eff) feat(cli): use plugin::Builder syntax on the plugin template ([#3606](https://www.github.com/tauri-apps/tauri/pull/3606)) on 2022-03-03
|
|
25
|
+
|
|
26
|
+
## \[1.0.0-rc.5]
|
|
27
|
+
|
|
28
|
+
- Improve "waiting for your dev server to start" message.
|
|
29
|
+
- [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
|
|
30
|
+
- Do not panic if the updater private key password is wrong.
|
|
31
|
+
- [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
|
|
32
|
+
- Check the current folder before checking the directories on the app and tauri dir path lookup function.
|
|
33
|
+
- [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
|
|
34
|
+
- Fixes the signature of the `signer sign` command to not have duplicated short flags.
|
|
35
|
+
- [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
|
|
36
|
+
|
|
3
37
|
## \[1.0.0-rc.4]
|
|
4
38
|
|
|
5
39
|
- 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.2", default-features = false, features = ["napi4"] }
|
|
12
|
+
napi-derive = "2.2"
|
|
13
13
|
tauri-cli = { path = ".." }
|
|
14
14
|
|
|
15
15
|
[build-dependencies]
|
package/index.d.ts
CHANGED
|
@@ -3,10 +3,4 @@
|
|
|
3
3
|
|
|
4
4
|
/* auto-generated by NAPI-RS */
|
|
5
5
|
|
|
6
|
-
export class ExternalObject<T> {
|
|
7
|
-
readonly '': {
|
|
8
|
-
readonly '': unique symbol
|
|
9
|
-
[K: symbol]: T
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
6
|
export function run(args: Array<string>, binName: string | undefined | null, callback: (...args: any[]) => any): void
|
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.8",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -31,17 +31,18 @@
|
|
|
31
31
|
"aarch64-unknown-linux-gnu",
|
|
32
32
|
"aarch64-unknown-linux-musl",
|
|
33
33
|
"armv7-unknown-linux-gnueabihf",
|
|
34
|
-
"x86_64-unknown-linux-musl"
|
|
34
|
+
"x86_64-unknown-linux-musl",
|
|
35
|
+
"i686-pc-windows-msvc"
|
|
35
36
|
]
|
|
36
37
|
}
|
|
37
38
|
},
|
|
38
39
|
"devDependencies": {
|
|
39
|
-
"@napi-rs/cli": "2.
|
|
40
|
+
"@napi-rs/cli": "2.5.0",
|
|
40
41
|
"cross-spawn": "7.0.3",
|
|
41
|
-
"fs-extra": "10.0.
|
|
42
|
+
"fs-extra": "10.0.1",
|
|
42
43
|
"jest": "27.5.1",
|
|
43
44
|
"jest-transform-toml": "1.0.0",
|
|
44
|
-
"prettier": "2.
|
|
45
|
+
"prettier": "2.6.0"
|
|
45
46
|
},
|
|
46
47
|
"engines": {
|
|
47
48
|
"node": ">= 10"
|
|
@@ -61,13 +62,14 @@
|
|
|
61
62
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
62
63
|
},
|
|
63
64
|
"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.
|
|
65
|
+
"@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.8",
|
|
66
|
+
"@tauri-apps/cli-darwin-x64": "1.0.0-rc.8",
|
|
67
|
+
"@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.8",
|
|
68
|
+
"@tauri-apps/cli-darwin-arm64": "1.0.0-rc.8",
|
|
69
|
+
"@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.8",
|
|
70
|
+
"@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.8",
|
|
71
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.8",
|
|
72
|
+
"@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.8",
|
|
73
|
+
"@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.8"
|
|
72
74
|
}
|
|
73
75
|
}
|