From 659335a852d0934b0817e0ff6a6aad40c53ab898 Mon Sep 17 00:00:00 2001 From: Moritz Post Date: Mon, 11 Feb 2019 10:12:12 +0100 Subject: [PATCH] Add docs note that App.trustedCertificate does not work on Windows --- doc/api/app.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/api/app.json b/doc/api/app.json index 2716afe3c..f3d1f6d0c 100644 --- a/doc/api/app.json +++ b/doc/api/app.json @@ -29,7 +29,10 @@ }, "trustedCertificates": { "type": "any[]", - "description": "Adds a set of certificates to validated ssl connections against. The certificates are applied in addition to the system wide default certificates.\n\nThe `ArrayBuffer` entries of the `trustedCertificates` array consist of the bytes of the certificate files. On Android the certificate file has to be a _*.pem_ (Privacy Enhanced Mail) file whereas on iOS it has to be _*.der_ (Distinguished Encoding Rules) file." + "description": "Adds a set of certificates to validated ssl connections against. The certificates are applied in addition to the system wide default certificates.\n\nThe `ArrayBuffer` entries of the `trustedCertificates` array consist of the bytes of the certificate files. On Android the certificate file has to be a _*.pem_ (Privacy Enhanced Mail) file whereas on iOS it has to be _*.der_ (Distinguished Encoding Rules) file.", + "platforms": { + "windows": false + } } }, "events": {