@tauri-apps/cli 2.9.2 → 2.9.4
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 +20 -0
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.9.4]
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- [`b586ecf1f`](https://www.github.com/tauri-apps/tauri/commit/b586ecf1f4b3b087f9aa6c4668c2c18b1b7925f4) ([#14416](https://www.github.com/tauri-apps/tauri/pull/14416) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Premultiply Alpha before Resizing which gets rid of the gray fringe around the icons for svg images.
|
|
8
|
+
|
|
9
|
+
### Dependencies
|
|
10
|
+
|
|
11
|
+
- Upgraded to `tauri-cli@2.9.4`
|
|
12
|
+
|
|
13
|
+
## \[2.9.3]
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- [`fd8c30b4f`](https://www.github.com/tauri-apps/tauri/commit/fd8c30b4f1bca8dd7165c5c0ebe7fbfd17662153) ([#14353](https://www.github.com/tauri-apps/tauri/pull/14353) by [@ChaseKnowlden](https://www.github.com/tauri-apps/tauri/../../ChaseKnowlden)) Premultiply Alpha before Resizing which gets rid of the gray fringe around the icons.
|
|
18
|
+
|
|
19
|
+
### Dependencies
|
|
20
|
+
|
|
21
|
+
- Upgraded to `tauri-cli@2.9.3`
|
|
22
|
+
|
|
3
23
|
## \[2.9.2]
|
|
4
24
|
|
|
5
25
|
### Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.4",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"funding": {
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@napi-rs/cli": "^3.0.0",
|
|
45
|
-
"@types/node": "^
|
|
45
|
+
"@types/node": "^24.0.0",
|
|
46
46
|
"cross-env": "10.1.0",
|
|
47
|
-
"vitest": "^
|
|
47
|
+
"vitest": "^4.0.0"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">= 10"
|
|
@@ -65,16 +65,16 @@
|
|
|
65
65
|
"tauri": "node ./tauri.js"
|
|
66
66
|
},
|
|
67
67
|
"optionalDependencies": {
|
|
68
|
-
"@tauri-apps/cli-linux-x64-gnu": "2.9.
|
|
69
|
-
"@tauri-apps/cli-win32-x64-msvc": "2.9.
|
|
70
|
-
"@tauri-apps/cli-darwin-x64": "2.9.
|
|
71
|
-
"@tauri-apps/cli-darwin-arm64": "2.9.
|
|
72
|
-
"@tauri-apps/cli-linux-arm64-gnu": "2.9.
|
|
73
|
-
"@tauri-apps/cli-linux-arm64-musl": "2.9.
|
|
74
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "2.9.
|
|
75
|
-
"@tauri-apps/cli-linux-x64-musl": "2.9.
|
|
76
|
-
"@tauri-apps/cli-linux-riscv64-gnu": "2.9.
|
|
77
|
-
"@tauri-apps/cli-win32-ia32-msvc": "2.9.
|
|
78
|
-
"@tauri-apps/cli-win32-arm64-msvc": "2.9.
|
|
68
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.9.4",
|
|
69
|
+
"@tauri-apps/cli-win32-x64-msvc": "2.9.4",
|
|
70
|
+
"@tauri-apps/cli-darwin-x64": "2.9.4",
|
|
71
|
+
"@tauri-apps/cli-darwin-arm64": "2.9.4",
|
|
72
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.9.4",
|
|
73
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.9.4",
|
|
74
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.9.4",
|
|
75
|
+
"@tauri-apps/cli-linux-x64-musl": "2.9.4",
|
|
76
|
+
"@tauri-apps/cli-linux-riscv64-gnu": "2.9.4",
|
|
77
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.9.4",
|
|
78
|
+
"@tauri-apps/cli-win32-arm64-msvc": "2.9.4"
|
|
79
79
|
}
|
|
80
80
|
}
|