You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/tauri-cli/config.schema.json
+42Lines changed: 42 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2345,6 +2345,15 @@
2345
2345
"string",
2346
2346
"null"
2347
2347
]
2348
+
},
2349
+
"rank": {
2350
+
"description": "The ranking of this app among apps that declare themselves as editors or viewers of the given file type. Maps to `LSHandlerRank` on macOS.",
2351
+
"default": "Default",
2352
+
"allOf": [
2353
+
{
2354
+
"$ref": "#/definitions/HandlerRank"
2355
+
}
2356
+
]
2348
2357
}
2349
2358
},
2350
2359
"additionalProperties": false
@@ -2393,6 +2402,39 @@
2393
2402
}
2394
2403
]
2395
2404
},
2405
+
"HandlerRank": {
2406
+
"description": "Corresponds to LSHandlerRank",
2407
+
"oneOf": [
2408
+
{
2409
+
"description": "LSHandlerRank.Default. This app is an opener of files of this type; this value is also used if no rank is specified.",
2410
+
"type": "string",
2411
+
"enum": [
2412
+
"Default"
2413
+
]
2414
+
},
2415
+
{
2416
+
"description": "LSHandlerRank.Owner. This app is the primary creator of files of this type.",
2417
+
"type": "string",
2418
+
"enum": [
2419
+
"Owner"
2420
+
]
2421
+
},
2422
+
{
2423
+
"description": "LSHandlerRank.Alternate. This app is a secondary viewer of files of this type.",
2424
+
"type": "string",
2425
+
"enum": [
2426
+
"Alternate"
2427
+
]
2428
+
},
2429
+
{
2430
+
"description": "LSHandlerRank.None. This app is never selected to open files of this type, but it accepts drops of files of this type.",
2431
+
"type": "string",
2432
+
"enum": [
2433
+
"None"
2434
+
]
2435
+
}
2436
+
]
2437
+
},
2396
2438
"WindowsConfig": {
2397
2439
"description": "Windows bundler configuration.\n\n See more: <https://v2.tauri.app/reference/config/#windowsconfig>",
Copy file name to clipboardExpand all lines: crates/tauri-cli/schema.json
+42Lines changed: 42 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1966,6 +1966,15 @@
1966
1966
"string",
1967
1967
"null"
1968
1968
]
1969
+
},
1970
+
"rank": {
1971
+
"description": "The ranking of this app among apps that declare themselves as editors or viewers of the given file type. Maps to `LSHandlerRank` on macOS.",
1972
+
"default": "Default",
1973
+
"allOf": [
1974
+
{
1975
+
"$ref": "#/definitions/HandlerRank"
1976
+
}
1977
+
]
1969
1978
}
1970
1979
},
1971
1980
"additionalProperties": false
@@ -2014,6 +2023,39 @@
2014
2023
}
2015
2024
]
2016
2025
},
2026
+
"HandlerRank": {
2027
+
"description": "Corresponds to LSHandlerRank",
2028
+
"oneOf": [
2029
+
{
2030
+
"description": "LSHandlerRank.Default. This app is an opener of files of this type; this value is also used if no rank is specified.",
2031
+
"type": "string",
2032
+
"enum": [
2033
+
"Default"
2034
+
]
2035
+
},
2036
+
{
2037
+
"description": "LSHandlerRank.Owner. This app is the primary creator of files of this type.",
2038
+
"type": "string",
2039
+
"enum": [
2040
+
"Owner"
2041
+
]
2042
+
},
2043
+
{
2044
+
"description": "LSHandlerRank.Alternate. This app is a secondary viewer of files of this type.",
2045
+
"type": "string",
2046
+
"enum": [
2047
+
"Alternate"
2048
+
]
2049
+
},
2050
+
{
2051
+
"description": "LSHandlerRank.None. This app is never selected to open files of this type, but it accepts drops of files of this type.",
2052
+
"type": "string",
2053
+
"enum": [
2054
+
"None"
2055
+
]
2056
+
}
2057
+
]
2058
+
},
2017
2059
"WindowsConfig": {
2018
2060
"description": "Windows bundler configuration.\n\n See more: <https://tauri.app/v1/api/config#windowsconfig>",
Copy file name to clipboardExpand all lines: crates/tauri-cli/tauri.config.schema.json
+42Lines changed: 42 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1966,6 +1966,15 @@
1966
1966
"string",
1967
1967
"null"
1968
1968
]
1969
+
},
1970
+
"rank": {
1971
+
"description": "The ranking of this app among apps that declare themselves as editors or viewers of the given file type. Maps to `LSHandlerRank` on macOS.",
1972
+
"default": "Default",
1973
+
"allOf": [
1974
+
{
1975
+
"$ref": "#/definitions/HandlerRank"
1976
+
}
1977
+
]
1969
1978
}
1970
1979
},
1971
1980
"additionalProperties": false
@@ -2014,6 +2023,39 @@
2014
2023
}
2015
2024
]
2016
2025
},
2026
+
"HandlerRank": {
2027
+
"description": "Corresponds to LSHandlerRank",
2028
+
"oneOf": [
2029
+
{
2030
+
"description": "LSHandlerRank.Default. This app is an opener of files of this type; this value is also used if no rank is specified.",
2031
+
"type": "string",
2032
+
"enum": [
2033
+
"Default"
2034
+
]
2035
+
},
2036
+
{
2037
+
"description": "LSHandlerRank.Owner. This app is the primary creator of files of this type.",
2038
+
"type": "string",
2039
+
"enum": [
2040
+
"Owner"
2041
+
]
2042
+
},
2043
+
{
2044
+
"description": "LSHandlerRank.Alternate. This app is a secondary viewer of files of this type.",
2045
+
"type": "string",
2046
+
"enum": [
2047
+
"Alternate"
2048
+
]
2049
+
},
2050
+
{
2051
+
"description": "LSHandlerRank.None. This app is never selected to open files of this type, but it accepts drops of files of this type.",
2052
+
"type": "string",
2053
+
"enum": [
2054
+
"None"
2055
+
]
2056
+
}
2057
+
]
2058
+
},
2017
2059
"WindowsConfig": {
2018
2060
"description": "Windows bundler configuration.\n\n See more: <https://tauri.app/v1/api/config#windowsconfig>",
Copy file name to clipboardExpand all lines: crates/tauri-schema-generator/schemas/config.schema.json
+42Lines changed: 42 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2345,6 +2345,15 @@
2345
2345
"string",
2346
2346
"null"
2347
2347
]
2348
+
},
2349
+
"rank": {
2350
+
"description": "The ranking of this app among apps that declare themselves as editors or viewers of the given file type. Maps to `LSHandlerRank` on macOS.",
2351
+
"default": "Default",
2352
+
"allOf": [
2353
+
{
2354
+
"$ref": "#/definitions/HandlerRank"
2355
+
}
2356
+
]
2348
2357
}
2349
2358
},
2350
2359
"additionalProperties": false
@@ -2393,6 +2402,39 @@
2393
2402
}
2394
2403
]
2395
2404
},
2405
+
"HandlerRank": {
2406
+
"description": "Corresponds to LSHandlerRank",
2407
+
"oneOf": [
2408
+
{
2409
+
"description": "LSHandlerRank.Default. This app is an opener of files of this type; this value is also used if no rank is specified.",
2410
+
"type": "string",
2411
+
"enum": [
2412
+
"Default"
2413
+
]
2414
+
},
2415
+
{
2416
+
"description": "LSHandlerRank.Owner. This app is the primary creator of files of this type.",
2417
+
"type": "string",
2418
+
"enum": [
2419
+
"Owner"
2420
+
]
2421
+
},
2422
+
{
2423
+
"description": "LSHandlerRank.Alternate. This app is a secondary viewer of files of this type.",
2424
+
"type": "string",
2425
+
"enum": [
2426
+
"Alternate"
2427
+
]
2428
+
},
2429
+
{
2430
+
"description": "LSHandlerRank.None. This app is never selected to open files of this type, but it accepts drops of files of this type.",
2431
+
"type": "string",
2432
+
"enum": [
2433
+
"None"
2434
+
]
2435
+
}
2436
+
]
2437
+
},
2396
2438
"WindowsConfig": {
2397
2439
"description": "Windows bundler configuration.\n\n See more: <https://v2.tauri.app/reference/config/#windowsconfig>",
0 commit comments