@tauri-apps/cli 1.1.0 → 1.1.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 +5 -0
- package/package.json +10 -10
- package/schema.json +32 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.1.1]
|
|
4
|
+
|
|
5
|
+
- Fix wrong cli metadata that caused new projects (created through `tauri init`) fail to build
|
|
6
|
+
- [db26aaf2](https://www.github.com/tauri-apps/tauri/commit/db26aaf2b44ce5335c9223c571ef2b2175e0cd6d) fix: fix wrong cli metadata ([#5214](https://www.github.com/tauri-apps/tauri/pull/5214)) on 2022-09-16
|
|
7
|
+
|
|
3
8
|
## \[1.1.0]
|
|
4
9
|
|
|
5
10
|
- Allow adding `build > beforeBundleCommand` in tauri.conf.json to run a shell command before the bundling phase.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -64,14 +64,14 @@
|
|
|
64
64
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
65
65
|
},
|
|
66
66
|
"optionalDependencies": {
|
|
67
|
-
"@tauri-apps/cli-win32-x64-msvc": "1.1.
|
|
68
|
-
"@tauri-apps/cli-darwin-x64": "1.1.
|
|
69
|
-
"@tauri-apps/cli-linux-x64-gnu": "1.1.
|
|
70
|
-
"@tauri-apps/cli-darwin-arm64": "1.1.
|
|
71
|
-
"@tauri-apps/cli-linux-arm64-gnu": "1.1.
|
|
72
|
-
"@tauri-apps/cli-linux-arm64-musl": "1.1.
|
|
73
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "1.1.
|
|
74
|
-
"@tauri-apps/cli-linux-x64-musl": "1.1.
|
|
75
|
-
"@tauri-apps/cli-win32-ia32-msvc": "1.1.
|
|
67
|
+
"@tauri-apps/cli-win32-x64-msvc": "1.1.1",
|
|
68
|
+
"@tauri-apps/cli-darwin-x64": "1.1.1",
|
|
69
|
+
"@tauri-apps/cli-linux-x64-gnu": "1.1.1",
|
|
70
|
+
"@tauri-apps/cli-darwin-arm64": "1.1.1",
|
|
71
|
+
"@tauri-apps/cli-linux-arm64-gnu": "1.1.1",
|
|
72
|
+
"@tauri-apps/cli-linux-arm64-musl": "1.1.1",
|
|
73
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "1.1.1",
|
|
74
|
+
"@tauri-apps/cli-linux-x64-musl": "1.1.1",
|
|
75
|
+
"@tauri-apps/cli-win32-ia32-msvc": "1.1.1"
|
|
76
76
|
}
|
|
77
77
|
}
|
package/schema.json
CHANGED
|
@@ -100,6 +100,10 @@
|
|
|
100
100
|
"print": false,
|
|
101
101
|
"requestUserAttention": false,
|
|
102
102
|
"setAlwaysOnTop": false,
|
|
103
|
+
"setCursorGrab": false,
|
|
104
|
+
"setCursorIcon": false,
|
|
105
|
+
"setCursorPosition": false,
|
|
106
|
+
"setCursorVisible": false,
|
|
103
107
|
"setDecorations": false,
|
|
104
108
|
"setFocus": false,
|
|
105
109
|
"setFullscreen": false,
|
|
@@ -362,6 +366,10 @@
|
|
|
362
366
|
"print": false,
|
|
363
367
|
"requestUserAttention": false,
|
|
364
368
|
"setAlwaysOnTop": false,
|
|
369
|
+
"setCursorGrab": false,
|
|
370
|
+
"setCursorIcon": false,
|
|
371
|
+
"setCursorPosition": false,
|
|
372
|
+
"setCursorVisible": false,
|
|
365
373
|
"setDecorations": false,
|
|
366
374
|
"setFocus": false,
|
|
367
375
|
"setFullscreen": false,
|
|
@@ -1528,6 +1536,10 @@
|
|
|
1528
1536
|
"print": false,
|
|
1529
1537
|
"requestUserAttention": false,
|
|
1530
1538
|
"setAlwaysOnTop": false,
|
|
1539
|
+
"setCursorGrab": false,
|
|
1540
|
+
"setCursorIcon": false,
|
|
1541
|
+
"setCursorPosition": false,
|
|
1542
|
+
"setCursorVisible": false,
|
|
1531
1543
|
"setDecorations": false,
|
|
1532
1544
|
"setFocus": false,
|
|
1533
1545
|
"setFullscreen": false,
|
|
@@ -1900,6 +1912,26 @@
|
|
|
1900
1912
|
"default": false,
|
|
1901
1913
|
"type": "boolean"
|
|
1902
1914
|
},
|
|
1915
|
+
"setCursorGrab": {
|
|
1916
|
+
"description": "Allows grabbing the cursor.",
|
|
1917
|
+
"default": false,
|
|
1918
|
+
"type": "boolean"
|
|
1919
|
+
},
|
|
1920
|
+
"setCursorVisible": {
|
|
1921
|
+
"description": "Allows setting the cursor visibility.",
|
|
1922
|
+
"default": false,
|
|
1923
|
+
"type": "boolean"
|
|
1924
|
+
},
|
|
1925
|
+
"setCursorIcon": {
|
|
1926
|
+
"description": "Allows changing the cursor icon.",
|
|
1927
|
+
"default": false,
|
|
1928
|
+
"type": "boolean"
|
|
1929
|
+
},
|
|
1930
|
+
"setCursorPosition": {
|
|
1931
|
+
"description": "Allows setting the cursor position.",
|
|
1932
|
+
"default": false,
|
|
1933
|
+
"type": "boolean"
|
|
1934
|
+
},
|
|
1903
1935
|
"startDragging": {
|
|
1904
1936
|
"description": "Allows start dragging on the window.",
|
|
1905
1937
|
"default": false,
|