@todesktop/cli 1.9.7 → 1.9.8

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/README.md CHANGED
@@ -901,6 +901,14 @@ Default: `undefined`.
901
901
 
902
902
  The path to NSIS script to customize installer.
903
903
 
904
+ #### `windows.publisherName` - (optional) array of strings
905
+
906
+ Example: `["ABC Limited"]`.
907
+
908
+ Default: Default to the common name from your code signing certificate.
909
+
910
+ The publisher name, exactly as in your code signing certificate. Several names can be provided. Defaults to common name from your code signing certificate. You should typically not include this property in your configuration unless you wish to transition to a new certificate in the future.
911
+
904
912
  ## Build lifecycle hooks (package.json scripts)
905
913
 
906
914
  Sometimes you want to do something before or during the build process. For example, you might want to run a script before the build starts, or you might want to run a script after the files have been packaged. Our lifecycle hooks provide a way to do this.
@@ -1120,6 +1128,7 @@ Now, when we build your app on ToDesktop servers, it will also run your custom `
1120
1128
  ### v1.9.8
1121
1129
 
1122
1130
  - Chore: bump dependencies
1131
+ - Add support for `windows.publisherName`
1123
1132
 
1124
1133
  ### v1.9.7
1125
1134
 
package/dist/cli.js CHANGED
@@ -1866,6 +1866,13 @@ var full_default = (context) => {
1866
1866
  extensions: ["nsh"],
1867
1867
  mustBeFile: true
1868
1868
  }
1869
+ },
1870
+ publisherName: {
1871
+ type: "array",
1872
+ items: {
1873
+ type: "string",
1874
+ minLength: 1
1875
+ }
1869
1876
  }
1870
1877
  }
1871
1878
  }
@@ -5290,7 +5297,7 @@ var package_default = {
5290
5297
  access: "public"
5291
5298
  },
5292
5299
  name: "@todesktop/cli",
5293
- version: "1.9.6",
5300
+ version: "1.9.7",
5294
5301
  license: "MIT",
5295
5302
  author: "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
5296
5303
  homepage: "https://todesktop.com/cli",
@@ -5372,7 +5379,7 @@ var package_default = {
5372
5379
  "xdg-basedir": "^4.0.0"
5373
5380
  },
5374
5381
  devDependencies: {
5375
- "@todesktop/shared": "^7.188.79",
5382
+ "@todesktop/shared": "^7.188.80",
5376
5383
  "@types/bunyan": "^1.8.6",
5377
5384
  "@types/is-ci": "^3.0.4",
5378
5385
  "@types/node": "^20.8.4",