@tauri-apps/cli 1.6.1 → 1.6.3
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 +16 -0
- package/index.d.ts +2 -2
- package/package.json +14 -11
- package/schema.json +3 -3
- package/tauri.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.6.3]
|
|
4
|
+
|
|
5
|
+
### New Features
|
|
6
|
+
|
|
7
|
+
- [`343b11d7c`](https://www.github.com/tauri-apps/tauri/commit/343b11d7c775fc01aa6ff8ab517fd1edd7e483ca) ([#11305](https://www.github.com/tauri-apps/tauri/pull/11305) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add Deno support in tauri-cli operations.
|
|
8
|
+
|
|
9
|
+
### Dependencies
|
|
10
|
+
|
|
11
|
+
- Upgraded to `tauri-cli@1.6.3`
|
|
12
|
+
|
|
13
|
+
## \[1.6.2]
|
|
14
|
+
|
|
15
|
+
### Dependencies
|
|
16
|
+
|
|
17
|
+
- Upgraded to `tauri-cli@1.6.2`
|
|
18
|
+
|
|
3
19
|
## \[1.6.1]
|
|
4
20
|
|
|
5
21
|
### New Features
|
package/index.d.ts
CHANGED
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
|
|
4
4
|
/* auto-generated by NAPI-RS */
|
|
5
5
|
|
|
6
|
-
export function run(args: Array<string>, binName: string | undefined | null, callback: (...args: any[]) => any): void
|
|
7
|
-
export function logError(error: string): void
|
|
6
|
+
export declare function run(args: Array<string>, binName: string | undefined | null, callback: (...args: any[]) => any): void
|
|
7
|
+
export declare function logError(error: string): void
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -68,16 +68,19 @@
|
|
|
68
68
|
"format": "prettier --write ./package.json ./tauri.js",
|
|
69
69
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
70
70
|
},
|
|
71
|
+
"dependencies": {
|
|
72
|
+
"semver": ">=7.5.2"
|
|
73
|
+
},
|
|
71
74
|
"optionalDependencies": {
|
|
72
|
-
"@tauri-apps/cli-win32-x64-msvc": "1.6.
|
|
73
|
-
"@tauri-apps/cli-darwin-x64": "1.6.
|
|
74
|
-
"@tauri-apps/cli-linux-x64-gnu": "1.6.
|
|
75
|
-
"@tauri-apps/cli-darwin-arm64": "1.6.
|
|
76
|
-
"@tauri-apps/cli-linux-arm64-gnu": "1.6.
|
|
77
|
-
"@tauri-apps/cli-linux-arm64-musl": "1.6.
|
|
78
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "1.6.
|
|
79
|
-
"@tauri-apps/cli-linux-x64-musl": "1.6.
|
|
80
|
-
"@tauri-apps/cli-win32-ia32-msvc": "1.6.
|
|
81
|
-
"@tauri-apps/cli-win32-arm64-msvc": "1.6.
|
|
75
|
+
"@tauri-apps/cli-win32-x64-msvc": "1.6.3",
|
|
76
|
+
"@tauri-apps/cli-darwin-x64": "1.6.3",
|
|
77
|
+
"@tauri-apps/cli-linux-x64-gnu": "1.6.3",
|
|
78
|
+
"@tauri-apps/cli-darwin-arm64": "1.6.3",
|
|
79
|
+
"@tauri-apps/cli-linux-arm64-gnu": "1.6.3",
|
|
80
|
+
"@tauri-apps/cli-linux-arm64-musl": "1.6.3",
|
|
81
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "1.6.3",
|
|
82
|
+
"@tauri-apps/cli-linux-x64-musl": "1.6.3",
|
|
83
|
+
"@tauri-apps/cli-win32-ia32-msvc": "1.6.3",
|
|
84
|
+
"@tauri-apps/cli-win32-arm64-msvc": "1.6.3"
|
|
82
85
|
}
|
|
83
86
|
}
|
package/schema.json
CHANGED
|
@@ -823,7 +823,7 @@
|
|
|
823
823
|
]
|
|
824
824
|
},
|
|
825
825
|
{
|
|
826
|
-
"description": "Shows the title bar as a transparent overlay over the window's content.\n\nKeep in mind: - The height of the title bar is different on different OS versions, which can lead to window
|
|
826
|
+
"description": "Shows the title bar as a transparent overlay over the window's content.\n\nKeep in mind: - The height of the title bar is different on different OS versions, which can lead to the window controls and title not being where you expect them to be. - You need to define a custom drag region to make your window draggable, however due to a limitation you can't drag the window when it's not in focus <https://github.com/tauri-apps/tauri/issues/4316>. - The color of the window title depends on the system theme.",
|
|
827
827
|
"type": "string",
|
|
828
828
|
"enum": [
|
|
829
829
|
"Overlay"
|
|
@@ -1099,7 +1099,7 @@
|
|
|
1099
1099
|
]
|
|
1100
1100
|
},
|
|
1101
1101
|
"identifier": {
|
|
1102
|
-
"description": "The application identifier in reverse domain name notation (e.g. `com.tauri.example`). This string must be unique across applications since it is used in system configurations like the bundle ID and path to the webview data directory. This string must contain only alphanumeric characters (A
|
|
1102
|
+
"description": "The application identifier in reverse domain name notation (e.g. `com.tauri.example`). This string must be unique across applications since it is used in system configurations like the bundle ID and path to the webview data directory. This string must contain only alphanumeric characters (A-Z, a-z, and 0-9), hyphens (-), and periods (.).",
|
|
1103
1103
|
"type": "string"
|
|
1104
1104
|
},
|
|
1105
1105
|
"publisher": {
|
|
@@ -1509,7 +1509,7 @@
|
|
|
1509
1509
|
}
|
|
1510
1510
|
},
|
|
1511
1511
|
"obsoletes": {
|
|
1512
|
-
"description": "The list of RPM dependencies your application supersedes - if this package is installed, packages listed as
|
|
1512
|
+
"description": "The list of RPM dependencies your application supersedes - if this package is installed, packages listed as \"obsoletes\" will be automatically removed (if they are present).",
|
|
1513
1513
|
"type": [
|
|
1514
1514
|
"array",
|
|
1515
1515
|
"null"
|
package/tauri.js
CHANGED
|
@@ -14,9 +14,9 @@ const binStem = path.parse(bin).name.toLowerCase()
|
|
|
14
14
|
// can successfully detect what command likely started the execution.
|
|
15
15
|
let binName
|
|
16
16
|
|
|
17
|
-
// deno run -A
|
|
18
|
-
if (
|
|
19
|
-
binName =
|
|
17
|
+
// deno run -A npm:@tauri-apps/cli or deno task tauri
|
|
18
|
+
if (globalThis.navigator?.userAgent?.includes('Deno')) {
|
|
19
|
+
binName = bin
|
|
20
20
|
}
|
|
21
21
|
// Even if started by a package manager, the binary will be NodeJS.
|
|
22
22
|
// Some distribution still use "nodejs" as the binary name.
|