@tauri-apps/cli 1.0.0-rc.5 → 1.0.0-rc.7

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/index.d.ts +0 -6
  3. package/package.json +13 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.0.0-rc.6]
4
+
5
+ - Added `tsp` config option under `tauri > bundle > windows`, which enables Time-Stamp Protocol (RFC 3161) for the timestamping
6
+ server under code signing on Windows if set to `true`.
7
+ - [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
8
+ - Added `i686-pc-windows-msvc` to the prebuilt targets.
9
+ - [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
10
+ - Change the `plugin init` templates to use the new `tauri::plugin::Builder` syntax.
11
+ - [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
12
+
3
13
  ## \[1.0.0-rc.5]
4
14
 
5
15
  - Improve "waiting for your dev server to start" message.
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.5",
3
+ "version": "1.0.0-rc.7",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -31,14 +31,15 @@
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
40
  "@napi-rs/cli": "2.4.4",
40
41
  "cross-spawn": "7.0.3",
41
- "fs-extra": "10.0.0",
42
+ "fs-extra": "10.0.1",
42
43
  "jest": "27.5.1",
43
44
  "jest-transform-toml": "1.0.0",
44
45
  "prettier": "2.5.1"
@@ -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.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"
65
+ "@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.7",
66
+ "@tauri-apps/cli-darwin-x64": "1.0.0-rc.7",
67
+ "@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.7",
68
+ "@tauri-apps/cli-darwin-arm64": "1.0.0-rc.7",
69
+ "@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.7",
70
+ "@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.7",
71
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.7",
72
+ "@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.7",
73
+ "@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.7"
72
74
  }
73
75
  }