@tauri-apps/cli 1.3.0 → 1.3.1
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 +23 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.3.1]
|
|
4
|
+
|
|
5
|
+
- Correctly escape XML for resource files in WiX bundler.
|
|
6
|
+
- Bumped due to a bump in tauri-bundler.
|
|
7
|
+
- Bumped due to a bump in cli.rs.
|
|
8
|
+
- [6a6b1388](https://www.github.com/tauri-apps/tauri/commit/6a6b1388ea5787aea4c0e0b0701a4772087bbc0f) fix(bundler): correctly escape resource xml, fixes [#6853](https://www.github.com/tauri-apps/tauri/pull/6853) ([#6855](https://www.github.com/tauri-apps/tauri/pull/6855)) on 2023-05-04
|
|
9
|
+
|
|
10
|
+
- Added the following languages to the NSIS bundler:
|
|
11
|
+
|
|
12
|
+
- `Spanish`
|
|
13
|
+
|
|
14
|
+
- `SpanishInternational`
|
|
15
|
+
|
|
16
|
+
- Bumped due to a bump in tauri-bundler.
|
|
17
|
+
- Bumped due to a bump in cli.rs.
|
|
18
|
+
|
|
19
|
+
- [422b4817](https://www.github.com/tauri-apps/tauri/commit/422b48179856504e980a156500afa8e22c44d357) Add Spanish and SpanishInternational languages ([#6871](https://www.github.com/tauri-apps/tauri/pull/6871)) on 2023-05-06
|
|
20
|
+
|
|
21
|
+
- Correctly escape arguments in NSIS script to fix bundling apps that use non-default WebView2 install modes.
|
|
22
|
+
- Bumped due to a bump in tauri-bundler.
|
|
23
|
+
- Bumped due to a bump in cli.rs.
|
|
24
|
+
- [2915bd06](https://www.github.com/tauri-apps/tauri/commit/2915bd068ed40dc01a363b69212c6b6f2d3ec01e) fix(bundler): Fix webview install modes in NSIS bundler ([#6854](https://www.github.com/tauri-apps/tauri/pull/6854)) on 2023-05-04
|
|
25
|
+
|
|
3
26
|
## \[1.3.0]
|
|
4
27
|
|
|
5
28
|
- Add `--ci` flag and respect the `CI` environment variable on the `signer generate` command. In this case the default password will be an empty string and the CLI will not prompt for a value.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -67,14 +67,14 @@
|
|
|
67
67
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
68
68
|
},
|
|
69
69
|
"optionalDependencies": {
|
|
70
|
-
"@tauri-apps/cli-win32-x64-msvc": "1.3.
|
|
71
|
-
"@tauri-apps/cli-darwin-x64": "1.3.
|
|
72
|
-
"@tauri-apps/cli-linux-x64-gnu": "1.3.
|
|
73
|
-
"@tauri-apps/cli-darwin-arm64": "1.3.
|
|
74
|
-
"@tauri-apps/cli-linux-arm64-gnu": "1.3.
|
|
75
|
-
"@tauri-apps/cli-linux-arm64-musl": "1.3.
|
|
76
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "1.3.
|
|
77
|
-
"@tauri-apps/cli-linux-x64-musl": "1.3.
|
|
78
|
-
"@tauri-apps/cli-win32-ia32-msvc": "1.3.
|
|
70
|
+
"@tauri-apps/cli-win32-x64-msvc": "1.3.1",
|
|
71
|
+
"@tauri-apps/cli-darwin-x64": "1.3.1",
|
|
72
|
+
"@tauri-apps/cli-linux-x64-gnu": "1.3.1",
|
|
73
|
+
"@tauri-apps/cli-darwin-arm64": "1.3.1",
|
|
74
|
+
"@tauri-apps/cli-linux-arm64-gnu": "1.3.1",
|
|
75
|
+
"@tauri-apps/cli-linux-arm64-musl": "1.3.1",
|
|
76
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "1.3.1",
|
|
77
|
+
"@tauri-apps/cli-linux-x64-musl": "1.3.1",
|
|
78
|
+
"@tauri-apps/cli-win32-ia32-msvc": "1.3.1"
|
|
79
79
|
}
|
|
80
80
|
}
|