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: bindings/packager/nodejs/schema.json
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@
42
42
}
43
43
},
44
44
"identifier": {
45
-
"description": "The application identifier in reverse domain name notation (e.g. `com.packager.example`). This string must be unique across applications since it is used in some system configurations. This string must contain only alphanumeric characters (A–Z, a–z, and 0–9), hyphens (-), and periods (.).",
45
+
"description": "The application identifier in reverse domain name notation (e.g. `com.packager.example`). This string must be unique across applications since it is used in some system configurations. This string must contain only alphanumeric characters (A-Z, a-z, and 0-9), hyphens (-), and periods (.).",
46
46
"type": [
47
47
"string",
48
48
"null"
@@ -566,7 +566,7 @@
566
566
]
567
567
},
568
568
"role": {
569
-
"description": "The app’s role with respect to the type. Maps to `CFBundleTypeRole` on macOS. Defaults to [`BundleTypeRole::Editor`]",
569
+
"description": "The app's role with respect to the type. Maps to `CFBundleTypeRole` on macOS. Defaults to [`BundleTypeRole::Editor`]",
570
570
"default": "editor",
571
571
"allOf": [
572
572
{
@@ -860,6 +860,13 @@
860
860
"additionalProperties": {
861
861
"type": "string"
862
862
}
863
+
},
864
+
"packageName": {
865
+
"description": "Name to use for the `Package` field in the Debian Control file. Defaults to [`Config::product_name`] converted to kebab-case.",
Copy file name to clipboardExpand all lines: bindings/packager/nodejs/src-ts/config.d.ts
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -161,7 +161,7 @@ export interface Config {
161
161
*/
162
162
binaries?: Binary[];
163
163
/**
164
-
* The application identifier in reverse domain name notation (e.g. `com.packager.example`). This string must be unique across applications since it is used in some system configurations. This string must contain only alphanumeric characters (A–Z, a–z, and 0–9), hyphens (-), and periods (.).
164
+
* The application identifier in reverse domain name notation (e.g. `com.packager.example`). This string must be unique across applications since it is used in some system configurations. This string must contain only alphanumeric characters (A-Z, a-z, and 0-9), hyphens (-), and periods (.).
Copy file name to clipboardExpand all lines: crates/packager/schema.json
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@
42
42
}
43
43
},
44
44
"identifier": {
45
-
"description": "The application identifier in reverse domain name notation (e.g. `com.packager.example`). This string must be unique across applications since it is used in some system configurations. This string must contain only alphanumeric characters (A–Z, a–z, and 0–9), hyphens (-), and periods (.).",
45
+
"description": "The application identifier in reverse domain name notation (e.g. `com.packager.example`). This string must be unique across applications since it is used in some system configurations. This string must contain only alphanumeric characters (A-Z, a-z, and 0-9), hyphens (-), and periods (.).",
46
46
"type": [
47
47
"string",
48
48
"null"
@@ -566,7 +566,7 @@
566
566
]
567
567
},
568
568
"role": {
569
-
"description": "The app’s role with respect to the type. Maps to `CFBundleTypeRole` on macOS. Defaults to [`BundleTypeRole::Editor`]",
569
+
"description": "The app's role with respect to the type. Maps to `CFBundleTypeRole` on macOS. Defaults to [`BundleTypeRole::Editor`]",
570
570
"default": "editor",
571
571
"allOf": [
572
572
{
@@ -860,6 +860,13 @@
860
860
"additionalProperties": {
861
861
"type": "string"
862
862
}
863
+
},
864
+
"packageName": {
865
+
"description": "Name to use for the `Package` field in the Debian Control file. Defaults to [`Config::product_name`] converted to kebab-case.",
0 commit comments