Evgeny
Evgeny
I've faced with exactly the same error. Certificate from Comodo (Sectigo). Related issues: * https://github.com/electron-userland/electron-builder/issues/4931 * https://github.com/electron-userland/electron-builder/issues/3501 * https://github.com/electron-userland/electron-builder/issues/2108 ``` error PRI191: 0x80080204 - Appx manifest not found or is...
According to the documentation https://docs.microsoft.com/en-us/uwp/schemas/appxpackage/uapmanifestschema/generate-package-manifest the command `certificate-info` should return `CN=COMPANY LLC` instead of full string. I think the root of the problem is in this function https://github.com/develar/app-builder/blob/7e03397c8b546e001217ab3cac41900fab189bf9/pkg/codesign/p12.go#L36 @develar could...
Hi, @develar I was wrong in the last comment. My certificate have subject name is: `CN=COMPANY LLC, O=COMPANY LLC, POBox=12345, STREET="1234 TEST #100", L=Test, S=Test, PostalCode=12345, C=US` according to `Get-ChildItem...
Setting `appx.publisherName` to correct subject doesn't solve the issue.
Actually `app-builder` generates `.ico` container from `.png` image but with single size inside. Recommended sizes inside ico should be from 16x16 to 256x256 pixels https://docs.microsoft.com/en-us/windows/win32/uxguide/vis-icons
One more detail: `app-builder` can generate icons for linux from `. icns` but not from `.svg` and `.png` images. `.png` -> `. icns` works as expected.
Just for the information, to generate `.ico` with all required sizes from single `.png` you may use: ```bash magick convert resources/icon.png \ -resize 256x256 \ -define icon:auto-resize="256,128,96,64,48,40,32,24,16" \ resources/icon.ico ```
Any news?
I think it is better to clarify for end users, because there is inconsistency: before `v4.12.0` and `v5.2.0` latest was `v5`, now it is `v4`. So `npm install bn.js` installs...
Yep, I think it is good idea to clarify it in the readme there are two version of library (`master` branch for v5 and `v4.x` for v4) with slightly different...